https://github.com/google/jax
Raw File
Tip revision: 290c90d37a0e112022c75f190cb518aa54b13110 authored by Matthew Johnson on 30 April 2022, 02:58:16 UTC
Trivial change for backward compatibility stub.
Tip revision: 290c90d
jax.random.rst
jax.random package
==================

.. 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
    bernoulli
    beta
    categorical
    cauchy
    choice
    dirichlet
    double_sided_maxwell
    exponential
    fold_in
    gamma
    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