mlx.core.random.truncated_normal#
- truncated_normal(lower: scalar | array, upper: scalar | array, shape: Sequence[int] | None = None, dtype: Dtype | None = float32, key: array | None = None, stream: None | Stream | Device = None) array #
Generate values from a truncated normal distribution.
The values are sampled from the truncated normal distribution on the domain
(lower, upper)
. The boundslower
andupper
can be scalars or arrays and must be broadcastable toshape
.- Parameters:
- Returns:
The output array of random values.
- Return type: