LeNet-5 convolution / pooling / full connection parameter calculating

Convolution / pooling / full connection parameter calculating

In Lenet-5 is an example:
LeNet-5
LeNet-layer 7. 5:
. + A C1 convolution excitation
number of parameters is: (fitler + BIAS) * channel_depth
Number of parameters is: (fitler + bias) * channel_depth
. Pooled S2 (decrease parameter, reducing over-fitting)
Not calculable parameters
. A C3 vol + product excitation
core LeNet-5: use of a different number of channel convolution different feature map, in order to reduce calculation parameters (GPU performance is not high at that time)
The core LeNet-5: Use of a different number of channel convolution different feature map, in order to reduce calculation parameters (GPU performance is not high at that time)
as follows: 6. 9 + channel layer 3 layer 4 layer whole channel. 1 + connector 6 Channel
6 channel - >> 16 Ge channel
S4. pooling
not calculable parameters pooling is reduced to reduce the amount of calculation parameter
Here Insert Picture Description
C5. convolution
extracts feature information, to do good FC fully connected
Here Insert Picture Description
F6. fully connected
number is fully connected (input + bias) output X
Here Insert Picture Description
output. output layer
Here Insert Picture Description

Released two original articles · won praise 0 · Views 149

Guess you like

Origin blog.csdn.net/qq_43168682/article/details/102738785