paper-with-me

Papers

DAC-DETR: Divide the Attention Layers and Conquer

2023-09-21 · NeurIPS 2023 11

This paper reveals a characteristic of DEtection Transformer (DETR) that negatively impacts its training efficacy, i.e., the cross-attention and self-attention layers in DETR decoder have contrary impacts on the object queries (though both impacts are important). Specifically, we observe the cross-attention tends to gather multiple queries around the same object, while the self-attention disperses these queries far away. To improve the training efficacy, we propose a Divide-And-Conquer DETR (DAC-DETR) that divides the cross-attention out from this contrary for better conquering. During training, DAC-DETR employs an auxiliary decoder that focuses on learning the cross-attention layers. The auxiliary decoder, while sharing all the other parameters, has NO self-attention layers and employs one-to-many label assignment to improve the gathering effect. Experiments show that DAC-DETR brings remarkable improvement over popular DETRs. For example, under the 12 epochs training scheme on MS-COCO, DAC-DETR improves Deformable DETR (ResNet-50) by +3.4 AP and achieves 50.9 (ResNet-50) / 58.1 AP (Swin-Large) based on some popular methods (i.e., DINO and an IoU-related loss). Our code will be made available at https://github.com/huzhengdongcs/DAC-DETR.

📄 PDF Abstract BibTeX

Code (1)

huzhengdongcs/dac-detr 공식 구현 paddle

Tasks

Object Detection

Methods 이 논문이 사용한 방법론

Multi-Head Attention 설명 없음
Attention 설명 없음
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…
Dropout Dropout is a regularization technique for neural networks that drops a unit (along with connections) at training time with a specified probability $p$ (a common value is…
Feedforward Network A Feedforward Network, or a Multilayer Perceptron (MLP), is a neural network with solely densely connected layers. This is the classic neural network architecture of the…
Vision Transformer The Vision Transformer, or ViT, is a model for image classification that employs a Transformer-like architecture over…
Deformable Attention Module Deformable Attention Module is an attention module used in the Deformable DETR architecture, which seeks to overcome one…
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 제목 키워드 기반

Weight Divergence Driven Divide-and-Conquer Approach for Optimal Federated Learning from non-IID Data

2021-06-28 · Pravin Chandran, Raghavendra Bhat, Avinash Chakravarthi, Srikanth Chandar

Federated Learning allows training of data stored in distributed devices without the need for centralizing training data, thereby maintaining data privacy. Addressing the ability to handle data heterogeneity (non-identic…

Federated Learning

Can Large Language Models do Analytical Reasoning?

2024-03-06 · Yebowen Hu, Kaiqiang Song, Sangwoo Cho, Xiaoyang Wang 외

This paper explores the cutting-edge Large Language Model with analytical reasoning on sports. Our analytical reasoning embodies the tasks of letting large language models count how many points each team scores in a quar…

Language ModellingLarge Language Model

You Only Look One-level Feature

2021-03-17 · CVPR 2021 1 · Qiang Chen, Yingming Wang, Tong Yang, Xiangyu Zhang 외

This paper revisits feature pyramids networks (FPN) for one-stage detectors and points out that the success of FPN is due to its divide-and-conquer solution to the optimization problem in object detection rather than mul…

object-detectionObject Detection

Decoupled DETR: Spatially Disentangling Localization and Classification for Improved End-to-End Object Detection

2023-10-24 · ICCV 2023 1 · Manyuan Zhang, Guanglu Song, Yu Liu, Hongsheng Li

The introduction of DETR represents a new paradigm for object detection. However, its decoder conducts classification and box localization using shared queries and cross-attention layers, leading to suboptimal results. W…

ClassificationDecoderobject-detectionObject Detection

Fast Multipole Attention: A Divide-and-Conquer Attention Mechanism for Long Sequences

2023-10-18 · Yanming Kang, Giang Tran, Hans De Sterck

Transformer-based models have achieved state-of-the-art performance in many areas. However, the quadratic complexity of self-attention with respect to the input length hinders the applicability of Transformer-based model…

Language ModelingLanguage Modelling