jax.random.randint#

jax.random.randint(key, shape, minval, maxval, dtype=<class 'int'>)[source]#

Sample uniform random values in [minval, maxval) with given shape/dtype.

Parameters:
  • key (ArrayLike) – a PRNG key used as the random key.

  • shape (Shape) – a tuple of nonnegative integers representing the shape.

  • minval (IntegerArray) – int or array of ints broadcast-compatible with shape, a minimum (inclusive) value for the range.

  • maxval (IntegerArray) – int or array of ints broadcast-compatible with shape, a maximum (exclusive) value for the range.

  • dtype (DTypeLikeInt) – optional, an int dtype for the returned values (default int64 if jax_enable_x64 is true, otherwise int32).

Returns:

A random array with the specified shape and dtype.

Return type:

Array