tf.random.create_rng_state
Создаёт состояние генератора случайных чисел (RNG) из целого числа или вектора.
tf.random.create_rng_state(
seed, alg
)
Пример:
tf.random.create_rng_state(
1234, "philox")
<tf.Tensor: shape=(3,), dtype=int64, numpy=array([1234, 0, 0])>
tf.random.create_rng_state(
[12, 34], "threefry")
<tf.Tensor: shape=(2,), dtype=int64, numpy=array([12, 34])>| Аргументы | |
|---|---|
seed | целое число или одномерный массив numpy. |
alg | алгоритм генератора случайных чисел. Может быть строкой, Algorithm или целым числом. |
| Возвращаемые значения | |
|---|---|
| одномерный массив numpy, размер которого зависит от алгоритма. |
© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/random/create_rng_state