rocm_jax/docs/jax.random.rst
jiayaobo 924894e85c add geometric random gen
add geom random

add geom random

add geom random

add geom random
2023-03-30 02:08:04 +08:00

56 lines
941 B
ReStructuredText

``jax.random`` module
=====================
.. automodule:: jax.random
List of Available Functions
---------------------------
.. Generate the list below as follows:
>>> from jax import random
>>> fns = (x for x in sorted(dir(random)) if x != 'threefry_2x32')
>>> fns = (x for x in fns if callable(getattr(random, x)))
>>> print('\n'.join(' ' + x for x in fns)) # doctest: +SKIP
.. autosummary::
:toctree: _autosummary
PRNGKey
ball
bernoulli
beta
categorical
cauchy
chisquare
choice
dirichlet
double_sided_maxwell
exponential
f
fold_in
gamma
generalized_normal
geometric
gumbel
laplace
loggamma
logistic
maxwell
multivariate_normal
normal
orthogonal
pareto
permutation
poisson
rademacher
randint
rayleigh
shuffle
split
t
truncated_normal
uniform
wald
weibull_min