paper-with-me

홈 › Papers

DETR Does Not Need Multi-Scale or Locality Design

2023-01-01 · ICCV 2023 1 · Yutong Lin, Yuhui Yuan, Zheng Zhang, Chen Li, Nanning Zheng, Han Hu

This paper presents an improved DETR detector that maintains a "plain" nature: using a single-scale feature map and global cross-attention calculations without specific locality constraints, in contrast to previous leading DETR-based detectors that reintroduce architectural inductive biases of multi-scale and locality into the decoder. We show that two simple technologies are surprisingly effective within a plain design to compensate for the lack of multi-scale feature maps and locality constraints. The first is a box-to-pixel relative position bias (BoxRPB) term added to the cross-attention formulation, which well guides each query to attend to the corresponding object region while also providing encoding flexibility. The second is masked image modeling (MIM)-based backbone pre-training which helps learn representation with fine-grained localization ability and proves crucial for remedying dependencies on the multi-scale feature maps. By incorporating these technologies and recent advancements in training and problem formation, the improved "plain" DETR showed exceptional improvements over the original DETR detector. By leveraging the Object365 dataset for pre-training, it achieved 63.9 mAP accuracy using a Swin-L backbone, which is highly competitive with state-of-the-art detectors which all heavily rely on multi-scale feature maps and region-based feature extraction. Code will be available at https://github.com/impiga/Plain-DETR.

📄 PDF Abstract BibTeX

Code (1)

impiga/plain-detr 공식 구현 pytorch

Tasks

DecoderObject Detection

Methods 이 논문이 사용한 방법론

Multi-Head Attention 설명 없음
Attention 설명 없음
Linear Layer A Linear Layer is a projection $\mathbf{XW + b}$.
Position-Wise Feed-Forward Layer 설명 없음
Residual Connection 설명 없음
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…
Absolute Position Encodings Absolute Position Encodings are a type of position embeddings for [Transformer-based models] where positional encodings are…
Dense Connections Dense Connections, or Fully Connected Connections, are a type of layer in a deep neural network that use a linear operation where every input is connected to every output…

Similar Papers 제목 키워드 기반

DETR Doesn't Need Multi-Scale or Locality Design

2023-08-03 · Yutong Lin, Yuhui Yuan, Zheng Zhang, Chen Li 외

This paper presents an improved DETR detector that maintains a "plain" nature: using a single-scale feature map and global cross-attention calculations without specific locality constraints, in contrast to previous leadi…

Decoder

V-DETR: DETR with Vertex Relative Position Encoding for 3D Object Detection

2023-08-08 · Yichao Shen, Zigang Geng, Yuhui Yuan, Yutong Lin 외

We introduce a highly performant 3D object detector for point clouds using the DETR framework. The prior attempts all end up with suboptimal results because they fail to learn accurate inductive biases from the limited s…

3D Object DetectionDecoderobject-detectionObject Detection+1

LOD-Net: Locality-Aware 3D Object Detection Using Multi-Scale Transformer Network

2026-04-17 · Mustaqeem Khan, Aidana Nurakhmetova, Wail Gueaieb, Abdulmotaleb El Saddik arxiv

3D object detection in point cloud data remains a challenging task due to the sparsity and lack of global structure inherent in the input. In this work, we propose a novel Multi-Scale Attention (MSA) mechanism integrated…

Scene Understanding3D Object Detection

MS-DETR: Efficient DETR Training with Mixed Supervision

2024-01-08 · CVPR 2024 1 · Chuyang Zhao, Yifan Sun, Wenhao Wang, Qiang Chen 외

DETR accomplishes end-to-end object detection through iteratively generating multiple object candidates based on image features and promoting one candidate for each ground-truth object. The traditional training procedure…

DecoderObjectobject-detectionObject Detection

End-to-End Object Detection with Adaptive Clustering Transformer

2020-11-18 · Minghang Zheng, Peng Gao, Renrui Zhang, Kunchang Li 외

End-to-end Object Detection with Transformer (DETR)proposes to perform object detection with Transformer and achieve comparable performance with two-stage object detection like Faster-RCNN. However, DETR needs huge compu…

ClusteringObjectobject-detectionObject Detection