https://github.com/google/jax
Raw File
Tip revision: f1f4840a0d7af7b206c50874d877627cdeddb004 authored by jax authors on 09 March 2023, 18:59:33 UTC
Merge pull request #14881 from skye:version
Tip revision: f1f4840
jax.random.rst
``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
    gumbel
    laplace
    loggamma
    logistic
    maxwell
    multivariate_normal
    normal
    orthogonal
    pareto
    permutation
    poisson
    rademacher
    randint
    shuffle
    split
    t
    truncated_normal
    uniform
    weibull_min

back to top