scipy.special.expit#
- scipy.special.expit(x, out=None) = <ufunc 'expit'>#
Expit (also known as logistic sigmoid) ufunc for ndarrays.
The expit function, also known as the logistic sigmoid function, is defined as
expit(x) = 1/(1+exp(-x)). It is the inverse of the logit function.- Parameters:
- xndarray
The ndarray to apply expit to element-wise.
- outndarray, optional
Optional output array for the function values
- Returns:
- scalar or ndarray
An ndarray of the same shape as x. Its entries are
expitof the corresponding entry of x.
See also
Notes
As a ufunc expit takes a number of optional keyword arguments. For more information see ufuncs
Added in version 0.10.0.
Array API Standard Support
expithas support for Python Array API Standard compatible backends in addition to NumPy. The following combinations of backend and device (or other capability) are supported.Library
CPU
GPU
NumPy
✅
n/a
CuPy
n/a
✅
PyTorch
✅
✅
JAX
✅
✅
Dask
✅
n/a
For the NumPy backend, this function supports all NumPy ufunc keyword arguments. Other backends may support
out, but none of the other ufunc kwargs.outis typically supported for CuPy and PyTorch, but not currently in cases where SciPy relies on a generic Array API implementation or, for PyTorch on CPU, falls back to the NumPy backend.outis never supported for JAX because JAX arrays are immutable.See Support for the array API standard for more information.
Examples
>>> import numpy as np >>> from scipy.special import expit, logit
>>> expit([-np.inf, -1.5, 0, 1.5, np.inf]) array([ 0. , 0.18242552, 0.5 , 0.81757448, 1. ])
logitis the inverse ofexpit:>>> logit(expit([-2.5, 0, 3.1, 5.0])) array([-2.5, 0. , 3.1, 5. ])
Plot expit(x) for x in [-6, 6]:
>>> import matplotlib.pyplot as plt >>> x = np.linspace(-6, 6, 121) >>> y = expit(x) >>> plt.plot(x, y) >>> plt.grid() >>> plt.xlim(-6, 6) >>> plt.xlabel('x') >>> plt.title('expit(x)') >>> plt.show()