Concept

Un-pooling

An approach for dealing with the pooling layer issue that works as follows:

  1. The stride of the max-pooling operation is constrained to be equal to the width of the pooling region.
  2. The maximum input within each pooling region is assumed to be the input in the upper-left corner.
  3. All nonmaximal inputs within each pooling region are assumed to be zero.

The inverse un-pooling operation allocates a tensor of zeros, then copies each value from spatial coordinate ii of the input to spatial coordinate i×ki\times k of the output, where kk is an integer that defines the size of the pooling region.

0

1

Updated 2021-07-29

References


Tags

Data Science

Related
Learn After