HeroKillerEver/coursera-deep-learning

Week1 quiz 7 answer

Opened this issue · 1 comments

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?

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