What is: Adaptive Training Sample Selection?
Source | Bridging the Gap Between Anchor-based and Anchor-free Detection via Adaptive Training Sample Selection |
Year | 2000 |
Data Source | CC BY-SA - https://paperswithcode.com |
Adaptive Training Sample Selection, or ATSS, is a method to automatically select positive and negative samples according to statistical characteristics of object. It bridges the gap between anchor-based and anchor-free detectors.
For each ground-truth box on the image, we first find out its candidate positive samples. As described in Line to , on each pyramid level, we select anchor boxes whose center are closest to the center of based on L2 distance. Supposing there are feature pyramid levels, the ground-truth box will have candidate positive samples. After that, we compute the IoU between these candidates and the ground-truth as in Line , whose mean and standard deviation are computed as and in Line and Line . With these statistics, the IoU threshold for this ground-truth is obtained as in Line . Finally, we select these candidates whose IoU are greater than or equal to the threshold as final positive samples in Line to .
Notably ATSS also limits the positive samples' center to the ground-truth box as shown in Line . Besides, if an anchor box is assigned to multiple ground-truth boxes, the one with the highest IoU will be selected. The rest are negative samples.