Pytorch中的数学函数
Posted sbj123456789
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pytorch中的数学函数相关的知识,希望对你有一定的参考价值。
log_softmax
log(softmax(X))
function:torch.nn.functional.log_softmax(x, dim=None)
nn:torch.nn.LogSoftmax(dim=None)
如:
nll_loss
The negative log likelihood loss
function:torch.nn.functional.nll_loss(input, target, weight=None, size_average=True, ignore_index=-100, reduce=None, reduction=‘elementwise_mean‘)
nn:torch.nn.NLLLoss(weight=None, size_average=True, ignore_index=-100, reduce=None, reduction=‘elementwise_mean‘)
如:
以上是关于Pytorch中的数学函数的主要内容,如果未能解决你的问题,请参考以下文章