On this page
tf.random.create_rng_state
Creates a RNG state from an integer or a vector.
tf.random.create_rng_state(
    seed, alg
)
  Example:
tf.random.create_rng_state(
    1234, "philox")
array([1234,    0,    0])
tf.random.create_rng_state(
    [12, 34], "threefry")
array([12, 34])
  | Args | |
|---|---|
seed | 
      an integer or 1-D numpy array. | 
alg | 
      the RNG algorithm. Can be a string, an Algorithm or an integer. | 
     
| Returns | |
|---|---|
| a 1-D numpy array whose size depends on the algorithm. | 
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
 https://www.tensorflow.org/versions/r2.3/api_docs/python/tf/random/create_rng_state