計算張量維度上元素的標準偏差。
用法
tf.math.reduce_std(
input_tensor, axis=None, keepdims=False, name=None
)
參數
-
input_tensor
要減少的張量。應該有實數或複數類型。 -
axis
要減小的尺寸。如果None
(默認),減少所有維度。必須在[-rank(input_tensor), rank(input_tensor))
範圍內。 -
keepdims
如果為真,則保留長度為 1 的縮減維度。 -
name
關聯操作的名稱範圍(可選)。
返回
-
與 input_tensor 具有相同 dtype 的縮減張量。請注意,對於
complex64
或complex128
輸入,返回的Tensor
將分別為float32
或float64
類型。
沿 axis
中給定的尺寸減少 input_tensor
。除非 keepdims
為真,否則對於 axis
中的每個條目,張量的秩都會減少 1,這必須是唯一的。如果 keepdims
為真,則保留縮減後的維度,長度為 1。
如果axis
為None,則所有維度都會減少,並返回具有單個元素的張量。
例如:
x = tf.constant([[1., 2.], [3., 4.]])
tf.math.reduce_std(x)
<tf.Tensor:shape=(), dtype=float32, numpy=1.118034>
tf.math.reduce_std(x, 0)
<tf.Tensor:shape=(2,), dtype=float32, numpy=array([1., 1.], dtype=float32)>
tf.math.reduce_std(x, 1)
<tf.Tensor:shape=(2,), dtype=float32, numpy=array([0.5, 0.5], dtype=float32)>
numpy 兼容性
相當於 np.std
請注意np.std
有一個dtype
參數,可用於指定輸出類型。默認情況下這是 dtype=float64
。另一方麵,tf.math.reduce_std
具有來自 input_tensor
的激進類型推斷。
相關用法
- Python tf.math.reduce_sum用法及代碼示例
- Python tf.math.reduce_max用法及代碼示例
- Python tf.math.reduce_min用法及代碼示例
- Python tf.math.reduce_logsumexp用法及代碼示例
- Python tf.math.reduce_mean用法及代碼示例
- Python tf.math.reduce_all用法及代碼示例
- Python tf.math.reduce_euclidean_norm用法及代碼示例
- Python tf.math.reduce_variance用法及代碼示例
- Python tf.math.reduce_any用法及代碼示例
- Python tf.math.reduce_prod用法及代碼示例
- Python tf.math.real用法及代碼示例
- Python tf.math.reciprocal_no_nan用法及代碼示例
- Python tf.math.rsqrt用法及代碼示例
- Python tf.math.rint用法及代碼示例
- Python tf.math.round用法及代碼示例
- Python tf.math.special.fresnel_cos用法及代碼示例
- Python tf.math.polyval用法及代碼示例
- Python tf.math.is_finite用法及代碼示例
- Python tf.math.special.bessel_k0e用法及代碼示例
- Python tf.math.acosh用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.math.reduce_std。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。