jax.random.poisson#

jax.random.poisson(key, lam, shape=None, dtype=<class 'int'>)[source]#

Sample Poisson random values with given shape and integer dtype.

The values are distributed according to the probability mass function:

\[f(k; \lambda) = \frac{\lambda^k e^{-\lambda}}{k!}\]

Where k is a non-negative integer and \(\lambda > 0\).

Parameters:
Return type:

Array

Returns:

A random array with the specified dtype and with shape given by shape if shape is not None, or else by ``lam.shape.