probability icon indicating copy to clipboard operation
probability copied to clipboard

NotImplementedError: quantile is not implemented: StudentT

Open mpkuperman opened this issue 3 years ago • 1 comments

Hi, all

System information

OS Platform and Distribution: Linux Ubuntu 20.04 Tensorflow version : 2.6.0 Tensorflow probability version: 0.13.0 Python version: 3.8.10

When trying to compute the well documented quantile of a Student's T distribution, the following error shows in console: NotImplementedError: quantile is not implemented: StudentT

Here is a MWE:

from tensorflow_probability import distributions as d 

t = d.StudentT(4.13, 0.0, 1.0)
t.quantile(0.2)

Thanks in advance!

mpkuperman avatar Oct 03 '21 00:10 mpkuperman

I am getting the same error for my Empirical distribution NotImplementedError: quantile is not implemented: Empirical

mghadam avatar Dec 09 '21 15:12 mghadam