從正態分布輸出隨機值。
用法
tf.random.normal(
shape, mean=0.0, stddev=1.0, dtype=tf.dtypes.float32, seed=None, name=None
)
參數
-
shape
一維整數張量或 Python 數組。輸出張量的形狀。 -
mean
dtype
類型的張量或 Python 值,可通過stddev
廣播。正態分布的平均值。 -
stddev
dtype
類型的張量或 Python 值,可通過mean
廣播。正態分布的標準差。 -
dtype
輸出的浮點類型:float16
,bfloat16
,float32
,float64
。默認為float32
。 -
seed
一個 Python 整數。用於為分發創建隨機種子。有關行為,請參見tf.random.set_seed
。 -
name
操作的名稱(可選)。
返回
- 用隨機法線值填充的指定形狀的張量。
每次生成一組新隨機值的示例:
tf.random.set_seed(5);
tf.random.normal([4], 0, 1, tf.float32)
<tf.Tensor:shape=(4,), dtype=float32, numpy=..., dtype=float32)>
輸出可重現結果的示例:
tf.random.set_seed(5);
tf.random.normal([2,2], 0, 1, tf.float32, seed=1)
<tf.Tensor:shape=(2, 2), dtype=float32, numpy=
array([[-1.3768897 , -0.01258316],
[-0.169515 , 1.0824056 ]], dtype=float32)>
在這種情況下,我們同時設置全局和operation-level 種子,以確保該結果是可重現的。有關詳細信息,請參閱tf.random.set_seed
。
相關用法
- Python tf.random.truncated_normal用法及代碼示例
- Python tf.random.stateless_uniform用法及代碼示例
- Python tf.random.Generator用法及代碼示例
- Python tf.random.Generator.binomial用法及代碼示例
- Python tf.random.shuffle用法及代碼示例
- Python tf.random.stateless_parameterized_truncated_normal用法及代碼示例
- Python tf.random.experimental.stateless_split用法及代碼示例
- Python tf.random.stateless_poisson用法及代碼示例
- Python tf.random.set_global_generator用法及代碼示例
- Python tf.random.uniform用法及代碼示例
- Python tf.random.categorical用法及代碼示例
- Python tf.random.stateless_binomial用法及代碼示例
- Python tf.random.experimental.stateless_fold_in用法及代碼示例
- Python tf.random.stateless_categorical用法及代碼示例
- Python tf.random.set_seed用法及代碼示例
- Python tf.random.Generator.make_seeds用法及代碼示例
- Python tf.random.poisson用法及代碼示例
- Python tf.random.gamma用法及代碼示例
- Python tf.random.create_rng_state用法及代碼示例
- Python tf.random.stateless_gamma用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.random.normal。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。