random_normal {keras3} | R Documentation |
Draw random samples from a normal (Gaussian) distribution.
Description
Draw random samples from a normal (Gaussian) distribution.
Usage
random_normal(shape, mean = 0, stddev = 1, dtype = NULL, seed = NULL)
Arguments
shape |
The shape of the random values to generate. |
mean |
Float, defaults to 0. Mean of the random values to generate. |
stddev |
Float, defaults to 1. Standard deviation of the random values to generate. |
dtype |
Optional dtype of the tensor. Only floating point types are
supported. If not specified, |
seed |
An R integer or instance of
|
Value
A tensor of random values.
See Also
Other random:
random_beta()
random_binomial()
random_categorical()
random_dropout()
random_gamma()
random_integer()
random_seed_generator()
random_shuffle()
random_truncated_normal()
random_uniform()