用法
stddev(
name='stddev'
)
參數
-
name
Pythonstr
附加在此函數創建的操作名稱之前。
返回
-
stddev
形狀與batch_shape + event_shape
相同的浮點Tensor
,即與self.mean()
相同的形狀。
標準偏差。
標準差定義為,
stddev = E[(X - E[X])**2]**0.5
其中 X
是與此分布相關的隨機變量, E
表示期望值,而 stddev.shape = batch_shape + event_shape
。
相關用法
- Python tf.compat.v1.distributions.Multinomial.survival_function用法及代碼示例
- 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.stddev。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。