Convolution Kernels
1 * 1 convolution layer is used to change the number of channel
To transform a feature map from C1C_1C1 channels to C2C_2C2 channels, we will need C1∗C2C_1 * C_2C1∗C2 kernels
Stride, padding, and kernel size determine the width and height of the output feature map :
Pooling changes the size of feature map but not the channel number of it.
Last updated 2 years ago