https://github.com/google/jax
Raw File
Tip revision: ae4f1fcb66d13d6606525c0810bd9a0aba087f0c authored by Yash Katariya on 27 March 2023, 19:29:35 UTC
Update the commit in workspace too
Tip revision: ae4f1fc
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
    rayleigh
    shuffle
    split
    t
    truncated_normal
    uniform
    wald
    weibull_min

back to top