当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PyTorch LogSoftmax用法及代码示例


本文简要介绍python语言中 torch.nn.LogSoftmax 的用法。

用法:

class torch.nn.LogSoftmax(dim=None)

参数

dim(int) -将沿其计算LogSoftmax 的维度。

返回

与输入具有相同维度和形状的张量,其值在 [-inf, 0) 范围内

函数应用于 n 维输入张量。 LogSoftmax 公式可以简化为:

形状:
  • 输入: 其中 * 表示任意数量的附加维度

  • 输出: ,与输入的形状相同

例子:

>>> m = nn.LogSoftmax()
>>> input = torch.randn(2, 3)
>>> output = m(input)

相关用法


注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.nn.LogSoftmax。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。