Open zhanghaijason opened 5 years ago
A bit late to answer but in case you still have the question open.
The filter size of 2 refers to the size of the max-pooling filter, not a new filter.
So 32x32x16 -> MAX-POOLING(stride of 2, size of 2) -> 16x16x16
Hi I think the answer should be 151516. Since it first apply a pooling with stride of 2, it becomes 161616, then a filter with size 2, then (16-2)+1 (16-2)+1 16. What do you think?