jax.random.uniform#
- jax.random.uniform(key, shape=(), dtype=<class 'float'>, minval=0.0, maxval=1.0)[source]#
Sample uniform random values in [minval, maxval) with given shape/dtype.
- Parameters:
key (
Union
[Array
,ndarray
,bool_
,number
,bool
,int
,float
,complex
]) – a PRNG key used as the random key.shape (
Union
[Sequence
[int
],NamedShape
]) – optional, a tuple of nonnegative integers representing the result shape. Default ().dtype (
Union
[str
,type
[Any
],dtype
,SupportsDType
]) – optional, a float dtype for the returned values (default float64 if jax_enable_x64 is true, otherwise float32).minval (
Union
[Array
,ndarray
,bool_
,number
,bool
,int
,float
,complex
]) – optional, a minimum (inclusive) value broadcast-compatible with shape for the range (default 0).maxval (
Union
[Array
,ndarray
,bool_
,number
,bool
,int
,float
,complex
]) – optional, a maximum (exclusive) value broadcast-compatible with shape for the range (default 1).
- Return type:
- Returns:
A random array with the specified shape and dtype.