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


Posted in Python onJanuary 03, 2020

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中的卷积和池化计算方式详解

以上这篇pytorch中的卷积和池化计算方式详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python查询mysql中文乱码问题
Nov 09 Python
KMP算法精解及其Python版的代码示例
Jun 01 Python
利用Python查看目录中的文件示例详解
Aug 28 Python
Numpy截取指定范围内的数据方法
Nov 14 Python
python 实现将txt文件多行合并为一行并将中间的空格去掉方法
Dec 20 Python
python爬虫之自制英汉字典
Jun 24 Python
Django Aggregation聚合使用方法解析
Aug 01 Python
Python3.7基于hashlib和Crypto实现加签验签功能(实例代码)
Dec 04 Python
python3实现在二叉树中找出和为某一值的所有路径(推荐)
Dec 26 Python
使用Python三角函数公式计算三角形的夹角案例
Apr 15 Python
Python调用OpenCV实现图像平滑代码实例
Jun 19 Python
浅谈OpenCV中的新函数connectedComponentsWithStats用法
Jul 05 Python
Python While循环语句实例演示及原理解析
Jan 03 #Python
在Pytorch中计算卷积方法的区别详解(conv2d的区别)
Jan 03 #Python
Python综合应用名片管理系统案例详解
Jan 03 #Python
Python tkinter常用操作代码实例
Jan 03 #Python
PyTorch中的padding(边缘填充)操作方式
Jan 03 #Python
nginx搭建基于python的web环境的实现步骤
Jan 03 #Python
Python如何使用字符打印照片
Jan 03 #Python
You might like
菜鸟修复电子管记
2021/03/02 无线电
PHP数组操作汇总 php数组的使用技巧
2011/07/17 PHP
PHP常用的排序和查找算法
2015/08/06 PHP
PHP中addslashes()和stripslashes()实现字符串转义和还原用法实例
2016/01/07 PHP
laravel 框架结合关联查询 when()用法分析
2019/11/22 PHP
javascript中的location用法简单介绍
2007/03/07 Javascript
javascript下操作css的float属性的特殊写法
2007/08/22 Javascript
javascript取消文本选定的实现代码
2010/11/14 Javascript
用JS判断IE版本的代码 超管用!
2011/08/09 Javascript
Javascript this 的一些学习总结
2012/08/02 Javascript
JS实现点击图片在当前页面放大并可关闭的漂亮效果
2013/10/18 Javascript
深入分析JQuery和JavaScript的异同
2014/10/23 Javascript
JavaScript中的getTimezoneOffset()方法使用详解
2015/06/10 Javascript
javascript遇到html5的一些表单属性
2015/07/05 Javascript
jquery easyui datagrid实现增加,修改,删除方法总结
2016/05/25 Javascript
原生js仿jquery实现对Ajax的封装
2016/10/04 Javascript
利用JS判断字符串是否含有数字与特殊字符的方法小结
2016/11/25 Javascript
Jquery Easyui菜单组件Menu使用详解(15)
2016/12/18 Javascript
详解Angular Reactive Form 表单验证
2017/07/06 Javascript
BootStrap实现文件上传并带有进度条效果
2017/09/11 Javascript
关于angularJs清除浏览器缓存的方法
2017/11/28 Javascript
Vue 指令实现按钮级别权限管理功能
2019/04/23 Javascript
使用Python对IP进行转换的一些操作技巧小结
2015/11/09 Python
用python写个自动SSH登录远程服务器的小工具(实例)
2017/06/17 Python
python实现类之间的方法互相调用
2018/04/29 Python
Python代码使用 Pyftpdlib实现FTP服务器功能
2019/07/22 Python
使用pyecharts生成Echarts网页的实例
2019/08/12 Python
使用selenium和pyquery爬取京东商品列表过程解析
2019/08/15 Python
iPython pylab模式启动方式
2020/04/24 Python
pycharm全局搜索的具体步骤
2020/07/28 Python
党员承诺书内容
2014/03/26 职场文书
法人任命书范本
2014/06/04 职场文书
商场客服专员岗位职责
2014/06/13 职场文书
详解thinkphp的Auth类认证
2021/05/28 PHP
SpringBoot+VUE实现数据表格的实战
2021/08/02 Java/Android
Win11如何修改dns?Win11修改dns图文教程
2022/01/18 数码科技