Generate normal(Gaussian) distribution N(mean, stdvar^^2) with shape.
Generate normal(Gaussian) distribution N(mean, stdvar^^2) with shape.
The mean of the normal distribution.
The standard deviation of normal distribution.
Output shape of the NDArray generated.
Context of output NDArray, will use default context if not specified.
Output place holder
The result NDArray with generated result.
Seed the random number generators in mxnet.
Seed the random number generators in mxnet.
This seed will affect behavior of functions in this module, as well as results from executors that contains Random number such as Dropout operators.
The random number seed to set to all devices.
The random number generator of mxnet is by default device specific. This means if you set the same seed, the random number sequence generated from GPU0 can be different from CPU.
Generate uniform distribution in [low, high) with shape.
Generate uniform distribution in [low, high) with shape.
The lower bound of distribution.
The upper bound of distribution.
Output shape of the NDArray generated.
Context of output NDArray, will use default context if not specified.
Output place holder
The result NDArray with generated result.
Random Number interface of mxnet.