## sigmoid()


Compute the sigmoid function.


Usage


``` python
sigmoid(x)
```


The sigmoid function is :math:`\sigma(x) = \frac{1}{1 + e^{-x}}`.


## Parameters


`x: float`  
Input value.


## Returns


`float`  
Sigmoid output in range :math:`(0, 1)`.
