首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >我把内核和过滤器搞混了。

我把内核和过滤器搞混了。
EN

Stack Overflow用户
提问于 2020-04-18 02:14:02
回答 2查看 68关注 0票数 0

我读了一篇文章,作者使用CNN,方案如下:

代码语言:javascript
复制
-----------------

Input image 30*30 => Feature maps => Feature maps =>  Feature maps => Feature maps
                       28 * 28          14*14            12*12            6*6
-----------------
            Filtring 5*3*3   downsampling 2*2    Filtring 5*3*3   downsampling 2*2 

根据我的理解,我们有两个滤波器5* 3,最后3个对应于通道RGB SO3,对吗?

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2020-04-18 02:46:02

这意味着你有5个通道(意味着5个过滤器/内核)的3x3。

票数 0
EN

Stack Overflow用户

发布于 2020-04-20 05:33:19

代码语言:javascript
复制
What they are trying to say is that:

First:
the conv is being done using 5 different 3x3 2d kernels
input 30x30 ==> output 5 different 28x28

Second:
max pool 2x2 ie the output dim becomes halved
input 28x28 ==> output 14x14

Third:
the conv is being done using 5 different 3x3 2d kernels
input 14x14 ==> output 5 different 12x12

Lastly:
max pool 2x2 ie the output dim becomes halved
input 12x12 ==> output 6x6
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/61278050

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档