https://github.com/google/jax
Raw File
Tip revision: 05e4a99d16f75a0095f7f124a1c9e858dacd39a5 authored by jax authors on 05 April 2021, 21:48:16 UTC
Merge pull request #6348 from skye:workspace
Tip revision: 05e4a99
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
    logistic
    maxwell
    multivariate_normal
    normal
    pareto
    permutation
    poisson
    rademacher
    randint
    shuffle
    split
    t
    truncated_normal
    uniform
    weibull_min

back to top