Pooling Layer
Given an input size (C1,W1,H1) and
- kernal size F
- stride S
Output size is (C2,W2,H2), where
- C2=C1
- W2=S(W1−F)+1
- H2=S(H1−F)+1
Number of parameters is 0.
For Pooling layers, it is not common to pad the input using zero-padding.