LogSigmoid# class torch.nn.LogSigmoid(*args, **kwargs)[source]# Applies the Logsigmoid function element-wise. LogSigmoid(x)=log(11+exp(−x))\text{LogSigmoid}(x) = \log\left(\frac{ 1 }{ 1 + \exp(-x)}\right) LogSigmoid(x)=log(1+exp(−x)1) Shape: Input: (∗)(*)(∗), where ∗*∗ means any number of dimensions. Output: (∗)(*)(∗), same shape as the input. Examples: >>> m = nn.LogSigmoid() >>> input = torch.randn(2) >>> output = m(input)
LogSigmoid# class torch.nn.LogSigmoid(*args, **kwargs)[source]# Applies the Logsigmoid function element-wise. LogSigmoid(x)=log(11+exp(−x))\text{LogSigmoid}(x) = \log\left(\frac{ 1 }{ 1 + \exp(-x)}\right) LogSigmoid(x)=log(1+exp(−x)1) Shape: Input: (∗)(*)(∗), where ∗*∗ means any number of dimensions. Output: (∗)(*)(∗), same shape as the input. Examples: >>> m = nn.LogSigmoid() >>> input = torch.randn(2) >>> output = m(input)