Pytorch nn.functional.pad()的简单用法

官方文档:https://pytorch-cn.readthedocs.io/zh/latest/package_references/functional/
作用:进行填充,类似卷积里的padding
方法头:

ret = F.pad(input, pad, mode='constant', value=0)
  • input:N维的Tensor
  • pad:元组(一般是四元的),表示各个方向上需要填充的长度
  • mode:模式,有‘constant’,‘reflect’,‘replicate’
  • value:填充值

例子:有一张2×2的特征图,需要对其进行长度为1的padding:

import torch
from torch.nn import functional as F

x = torch.empty([2, 2])
print(x)
y = F.pad(x, (1, 1, 1, 1), "constant", 1)
# 上面这句一般来说也经常这么写:
# y = F.pad(x, (1, ) * 4, "constant", 1)
print(y)

输出:

tensor([[0., 0.],
        [0., 0.]])
tensor([[1., 1., 1., 1.],
        [1., 0., 0., 1.],
        [1., 0., 0., 1.],
        [1., 1., 1., 1.]])

而对于更加常用的(B, C, H, W)格式的特征图,其实也是一样的写法:

import torch
from torch.nn import functional as F

x = torch.empty([1, 3, 2, 2])
print(x)
y = F.pad(x, (1, 1, 1, 1), "constant", 1)
print(y)

输出:

tensor([[[[0., 0.],
          [0., 0.]],

         [[0., 0.],
          [0., 0.]],

         [[0., 0.],
          [0., 0.]]]])
tensor([[[[1., 1., 1., 1.],
          [1., 0., 0., 1.],
          [1., 0., 0., 1.],
          [1., 1., 1., 1.]],

         [[1., 1., 1., 1.],
          [1., 0., 0., 1.],
          [1., 0., 0., 1.],
          [1., 1., 1., 1.]],

         [[1., 1., 1., 1.],
          [1., 0., 0., 1.],
          [1., 0., 0., 1.],
          [1., 1., 1., 1.]]]])
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值