CVJul 17, 2023

Box-DETR: Understanding and Boxing Conditional Spatial Queries

arXiv:2307.08353v12 citationsh-index: 36Has Code
Originality Incremental advance
AI Analysis

This work addresses a specific bottleneck in object detection for researchers and practitioners, offering an incremental improvement over existing DETR methods.

The paper tackles the problem of inefficient convergence in DETR-based object detectors by proposing Box Agent, which uses head-specific agent points to incorporate full box information in cross-attention, leading to faster convergence and improved performance, achieving 44.2 AP on a single-scale model with ResNet-50.

Conditional spatial queries are recently introduced into DEtection TRansformer (DETR) to accelerate convergence. In DAB-DETR, such queries are modulated by the so-called conditional linear projection at each decoder stage, aiming to search for positions of interest such as the four extremities of the box. Each decoder stage progressively updates the box by predicting the anchor box offsets, while in cross-attention only the box center is informed as the reference point. The use of only box center, however, leaves the width and height of the previous box unknown to the current stage, which hinders accurate prediction of offsets. We argue that the explicit use of the entire box information in cross-attention matters. In this work, we propose Box Agent to condense the box into head-specific agent points. By replacing the box center with the agent point as the reference point in each head, the conditional cross-attention can search for positions from a more reasonable starting point by considering the full scope of the previous box, rather than always from the previous box center. This significantly reduces the burden of the conditional linear projection. Experimental results show that the box agent leads to not only faster convergence but also improved detection performance, e.g., our single-scale model achieves $44.2$ AP with ResNet-50 based on DAB-DETR. Our Box Agent requires minor modifications to the code and has negligible computational workload. Code is available at https://github.com/tiny-smart/box-detr.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes