R/distribution-methods.R
tfd_quantile.Rd
Given random variable X and p in [0, 1]
, the quantile is:
tfd_quantile(p) := x
such that P[X <= x] == p
tfd_quantile(distribution, value, ...)
distribution | The distribution being used. |
---|---|
value | float or double Tensor. |
... | Additional parameters passed to Python. |
a Tensor of shape sample_shape(x) + self$batch_shape
with values of type self$dtype
.
Other distribution_methods:
tfd_cdf()
,
tfd_covariance()
,
tfd_cross_entropy()
,
tfd_entropy()
,
tfd_kl_divergence()
,
tfd_log_cdf()
,
tfd_log_prob()
,
tfd_log_survival_function()
,
tfd_mean()
,
tfd_mode()
,
tfd_prob()
,
tfd_sample()
,
tfd_stddev()
,
tfd_survival_function()
,
tfd_variance()
#> tf.Tensor([1. 2.], shape=(2,), dtype=float32)# }