softmax和log-softmax有什么区别?

Amo*_*hra 3 machine-learning deep-learning softmax pytorch

pytorch文章中已经描述了这两个函数之间的区别:log_softmax和softmax有什么区别? 是:exp(x_i) / exp(x).sum() ,日志softmax是:log(exp(x_i) / exp(x).sum())

但是对于下面的Pytorch代码,为什么会得到不同的输出:

>>> it = autograd.Variable(torch.FloatTensor([0.6229,0.3771]))
>>> op = autograd.Variable(torch.LongTensor([0]))
>>> m  = nn.Softmax()
>>> log = nn.LogSoftmax()
>>> m(it)
Variable containing:
`0.5611  0.4389`
[torch.FloatTensor of size 1x2]
>>>log(it)
Variable containing:
-0.5778 -0.8236
[torch.FloatTensor of size 1x2]
Run Code Online (Sandbox Code Playgroud)

但是,值log(0.5611)为-0.25095973129,log(0.4389)为-0.35763441915

为什么会有这样的差异?

小智 6

默认情况下,torch.log提供输入的自然对数,因此PyTorch的输出是正确的:

ln([0.5611,0.4389])=[-0.5778,-0.8236]
Run Code Online (Sandbox Code Playgroud)

使用以10为底的对数获得最后的结果。