Pooling Operations

Adaptive Feature Pooling

Introduced by Liu et al. in Path Aggregation Network for Instance Segmentation

Adaptive Feature Pooling pools features from all levels for each proposal in object detection and fuses them for the following prediction. For each proposal, we map them to different feature levels. Following the idea of Mask R-CNN, RoIAlign is used to pool feature grids from each level. Then a fusion operation (element-wise max or sum) is utilized to fuse feature grids from different levels.

The motivation for this technique is that in an FPN we assign proposals to different feature levels based on the size of proposals, which could be suboptimal if images with small differences are assigned to different levels, or if the importance of features is not strongly correlated to their level which they belong.

Source: Path Aggregation Network for Instance Segmentation

Papers


Paper Code Results Date Stars

Categories