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


Python PyTorch Identity用法及代码示例


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

用法:

class torch.nn.Identity(*args, **kwargs)

参数

  • args-任何参数(未使用)

  • kwargs-任何关键字参数(未使用)

占位符标识运算符,即argument-insensitive。

形状:
  • 输入: ,其中 表示任意数量的维度。

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

例子:

>>> m = nn.Identity(54, unused_argument1=0.1, unused_argument2=False)
>>> input = torch.randn(128, 20)
>>> output = m(input)
>>> print(output.size())
torch.Size([128, 20])

相关用法


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