https://github.com/google/jax
Raw File
Tip revision: 1a7c8831a8a37f76acc899bf6d6ef510349af044 authored by jax authors on 22 July 2022, 18:46:22 UTC
Merge pull request #11589 from skye:workspace
Tip revision: 1a7c883
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