pytorch中的卷积和池化计算方式详解

作者:一只tobey 时间:2021-03-31 19:26:32 

TensorFlow里面的padding只有两个选项也就是valid和same

pytorch里面的padding么有这两个选项,它是数字0,1,2,3等等,默认是0

所以输出的h和w的计算方式也是稍微有一点点不同的:tf中的输出大小是和原来的大小成倍数关系,不能任意的输出大小;而nn输出大小可以通过padding进行改变

nn里面的卷积操作或者是池化操作的H和W部分都是一样的计算公式:H和W的计算

pytorch中的卷积和池化计算方式详解


class torch.nn.MaxPool2d(kernel_size, stride=None, padding=0, dilation=1, return_indices=False, ceil_mode=False):
"""
Parameters:
 kernel_size – the size of the window to take a max over
 stride – the stride of the window. 默认值是kernel_size
 padding – implicit zero padding to be added on both side,默认值是0
 dilation – a parameter that controls the stride of elements in the window,默认值是1
 return_indices – if True, will return the max indices along with the outputs. Useful when Unpooling later
 ceil_mode – when True, will use ceil instead of floor to compute the output shape,向上取整和向下取整,默认是向下取整
"""

不一样的地方在于:第一点,步长stride默认值,上面默认和设定的kernel_size一样,下面默认是1;第二点,输出通道的不一样,上面的输出通道和输入通道是一样的也就是没有改变特征图的数目,下面改变特征图的数目为out_channels


class torch.nn.Conv2d(in_channels, out_channels, kernel_size, stride=1, padding=0, dilation=1, groups=1, bias=True):
   pass
"""
Parameters:
 in_channels (int) – Number of channels in the input image
 out_channels (int) – Number of channels produced by the convolution
 kernel_size (int or tuple) – Size of the convolving kernel
 stride (int or tuple, optional) – Stride of the convolution. Default: 1,默认是1
 padding (int or tuple, optional) – Zero-padding added to both sides of the input. Default: 0
 dilation (int or tuple, optional) – Spacing between kernel elements. Default: 1
 groups (int, optional) – Number of blocked connections from input channels to output channels. Default: 1
 bias (bool, optional) – If True, adds a learnable bias to the output. Default: True
"""

第三点不一样是卷积有一个参数groups,将特征图分开给不同的卷积进行操作然后再整合到一起,xception就是利用这一个。


"""
At groups=1, all inputs are convolved to all outputs.
At groups=2, the operation becomes equivalent to having two conv layers side by side, each seeing half the input channels, and producing half the output channels, and both subsequently concatenated.
At groups= in_channels, each input channel is convolved with its own set of filters (of size ⌊out_channelsin_channels⌋
).
"""

pytorch AvgPool2d函数


class torch.nn.AvgPool2d(kernel_size, stride=None, padding=0,
            ceil_mode=False, count_include_pad=True):
 pass
"""
kernel_size: the size of the window
stride: the stride of the window. Default value is :attr:`kernel_size`
padding: implicit zero padding to be added on both sides
ceil_mode: when True, will use `ceil` instead of `floor` to compute the output shape
count_include_pad: when True, will include the zero-padding in the averaging calculation
"""

shape的计算公式,在(h,w)位置处的输出值的计算。

pytorch中的卷积和池化计算方式详解

pytorch中的F.avg_pool1d()平均池化操作作用于一维,input 的维度是三维比如[2,2,7]。F.avg_pool1d()中核size是3,步长是2表示每三个数取平均,每隔两个数取一次.比如[1,3,3,4,5,6,7]安照3个数取均值,两步取一次,那么结果就是[ 2.3333 ,4 ,6 ],也就是核是一维的,也只作用于一个维度。按照池化操作计算公式input size为[2,2,7],kernel size为3,步长为2,则输出维度计算(7-3)/2+1=3所以输出维度是[2,2,3],这与输出结果是一致的。

pytorch中的F.avg_pool2d(),input 是维度是4维如[2,2,4,4],表示这里批量数是2也就是两张图像,这里通道数量是2,图像是size 是4*4的.核size是(2,2),步长是(2,2)表示被核覆盖的数取平均,横向纵向的步长都是2.那么核是二维的,所以取均值时也是覆盖二维取的。输出中第一个1.5的计算是:(1+2+1+2)/4=1.5.表示第一张图像左上角的四个像素点的均值。按照池化操作计算公式input size为[2,2,4,4],kernel size为2*2,步长为2,则输出维度计算(4-2)/2+1=2所以输出维度是[2,2,2,2],这与输出结果是一致的。

Conv3d函数


class torch.nn.Conv3d(in_channels, out_channels, kernel_size, stride=1,
          padding=0, dilation=1, groups=1, bias=True):
 pass
"""
in_channels (int): Number of channels in the input image
out_channels (int): Number of channels produced by the convolution
kernel_size (int or tuple): Size of the convolving kernel
stride (int or tuple, optional): Stride of the convolution. Default: 1
padding (int or tuple, optional): Zero-padding added to all three sides of the input. Default: 0
dilation (int or tuple, optional): Spacing between kernel elements. Default: 1
groups (int, optional): Number of blocked connections from input channels to output channels. Default: 1
bias (bool, optional): If ``True``, adds a learnable bias to the output. Default: ``True``
Shape:
   - Input: :math:`(N, C_{in}, D_{in}, H_{in}, W_{in})`
   - Output: :math:`(N, C_{out}, D_{out}, H_{out}, W_{out})`
"""
 C_out = out_channels

pytorch中的卷积和池化计算方式详解

来源:https://blog.csdn.net/zz2230633069/article/details/83214308

标签:pytorch,卷积,池化
0
投稿

猜你喜欢

  • Python中的各种装饰器详解

    2023-02-23 06:16:41
  • 解析Javascript中中括号“[]”的多义性

    2023-09-03 09:59:35
  • Python实现简单的四则运算计算器

    2022-12-29 20:44:08
  • Ext2.0.2经典的一个JS组件(带EXT中文手册)

    2009-04-13 12:24:00
  • 分享9个好用的Python技巧

    2021-03-15 18:43:05
  • 利用Python绘制创意中秋节月饼

    2023-02-19 17:52:41
  • Django model 中设置联合约束和联合索引的方法

    2023-09-24 09:14:15
  • python获取txt文件词向量过程详解

    2021-07-27 12:54:35
  • 从一个项目中来看三层架构

    2008-08-06 12:50:00
  • 使用 Python 玩转 GitHub 的贡献板(推荐)

    2021-10-10 01:12:11
  • Python利用PyExecJS库执行JS函数的案例分析

    2022-10-26 08:53:19
  • Python抽象基类的定义与使用方法

    2021-07-31 21:48:43
  • 解决Keras 中加入lambda层无法正常载入模型问题

    2022-02-21 03:41:11
  • 简单介绍Python的Django框架的dj-scaffold项目

    2021-11-01 07:18:05
  • SQL Server与Oracle数据库在安全性上的异同

    2009-02-01 14:49:00
  • Python通过2种方法输出带颜色字体

    2023-02-08 20:53:22
  • Python数据拟合实现最小二乘法示例解析

    2023-12-17 05:46:36
  • CSS Hack 汇总快查

    2007-11-06 11:48:00
  • python多进程控制学习小结

    2021-08-31 00:48:57
  • Golang算法问题之数组按指定规则排序的方法分析

    2023-10-06 01:37:14
  • asp之家 网络编程 m.aspxhome.com