paper-with-me

홈 › Papers

Sparse DETR: Efficient End-to-End Object Detection with Learnable Sparsity

2021-11-29 · ICLR 2022 4 · Byungseok Roh, Jaewoong Shin, Wuhyun Shin, Saehoon Kim

DETR is the first end-to-end object detector using a transformer encoder-decoder architecture and demonstrates competitive performance but low computational efficiency on high resolution feature maps. The subsequent work, Deformable DETR, enhances the efficiency of DETR by replacing dense attention with deformable attention, which achieves 10x faster convergence and improved performance. Deformable DETR uses the multiscale feature to ameliorate performance, however, the number of encoder tokens increases by 20x compared to DETR, and the computation cost of the encoder attention remains a bottleneck. In our preliminary experiment, we observe that the detection performance hardly deteriorates even if only a part of the encoder token is updated. Inspired by this observation, we propose Sparse DETR that selectively updates only the tokens expected to be referenced by the decoder, thus help the model effectively detect objects. In addition, we show that applying an auxiliary detection loss on the selected tokens in the encoder improves the performance while minimizing computational overhead. We validate that Sparse DETR achieves better performance than Deformable DETR even with only 10% encoder tokens on the COCO dataset. Albeit only the encoder tokens are sparsified, the total computation cost decreases by 38% and the frames per second (FPS) increases by 42% compared to Deformable DETR. Code is available at https://github.com/kakaobrain/sparse-detr

📄 PDF Abstract BibTeX arXiv:2111.14330

Code (1)

kakaobrain/sparse-detr 공식 구현 pytorch

Tasks

Computational EfficiencyDecoderobject-detectionObject Detection

Methods 이 논문이 사용한 방법론

Multi-Head Attention 설명 없음
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…
Deformable Attention Module Deformable Attention Module is an attention module used in the Deformable DETR architecture, which seeks to overcome one…
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…
Softmax The Softmax output function transforms a previous layer's output into a vector of probabilities. It is commonly used for multiclass classification. Given an input vector $x$…
Convolution A convolution is a type of matrix operation, consisting of a kernel, a small matrix of weights, that slides over input data performing element-wise multiplication with the…

Similar Papers 제목 키워드 기반

Sparse Semi-DETR: Sparse Learnable Queries for Semi-Supervised Object Detection

2024-04-02 · CVPR 2024 1 · Tahira Shehzadi, Khurram Azeem Hashmi, Didier Stricker, Muhammad Zeshan Afzal

In this paper, we address the limitations of the DETR-based semi-supervised object detection (SSOD) framework, particularly focusing on the challenges posed by the quality of object queries. In DETR-based SSOD, the one-t…

Objectobject-detectionObject DetectionPseudo Label+2

Focal Sparse Convolutional Networks for 3D Object Detection

2022-04-26 · CVPR 2022 1 · Yukang Chen, Yanwei Li, Xiangyu Zhang, Jian Sun 외

Non-uniformed 3D sparse data, e.g., point clouds or voxels in different spatial positions, make contribution to the task of 3D object detection in different ways. Existing basic components in sparse convolutional network…

3D Object DetectionObjectobject-detectionObject Detection

Selecting Learnable Training Samples is All DETRs Need in Crowded Pedestrian Detection

2023-05-18 · Feng Gao, Jiaxu Leng, Gan Ji, Xinbo Gao

DEtection TRansformer (DETR) and its variants (DETRs) achieved impressive performance in general object detection. However, in crowded pedestrian detection, the performance of DETRs is still unsatisfactory due to the ina…

Allobject-detectionObject DetectionPedestrian Detection

SparseDet: Towards End-to-End 3D Object Detection

2022-06-02 · Jianhong Han, Zhaoyi Wan, Zhe Liu, Jie Feng 외

In this paper, we propose SparseDet for end-to-end 3D object detection from point cloud. Existing works on 3D object detection rely on dense object candidates over all locations in a 3D or 2D grid following the mainstrea…

3D Object DetectionObjectobject-detectionObject Detection

Lung-DETR: Deformable Detection Transformer for Sparse Lung Nodule Anomaly Detection

2024-09-08 · Hooman Ramezani, Dionne Aleman, Daniel Létourneau

Accurate lung nodule detection for computed tomography (CT) scan imagery is challenging in real-world settings due to the sparse occurrence of nodules and similarity to other anatomical structures. In a typical positive …

Anomaly DetectionComputed Tomography (CT)Lung Nodule Detection