Rate this Page
โ˜… โ˜… โ˜… โ˜… โ˜…

Sigmoid#

class torch.nn.Sigmoid(*args, **kwargs)[source]#

Applies the Sigmoid function element-wise.

Sigmoid(x)=ฯƒ(x)=11+expโก(โˆ’x)\text{Sigmoid}(x) = \sigma(x) = \frac{1}{1 + \exp(-x)}
Shape:
  • Input: (โˆ—)(*), where โˆ—* means any number of dimensions.

  • Output: (โˆ—)(*), same shape as the input.

../_images/Sigmoid.png

Examples:

>>> m = nn.Sigmoid()
>>> input = torch.randn(2)
>>> output = m(input)
forward(input)[source]#

Runs the forward pass.

Return type

Tensor