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中random模块用法实例分析
May 19 Python
matplotlib绘制符合论文要求的图片实例(必看篇)
Jun 02 Python
Python入门之三角函数全解【收藏】
Nov 08 Python
Tensorflow 自带可视化Tensorboard使用方法(附项目代码)
Feb 10 Python
在Python中过滤Windows文件名中的非法字符方法
Jun 10 Python
Django框架 Pagination分页实现代码实例
Sep 04 Python
pandas的相关系数与协方差实例
Dec 27 Python
Python基于类路径字符串获取静态属性
Mar 12 Python
python 判断一组数据是否符合正态分布
Sep 23 Python
Python3.9.1中使用split()的处理方法(推荐)
Feb 07 Python
十个Python自动化常用操作,即拿即用
May 10 Python
Python机器学习之逻辑回归
May 11 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
深入for,while,foreach遍历时间比较的详解
2013/06/08 PHP
Codeigniter通过SimpleXML将xml转换成对象的方法
2015/03/19 PHP
详解PHP变量传值赋值和引用赋值变量销毁
2019/03/23 PHP
php变量与字符串的增删改查操作示例
2020/05/07 PHP
原生Js页面滚动延迟加载图片实现原理及过程
2013/06/24 Javascript
详解JavaScript基于面向对象之创建对象(2)
2015/12/10 Javascript
JavaScript学习笔记之数组随机排序
2016/03/23 Javascript
JS实现登录页面记住密码和enter键登录方法推荐
2016/05/10 Javascript
Vue-CLI3.x 设置反向代理的方法
2018/12/06 Javascript
微信小程序Echarts覆盖正常组件问题解决
2019/07/13 Javascript
layui清空,重置表单数据的实例
2019/09/12 Javascript
小程序实现长按保存图片的方法
2019/12/31 Javascript
用js编写留言板
2020/03/17 Javascript
ES6 async、await的基本使用方法示例
2020/06/06 Javascript
vue data变量相互赋值后被实时同步的解决步骤
2020/08/05 Javascript
vue 封装面包屑组件教程
2020/11/16 Javascript
vue 数据双向绑定的实现方法
2021/03/04 Vue.js
Pandas 合并多个Dataframe(merge,concat)的方法
2018/06/08 Python
python字典改变value值方法总结
2019/06/21 Python
Python浮点数四舍五入问题的分析与解决方法
2019/11/19 Python
Python如何读取文件中图片格式
2020/01/13 Python
Python-opencv 双线性插值实例
2020/01/17 Python
Python安装tar.gz格式文件方法详解
2020/01/19 Python
CSS3制作缩略图的详细过程
2016/07/08 HTML / CSS
HTML5中通过li-canvas轻松实现单图、多图、圆角图绘制,单行文字、多行文字等
2018/11/30 HTML / CSS
印度购物网站:TATA CLiQ
2017/11/23 全球购物
银行会计职员个人的自我评价
2013/09/29 职场文书
求职简历中的自我评价分享
2013/12/08 职场文书
麦当劳辞职信范文
2014/01/18 职场文书
安全生产汇报材料
2014/02/17 职场文书
青春飞扬演讲稿
2014/09/11 职场文书
小学秋季运动会报道稿
2014/09/30 职场文书
离婚协议书范本2014
2014/10/27 职场文书
Python生成九宫格图片的示例代码
2021/04/14 Python
html+css实现滚动到元素位置显示加载动画效果
2021/08/02 HTML / CSS
使用python绘制横竖条形图
2022/04/21 Python