用法
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.Bernoulli.covariance用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.cdf用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.survival_function用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.kl_divergence用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.log_survival_function用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.log_cdf用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.stddev用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.quantile用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.variance用法及代碼示例
- Python tf.compat.v1.distributions.Beta.quantile用法及代碼示例
- Python tf.compat.v1.distributions.Beta.kl_divergence用法及代碼示例
- Python tf.compat.v1.distributions.Beta.log_cdf用法及代碼示例
- Python tf.compat.v1.distributions.Beta.covariance用法及代碼示例
- Python tf.compat.v1.distributions.Beta.cdf用法及代碼示例
- Python tf.compat.v1.distributions.Beta.log_survival_function用法及代碼示例
- Python tf.compat.v1.distributions.Beta用法及代碼示例
- Python tf.compat.v1.distributions.Beta.stddev用法及代碼示例
- Python tf.compat.v1.distributions.Beta.cross_entropy用法及代碼示例
- Python tf.compat.v1.distributions.Beta.survival_function用法及代碼示例
- Python tf.compat.v1.distributions.Beta.variance用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.distributions.Bernoulli.cross_entropy。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。