通過添加引導軸將 RNG 種子拆分為 num
新種子。
用法
tf.random.experimental.stateless_split(
seed, num=2, alg='auto_select'
)
參數
-
seed
一個 RNG 種子(一個具有形狀 [2] 和 dtypeint32
或int64
的張量)。 (使用 XLA 時,僅允許使用int32
。) -
num
可選,正整數或標量張量,指示要產生的種子數(默認為 2)。 -
alg
用於生成隨機數的 RNG 算法。有關詳細說明,請參閱tf.random.stateless_uniform
。
返回
-
形狀為 [num, 2] 的張量表示
num
新種子。它將具有與seed
相同的 dtype(如果seed
沒有明確的 dtype,則 dtype 將由tf.convert_to_tensor
確定)。
例子:
seed = [1, 2]
new_seeds = tf.random.experimental.stateless_split(seed, num=3)
print(new_seeds)
tf.Tensor(
[[1105988140 1738052849]
[-335576002 370444179]
[ 10670227 -246211131]], shape=(3, 2), dtype=int32)
tf.random.stateless_normal(shape=[3], seed=new_seeds[0,:])
<tf.Tensor:shape=(3,), dtype=float32, numpy=array([-0.59835213, -0.9578608 ,
0.9002807 ], dtype=float32)>
相關用法
- Python tf.random.experimental.stateless_fold_in用法及代碼示例
- 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.normal用法及代碼示例
- 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.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.experimental.stateless_split。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。