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

卷积层参数个数计算

时间:2020-05-25 19:56:04      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:sum   tps   rom   mes   flat   技术   代码   global   tail   

1. 主要计算参数公式
weight∗x+bias

2. 举例
代码
from keras.layers import Conv2D, MaxPooling2D, GlobalAveragePooling2D
from keras.layers import Dropout, Flatten, Dense
from keras.models import Sequential

model = Sequential()
model.add(Conv2D(16,(2,2),input_shape=(224,224,3))) #输入为224*224*3大小的图片
model.add(MaxPooling2D(pool_size=(2,2)))
model.add(Dense(133))
model.summary()


运行结果

技术图片

 

 

 

分析
已知:
  原始图像:shape:224 × 224 × 3
  卷积核大小为:2 × 2
  卷积核个数为:16
  全连接层神经元个数:133
故第一层卷积层:
  一个卷积核的参数:2 × 2 × 3 = 12
  16个卷积核的参数总额:16 ×12 + 16 = 192 + 16 = 208
故第二层池化层:
  参数个数:0
故第三层全连接层:
  133 × 16 + 133 = 2261

原文链接:https://blog.csdn.net/qq_40234695/article/details/88692874

卷积层参数个数计算

标签:sum   tps   rom   mes   flat   技术   代码   global   tail   

原文地址:https://www.cnblogs.com/wisir/p/12960249.html

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