1. 首页
  2. 数据库
  3. 其它
  4. 关于Pytorch中view函数的使用

关于Pytorch中view函数的使用

上传者: 2021-01-16 11:42:21上传 PDF文件 22.66KB 热度 21次
If you are viewing collapsing non-neighboring dimensions, you are interleaving the pixels. You could try it on an image tensor and your result should be interleaved. 注意,在使用view函数的时候一定要配合permute函数使用,类似 patches = patches.contiguous().view(B, C, -1, kernel_size*kernel_size) print(patches.shape) # [B,
用户评论