keras/keras_core/backend/jax/random.py

115 lines
5.0 KiB
Python
Raw Normal View History

2023-04-09 19:21:45 +00:00
import jax
from keras_core.backend.config import floatx
2023-05-15 22:01:46 +00:00
from keras_core.random.seed_generator import SeedGenerator
from keras_core.random.seed_generator import draw_seed
from keras_core.random.seed_generator import make_default_seed
2023-04-09 19:21:45 +00:00
def normal(shape, mean=0.0, stddev=1.0, dtype=None, seed=None):
"""Draw random samples from a normal (Gaussian) distribution.
2023-04-09 19:21:45 +00:00
Args:
shape: The shape of the random values to generate.
2023-04-23 15:28:21 +00:00
mean: Floats, defaults to 0. Mean of the random values to generate.
stddev: Floats, defaults to 1. Standard deviation of the random values
2023-04-09 19:21:45 +00:00
to generate.
dtype: Optional dtype of the tensor. Only floating point types are
supported. If not specified, `keras.backend.floatx()` is used,
2023-04-23 15:28:21 +00:00
which defaults to `float32` unless you configured it otherwise (via
2023-04-09 19:21:45 +00:00
`keras.backend.set_floatx(float_dtype)`).
2023-04-23 03:20:56 +00:00
seed: A Python integer or instance of
`keras_core.backend.SeedGenerator`.
Used to make the behavior of the initializer
deterministic. Note that an initializer seeded with an integer
or None (unseeded) will produce the same random values
across multiple calls. To get different random values
across multiple calls, use as seed an instance
of `keras_core.backend.SeedGenerator`.
2023-04-09 19:21:45 +00:00
"""
dtype = dtype or floatx()
seed = draw_seed(seed)
sample = jax.random.normal(seed, shape=shape, dtype=dtype)
return sample * stddev + mean
2023-04-23 15:28:21 +00:00
def uniform(shape, minval=0.0, maxval=1.0, dtype=None, seed=None):
"""Draw samples from a uniform distribution.
The generated values follow a uniform distribution in the range
`[minval, maxval)`. The lower bound `minval` is included in the range,
while the upper bound `maxval` is excluded.
For floats, the default range is `[0, 1)`. For ints, at least `maxval`
must be specified explicitly.
2023-04-09 19:21:45 +00:00
Args:
shape: The shape of the random values to generate.
2023-04-23 15:28:21 +00:00
minval: Floats, defaults to 0. Lower bound of the range of
2023-04-09 19:21:45 +00:00
random values to generate (inclusive).
2023-04-23 15:28:21 +00:00
maxval: Floats, defaults to 1. Upper bound of the range of
2023-04-09 19:21:45 +00:00
random values to generate (exclusive).
dtype: Optional dtype of the tensor. Only floating point types are
supported. If not specified, `keras.backend.floatx()` is used,
2023-04-23 15:28:21 +00:00
which defaults to `float32` unless you configured it otherwise (via
2023-04-09 19:21:45 +00:00
`keras.backend.set_floatx(float_dtype)`)
2023-04-23 03:20:56 +00:00
seed: A Python integer or instance of
`keras_core.backend.SeedGenerator`.
Used to make the behavior of the initializer
deterministic. Note that an initializer seeded with an integer
or None (unseeded) will produce the same random values
across multiple calls. To get different random values
across multiple calls, use as seed an instance
of `keras_core.backend.SeedGenerator`.
2023-04-09 19:21:45 +00:00
"""
dtype = dtype or floatx()
seed = draw_seed(seed)
return jax.random.uniform(
seed, shape=shape, dtype=dtype, minval=minval, maxval=maxval
)
def truncated_normal(shape, mean=0.0, stddev=1.0, dtype=None, seed=None):
"""Draw samples from a truncated normal distribution.
The values are drawn from a normal distribution with specified mean and
standard deviation, discarding and re-drawing any samples that are more
than two standard deviations from the mean.
2023-04-09 19:21:45 +00:00
Args:
shape: The shape of the random values to generate.
2023-04-23 15:28:21 +00:00
mean: Floats, defaults to 0. Mean of the random values to generate.
stddev: Floats, defaults to 1. Standard deviation of the random values
2023-04-09 19:21:45 +00:00
to generate.
dtype: Optional dtype of the tensor. Only floating point types are
supported. If not specified, `keras.backend.floatx()` is used,
2023-04-23 15:28:21 +00:00
which defaults to `float32` unless you configured it otherwise (via
2023-04-09 19:21:45 +00:00
`keras.backend.set_floatx(float_dtype)`)
2023-04-23 03:20:56 +00:00
seed: A Python integer or instance of
`keras_core.backend.SeedGenerator`.
Used to make the behavior of the initializer
deterministic. Note that an initializer seeded with an integer
or None (unseeded) will produce the same random values
across multiple calls. To get different random values
across multiple calls, use as seed an instance
of `keras_core.backend.SeedGenerator`.
2023-04-09 19:21:45 +00:00
"""
dtype = dtype or floatx()
seed = draw_seed(seed)
sample = jax.random.truncated_normal(
seed, shape=shape, lower=-2.0, upper=2.0, dtype=dtype
)
return sample * stddev + mean
def dropout(inputs, rate, noise_shape=None, seed=None):
seed = draw_seed(seed)
keep_prob = 1.0 - rate
if noise_shape is None:
noise_shape = inputs.shape
2023-04-09 19:21:45 +00:00
mask = jax.random.bernoulli(seed, p=keep_prob, shape=noise_shape)
mask = jax.numpy.broadcast_to(mask, inputs.shape)
return jax.lax.select(
mask, inputs / keep_prob, jax.numpy.zeros_like(inputs)
)