Deep Learning6: Convolution and pooling

it2022-05-09  32

 

卷积和池化都是针对大规模图像数据进行处理,提高运算效率

1.Convolution

在大图片中截取小图片patch,对每个patch提取特征,卷积后得到convolved feature.

隐藏层的每个节点对应一个特征值

large  images xlarge

small  patches xsmall

f = σ(W(1)xsmall + b(1))

fs = σ(W(1)xs + b(1))

最后卷积得到convolved feature

fconvolved   是一个的矩阵

2. Pooling

对convolved feature选取pooling region,取特征均值或最大值

转载于:https://www.cnblogs.com/learnmuch/p/5957347.html

相关资源:MATLAB Deep Learning: With Machine Learning, Neural Networks and A I

最新回复(0)