CVFeb 18, 2022

Task Specific Attention is one more thing you need for object detection

arXiv:2202.09048v44 citationsHas Code
Originality Incremental advance
AI Analysis

This work addresses the problem of simplifying object detection pipelines for researchers and practitioners by eliminating traditional components, though it appears incremental as it builds on Transformer-based methods like DETR.

The paper tackles the challenge of designing object detection models without hand-designed components like anchors and NMS, proposing a Task Specific Split Transformer (TSST) that achieves state-of-the-art performance on the COCO benchmark.

Various models have been proposed to perform object detection. However, most require many handdesigned components such as anchors and non-maximum-suppression(NMS) to demonstrate good performance. To mitigate these issues, Transformer-based DETR and its variant, Deformable DETR, were suggested. These have solved much of the complex issue in designing a head for object detection models; however, doubts about performance still exist when considering Transformer-based models as state-of-the-art methods in object detection for other models depending on anchors and NMS revealed better results. Furthermore, it has been unclear whether it would be possible to build an end-to-end pipeline in combination only with attention modules, because the DETR-adapted Transformer method used a convolutional neural network (CNN) for the backbone body. In this study, we propose that combining several attention modules with our new Task Specific Split Transformer (TSST) is a powerful method to produce the state-of-the art performance on COCO results without traditionally hand-designed components. By splitting the general-purpose attention module into two separated goal-specific attention modules, the proposed method allows for the design of simpler object detection models. Extensive experiments on the COCO benchmark demonstrate the effectiveness of our approach. Code is available at https://github.com/navervision/tsst

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