List down the hyperparameters of a Pooling Layer

The hyperparameters for a pooling layer are:

  • Filter size
  • Stride
  • Max or average pooling

If the input of the pooling layer is nh x nw x nc, then the output will be –

Dimension = [ {(nh – f) / s + 1} {(nw – f) / s + 1} nc’ ]**