Concept
Un-pooling
An approach for dealing with the pooling layer issue that works as follows:
- The stride of the max-pooling operation is constrained to be equal to the width of the pooling region.
- The maximum input within each pooling region is assumed to be the input in the upper-left corner.
- 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 of the input to spatial coordinate of the output, where is an integer that defines the size of the pooling region.
0
1
Updated 2021-07-29
Tags
Data Science