paper-with-me

Papers

Anchor DETR: Query Design for Transformer-Based Object Detection

2021-09-15 · Yingming Wang, Xiangyu Zhang, Tong Yang, Jian Sun

In this paper, we propose a novel query design for the transformer-based object detection. In previous transformer-based detectors, the object queries are a set of learned embeddings. However, each learned embedding does not have an explicit physical meaning and we cannot explain where it will focus on. It is difficult to optimize as the prediction slot of each object query does not have a specific mode. In other words, each object query will not focus on a specific region. To solved these problems, in our query design, object queries are based on anchor points, which are widely used in CNN-based detectors. So each object query focuses on the objects near the anchor point. Moreover, our query design can predict multiple objects at one position to solve the difficulty: "one region, multiple objects". In addition, we design an attention variant, which can reduce the memory cost while achieving similar or better performance than the standard attention in DETR. Thanks to the query design and the attention variant, the proposed detector that we called Anchor DETR, can achieve better performance and run faster than the DETR with 10$\times$ fewer training epochs. For example, it achieves 44.2 AP with 19 FPS on the MSCOCO dataset when using the ResNet50-DC5 feature for training 50 epochs. Extensive experiments on the MSCOCO benchmark prove the effectiveness of the proposed methods. Code is available at \url{https://github.com/megvii-research/AnchorDETR}.

📄 PDF Abstract BibTeX arXiv:2109.07107

Code (2)

megvii-model/anchordetr 공식 구현 pytorch
megvii-research/AnchorDETR 공식 구현 pytorch

Tasks

Objectobject-detectionObject Detection

Methods 이 논문이 사용한 방법론

Attention 설명 없음
Linear Layer A Linear Layer is a projection $\mathbf{XW + b}$.
Absolute Position Encodings Absolute Position Encodings are a type of position embeddings for [Transformer-based models] where positional encodings are…
Position-Wise Feed-Forward Layer 설명 없음
Layer Normalization Unlike batch normalization, Layer Normalization directly estimates the normalization statistics from the summed inputs…
Label Smoothing Label Smoothing is a regularization technique that introduces noise for the labels. This accounts for the fact that datasets may have mistakes in them, so maximizing the…
Adam 설명 없음
Residual Connection 설명 없음

Similar Papers 제목 키워드 기반

End-to-End Lane detection with One-to-Several Transformer

2023-05-01 · Kunyang Zhou, Rui Zhou

Although lane detection methods have shown impressive performance in real-world scenarios, most of methods require post-processing which is not robust enough. Therefore, end-to-end detectors like DEtection TRansformer(DE…

DecoderLane Detection

DAB-DETR: Dynamic Anchor Boxes are Better Queries for DETR

2022-01-28 · ICLR 2022 4 · Shilong Liu, Feng Li, Hao Zhang, Xiao Yang 외

We present in this paper a novel query formulation using dynamic anchor boxes for DETR (DEtection TRansformer) and offer a deeper understanding of the role of queries in DETR. This new formulation directly uses box coord…

2D Object DetectionObject Detection

Conditional DETR V2: Efficient Detection Transformer with Box Queries

2022-07-18 · Xiaokang Chen, Fangyun Wei, Gang Zeng, Jingdong Wang

In this paper, we are interested in Detection Transformer (DETR), an end-to-end object detection approach based on a transformer encoder-decoder architecture without hand-crafted postprocessing, such as NMS. Inspired by …

DecoderObjectobject-detectionObject Detection

DEYO: DETR with YOLO for Step-by-Step Object Detection

2022-11-12 · Haodong Ouyang

Object detection is an important topic in computer vision, with post-processing, an essential part of the typical object detection pipeline, posing a significant bottleneck affecting the performance of traditional object…

Objectobject-detectionObject Detection

MS-DETR: Natural Language Video Localization with Sampling Moment-Moment Interaction

2023-05-30 · Jing Wang, Aixin Sun, Hao Zhang, XiaoLi Li

Given a query, the task of Natural Language Video Localization (NLVL) is to localize a temporal moment in an untrimmed video that semantically matches the query. In this paper, we adopt a proposal-based solution that gen…

Decoder