2

In which scenario, when assembling a CNN, would you want to have two adjacent pooling layers, without a convolutional layer in between?

nbro
  • 42,615
  • 12
  • 119
  • 217
Gaius
  • 162
  • 1
  • 7

1 Answers1

3

Assuming you're not referring to any particular type of pooling operation, it's possible that you could have, for example, a mean pool followed by a max or min pool. What this could do is combine the idea of reducing the dimensionality of your data from a holistic perspective with the mean pool, and then choosing the best of your averages with your max pool.

nbro
  • 42,615
  • 12
  • 119
  • 217
juicedatom
  • 557
  • 3
  • 10