Sigmoid#
- class torch.nn.modules.activation.Sigmoid(*args, **kwargs)[source]#
Applies the Sigmoid function element-wise.
Sigmoid(x)=σ(x)=1+exp(−x)1- Shape:
Input: (∗), where ∗ means any number of dimensions.
Output: (∗), same shape as the input.
Examples:
>>> m = nn.Sigmoid() >>> input = torch.randn(2) >>> output = m(input)