码迷,mamicode.com
首页 > 其他好文 > 详细

卷积神经网络CNN

时间:2018-08-31 01:26:17      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:ide   output   filter   info   常用   channels   输入   png   指定   

 

卷积神经网络组成:  INPUT -CONV -ReLU -POOL -FC

 

卷积操作:

  • 输入大小为:W1 x H1 x D1
  • 指定的超参数:filter个数(K),filter大小(F),步长(S),边界填充(P)

输出:

  • W2 = (W1 - F + 2P)/S + 1
  • H2 = (H1 - F + 2P)/S + 1
  • D2 = K

 

Input: rows * rows *  channels, N filter_rows*filter_rows filters with stride=stride, pade=pad

 

Output:  output_rows = (rows+2*pad-filter_rows)/stride + 1

 

技术分享图片

 

MAX POOLING更常用,AVE POOLING用得少了

卷积神经网络CNN

标签:ide   output   filter   info   常用   channels   输入   png   指定   

原文地址:https://www.cnblogs.com/xbit/p/9563442.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!