probability
probability copied to clipboard
NotImplementedError: quantile is not implemented: StudentT
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!
I am getting the same error for my Empirical distribution NotImplementedError: quantile is not implemented: Empirical