Sigmoid
-
class
torch.nn.
Sigmoid
[source] Applies the element-wise function:
- 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)
torch.nn.
Sigmoid
[source]Applies the element-wise function:
Input: , where means any number of dimensions.
Output: , same shape as the input.
Examples:
>>> m = nn.Sigmoid()
>>> input = torch.randn(2)
>>> output = m(input)