jax.random.truncated_normal
Warning
This page was created from a pull request (#9655).
jax.random.truncated_normalΒΆ
- jax.random.truncated_normal(key, lower, upper, shape=None, dtype=<class 'numpy.float64'>)[source]ΒΆ
Sample truncated standard normal random values with given shape and dtype.
- Parameters
key (
Union
[Any
,PRNGKeyArray
]) β a PRNG key used as the random key.lower (
Any
) β a float or array of floats representing the lower bound for truncation. Must be broadcast-compatible withupper
.upper (
Any
) β a float or array of floats representing the upper bound for truncation. Must be broadcast-compatible withlower
.shape (
Union
[Sequence
[int
],NamedShape
,None
]) β optional, a tuple of nonnegative integers specifying the result shape. Must be broadcast-compatible withlower
andupper
. The default (None) produces a result shape by broadcastinglower
andupper
.dtype (
Any
) β optional, a float dtype for the returned values (default float64 if jax_enable_x64 is true, otherwise float32).
- Return type
- Returns
A random array with the specified dtype and shape given by
shape
ifshape
is not None, or else by broadcastinglower
andupper
. Returns values in the open interval(lower, upper)
.