此函数已被抛弃,请参考torch.nn.Sigmoid
torch.nn.functional.sigmoid(input)
官方文档: sigmoid
torch.nn.functional.sigmoid(input)
S i g m o i d ( x ) = 1 1 + e x p − x Sigmoid(x) = \frac{1}{1+exp^{-x}} Sigmoid(x)=1+exp−x1
Sigmoid的函数图像如下所示
使用方法很简单,如下
x = torch.tensor([1., 2., 3.])
y = nn.functional.sigmoid(x)
'''
x
tensor([1., 2., 3.])
y
tensor([0.7311, 0.8808, 0.9526])
'''