tf.random.stateless_normal

View source on GitHub

Outputs deterministic pseudorandom values from a normal distribution.

tf.random.stateless_normal(
    shape, seed, mean=0.0, stddev=1.0, dtype=tf.dtypes.float32, name=None
)

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:

Returns:

A tensor of the specified shape filled with random normal values.