yusukemh
Results
1
issues of
yusukemh
Hi, I noticed the `quantile()` function of `tfd.Empirical` raises the following error: `AttributeError: 'function' object has no attribute 'percentile'`. ```python import tensorflow_probability as tfp tfd = tfp.distributions tfd.Empirical(samples=[1,2,3]).quantile(value=[0.1, 0.5]) >>>......