用法
cross_entropy(
other, name='cross_entropy'
)
参数
-
other
tfp.distributions.Distribution
实例。 -
name
Pythonstr
附加在此函数创建的操作名称之前。
返回
-
cross_entropy
self.dtype
Tensor
形状[B1, ..., Bn]
代表n
不同的 (Shanon) 交叉熵计算。
计算(香农)交叉熵。
用 P
表示此分布 (self
),用 Q
表示 other
分布。假设 P, Q
相对于彼此绝对连续并且允许密度 p(x) dr(x)
和 q(x) dr(x)
,(Shanon)交叉熵定义为:
H[P, Q] = E_p[-log q(X)] = -int_F p(x) log q(x) dr(x)
其中 F
表示随机变量 X ~ P
的支持。
相关用法
- Python tf.compat.v1.distributions.DirichletMultinomial.covariance用法及代码示例
- Python tf.compat.v1.distributions.DirichletMultinomial.cdf用法及代码示例
- Python tf.compat.v1.distributions.DirichletMultinomial.log_survival_function用法及代码示例
- Python tf.compat.v1.distributions.DirichletMultinomial.survival_function用法及代码示例
- Python tf.compat.v1.distributions.DirichletMultinomial.quantile用法及代码示例
- Python tf.compat.v1.distributions.DirichletMultinomial.log_cdf用法及代码示例
- Python tf.compat.v1.distributions.DirichletMultinomial.variance用法及代码示例
- Python tf.compat.v1.distributions.DirichletMultinomial.kl_divergence用法及代码示例
- Python tf.compat.v1.distributions.DirichletMultinomial.stddev用法及代码示例
- Python tf.compat.v1.distributions.DirichletMultinomial用法及代码示例
- Python tf.compat.v1.distributions.Dirichlet.covariance用法及代码示例
- Python tf.compat.v1.distributions.Dirichlet.stddev用法及代码示例
- Python tf.compat.v1.distributions.Dirichlet.kl_divergence用法及代码示例
- Python tf.compat.v1.distributions.Dirichlet.cross_entropy用法及代码示例
- Python tf.compat.v1.distributions.Dirichlet.cdf用法及代码示例
- Python tf.compat.v1.distributions.Dirichlet.survival_function用法及代码示例
- Python tf.compat.v1.distributions.Dirichlet.log_survival_function用法及代码示例
- Python tf.compat.v1.distributions.Dirichlet.log_cdf用法及代码示例
- Python tf.compat.v1.distributions.Dirichlet.variance用法及代码示例
- Python tf.compat.v1.distributions.Dirichlet用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.distributions.DirichletMultinomial.cross_entropy。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。