用法
survival_function(
value, name='survival_function'
)
参数
-
value
float
或double
Tensor
。 -
name
Pythonstr
附加在此函数创建的操作名称之前。
返回
-
形状为
sample_shape(x) + self.batch_shape
的Tensor
具有self.dtype
类型的值。
生存函数。
给定随机变量 X
,定义生存函数:
survival_function(x) = P[X > x]
= 1 - P[X <= x]
= 1 - cdf(x).
相关用法
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.quantile用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.covariance用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.variance用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.cdf用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.log_survival_function用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.cross_entropy用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.log_cdf用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.kl_divergence用法及代码示例
- Python tf.compat.v1.distributions.Multinomial用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.covariance用法及代码示例
- Python tf.compat.v1.distributions.Normal.log_survival_function用法及代码示例
- Python tf.compat.v1.distributions.Laplace.stddev用法及代码示例
- Python tf.compat.v1.distributions.Uniform.log_survival_function用法及代码示例
- Python tf.compat.v1.distributions.Gamma.cdf用法及代码示例
- Python tf.compat.v1.distributions.Normal.log_cdf用法及代码示例
- Python tf.compat.v1.distributions.Gamma.log_cdf用法及代码示例
- Python tf.compat.v1.distributions.Laplace.cross_entropy用法及代码示例
- Python tf.compat.v1.distributions.Dirichlet.covariance用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.distributions.Multinomial.survival_function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。