https://github.com/google/jax
Raw File
Tip revision: e034432872545c68c91f598e84c20ffd4c7c6cea authored by jax authors on 26 September 2022, 17:04:14 UTC
Merge pull request #12513 from inoryy:patch-4
Tip revision: e034432
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
    ball
    bernoulli
    beta
    categorical
    cauchy
    choice
    dirichlet
    double_sided_maxwell
    exponential
    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