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


Python PyTorch PixelUnshuffle用法及代码示例


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

用法:

class torch.nn.PixelUnshuffle(downscale_factor)

参数

downscale_factor(int) -降低空间分辨率的因子

通过将形状为 的张量中的元素重新排列为形状为 的张量来反转 PixelShuffle 操作,其中 r 是缩小因子。

见论文:使用高效 Sub-Pixel 卷积神经网络的实时单图像和视频超分辨率通过石等。 al (2016) 了解更多详情。

形状:
  • 输入: ,其中 * 是零个或多个批次维度

  • 输出: ,其中

例子:

>>> pixel_unshuffle = nn.PixelUnshuffle(3)
>>> input = torch.randn(1, 1, 12, 12)
>>> output = pixel_unshuffle(input)
>>> print(output.size())
torch.Size([1, 9, 4, 4])

相关用法


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