HeroKillerEver / coursera-deep-learning

Solutions to all quiz and all the programming assignments!!!
639 stars 635 forks source link

Week1 quiz 7 answer #6

Open zhanghaijason opened 5 years ago

zhanghaijason commented 5 years ago

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?

MikeXydas commented 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