W3cubDocs

/TensorFlow 1.15

tf.random.stateless_normal

View source on GitHub

Outputs deterministic pseudorandom values from a normal distribution.

This is a stateless version of tf.random.normal: if run twice with the same seeds, it will produce the same pseudorandom numbers. The output is consistent across multiple runs on the same hardware (and between CPU and GPU), but may change between versions of TensorFlow or on non-CPU/GPU hardware.

Args
shape A 1-D integer Tensor or Python array. The shape of the output tensor.
seed A shape [2] integer Tensor of seeds to the random number generator.
mean A 0-D Tensor or Python value of type dtype. The mean of the normal distribution.
stddev A 0-D Tensor or Python value of type dtype. The standard deviation of the normal distribution.
dtype The type of the output.
name A name for the operation (optional).
Returns
A tensor of the specified shape filled with random normal values.

© 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/r1.15/api_docs/python/tf/random/stateless_normal