tf.contrib.distributions.Normal.survival_function(value, name='survival_function')
Survival function.
Given random variable X
, the survival function is defined:
survival_function(x) = P[X > x] = 1 - P[X <= x] = 1 - cdf(x).
Args:
-
value
:float
ordouble
Tensor
. -
name
: The name to give this op.
Returns:
Tensorof shape
sample_shape(x) + self.batch_shapewith values of type
self.dtype`.
Please login to continue.