tf.contrib.distributions.TransformedDistribution.prob(value, name='prob')
Probability density/mass function (depending on is_continuous
).
Additional documentation from TransformedDistribution
:
Implements p(g(y)) / det|J(g(y))|
, where g
is the inverse of transform
.
Also raises a ValueError
if inverse
was not provided to the distribution and y
was not returned from sample
.
Args:
-
value
:float
ordouble
Tensor
. -
name
: The name to give this op.
Returns:
-
prob
: aTensor
of shapesample_shape(x) + self.batch_shape
with values of typeself.dtype
.
Please login to continue.