jax.scipy.stats.logistic.pdf#
- jax.scipy.stats.logistic.pdf(x, loc=0, scale=1)[source]#
Logistic probability distribution function.
JAX implementation of
scipy.stats.logistic
pdf
.The logistic probability distribution function is given by
\[f(x) = \frac{e^{-x}}{(1 + e^{-x})^2}\]- Parameters:
x (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, value at which to evaluate the PDF
loc (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, distribution offset parameter
scale (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, distribution scale parameter
- Returns:
array of pdf values.
- Return type: