pytorch / 1.8.0 / generated / torch.nn.logsigmoid.html /

LogSigmoid

class torch.nn.LogSigmoid [source]

Applies the element-wise function:

LogSigmoid ( x ) = log ( 1 1 + exp ( x ) ) \text{LogSigmoid}(x) = \log\left(\frac{ 1 }{ 1 + \exp(-x)}\right)
Shape:
  • Input: ( N , ) (N, *) where * means, any number of additional dimensions
  • Output: ( N , ) (N, *) , same shape as the input
../_images/LogSigmoid.png

Examples:

>>> m = nn.LogSigmoid()
>>> input = torch.randn(2)
>>> output = m(input)

© 2019 Torch Contributors
Licensed under the 3-clause BSD License.
https://pytorch.org/docs/1.8.0/generated/torch.nn.LogSigmoid.html