View source on GitHub |
TensorFlow variant of NumPy's random.randn
.
tf.experimental.numpy.random.randn(
*args
)
Returns samples from a normal distribution.
Uses tf.random_normal
.
Args: *args: The shape of the output array.
Returns:
An ndarray with shape args
and dtype float64
.
See the NumPy documentation for numpy.random.randn
.