Papers › Salience DETR: Enhancing Detection Transformer with Hierarchical Salience Filtering Refinement

Salience DETR: Enhancing Detection Transformer with Hierarchical Salience Filtering Refinement

24 Mar 2024CVPR 2024 1arXiv:2403.16131archive 2025-07-28

Xiuquan Hou, Meiqin Liu, Senlin Zhang, Ping Wei, Badong Chen

DETR-like methods have significantly increased detection performance in an end-to-end manner. The mainstream two-stage frameworks of them perform dense self-attention and select a fraction of queries for sparse cross-attention, which is proven effective for improving performance but also introduces a heavy computational burden and high dependence on stable query selection. This paper demonstrates that suboptimal two-stage selection strategies result in scale bias and redundancy due to the mismatch between selected queries and objects in two-stage initialization. To address these issues, we propose hierarchical salience filtering refinement, which performs transformer encoding only on filtered discriminative queries, for a better trade-off between computational efficiency and precision. The filtering process overcomes scale bias through a novel scale-independent salience supervision. To compensate for the semantic misalignment among queries, we introduce elaborate query refinement modules for stable two-stage initialization. Based on above improvements, the proposed Salience DETR achieves significant improvements of +4.0% AP, +0.2% AP, +4.4% AP on three challenging task-specific detection datasets, as well as 49.2% AP on COCO 2017 with less FLOPs. The code is available at https://github.com/xiuqhou/Salience-DETR.

PaperPDFConference PDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2403.16131")

Code

Syntology Ran 11 of 23 code samples harvested from 3 repositories linked to this paper; 12 have no recorded run. Of those that ran: 2 ran · honoured contract; 3 ran · our draft was wrong; 6 ran with no contract checked.

By repository: official repository: 13 samples from 1 repository, 6 ran; community (archive-listed): 10 samples from 2 repositories, 5 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

xiuqhou/Salience-DETR officialmentioned in papermentioned on GitHubpytorch report
xiuqhou/relation-detr mentioned on GitHubpytorch report
xunull/read-Salience-DETR mentioned on GitHubpytorch report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

23 samples harvested; 11 ran; 2 honoured the contract we drafted; 12 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

2ran · honoured contract
3ran · our draft was wrong
6ran
12unverified

Licence: 0 of the 23 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 3 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

EvalResize xiuqhou/Salience-DETR/models/detectors/salience_detr.py official repository ran · metamorphic tier: deterministic Apache-2.0 (permissive) · 88c02c4fc776a779 · report
GenerateDNQueries xiuqhou/Salience-DETR/models/detectors/salience_detr.py official repository ran · metamorphic tier: deterministic Apache-2.0 (permissive) · 5d857e337ecf6a8a · report
decode_labels xiuqhou/Salience-DETR/models/detectors/salience_detr.py official repository ran · our draft was wrong Apache-2.0 (permissive) · 0b3cdeb3b0b05c06 · report
encode_labels xiuqhou/Salience-DETR/models/detectors/salience_detr.py official repository ran · honoured contract Apache-2.0 (permissive) · d088164a46bf049d · report
image_list_from_tensors xiuqhou/Salience-DETR/models/detectors/salience_detr.py official repository ran · our draft was wrong Apache-2.0 (permissive) · d4dcad186c11cc6e · report
inverse_sigmoid xiuqhou/Salience-DETR/models/detectors/salience_detr.py official repository ran · our draft was wrong fingerprinted Apache-2.0 (permissive) · 24d843af1035723e · report
BaseDetector xiuqhou/Salience-DETR/models/detectors/salience_detr.py official repository unverified Apache-2.0 (permissive) · b6ec17c5de8153f5 · report
DETRDetector xiuqhou/Salience-DETR/models/detectors/salience_detr.py official repository unverified Apache-2.0 (permissive) · 8d8d14c400dc9048 · report
DNDETRDetector xiuqhou/Salience-DETR/models/detectors/salience_detr.py official repository unverified Apache-2.0 (permissive) · e08e50fcf0e7c2e7 · report
GenerateCDNQueries xiuqhou/Salience-DETR/models/detectors/salience_detr.py official repository unverified Apache-2.0 (permissive) · 8806364b547cbe2c · report
InterpolationMode xiuqhou/Salience-DETR/models/detectors/salience_detr.py official repository unverified Apache-2.0 (permissive) · 3b967208a4a214e1 · report
SalienceDETR xiuqhou/Salience-DETR/models/detectors/salience_detr.py official repository unverified Apache-2.0 (permissive) · 5127f19798539444 · report
_onnx_batch_images xiuqhou/Salience-DETR/models/detectors/salience_detr.py official repository unverified Apache-2.0 (permissive) · 974577b98ac3356d · report
DETRBaseTransformer xiuqhou/relation-detr/models/bricks/relation_transformer.py community (archive-listed) ran Apache-2.0 (permissive) · e54def49272a77fb · report
MLP xiuqhou/relation-detr/models/bricks/relation_transformer.py community (archive-listed) ran Apache-2.0 (permissive) · 26df4273ae94b72a · report
MultiLevelTransformer xiuqhou/relation-detr/models/bricks/relation_transformer.py community (archive-listed) ran Apache-2.0 (permissive) · f4b996d811277585 · report
TwostageTransformer xiuqhou/relation-detr/models/bricks/relation_transformer.py community (archive-listed) ran Apache-2.0 (permissive) · 8d39466be24010f8 · report
encode_labels xunull/read-Salience-DETR/models/detectors/salience_detr.py community (archive-listed) ran · honoured contract Apache-2.0 (permissive) · 4350a1d28ee65b0a · report
BaseDetector xunull/read-Salience-DETR/models/detectors/salience_detr.py community (archive-listed) unverified Apache-2.0 (permissive) · b9d6e114bdfb48b5 · report
DETRDetector xunull/read-Salience-DETR/models/detectors/salience_detr.py community (archive-listed) unverified Apache-2.0 (permissive) · b452573f88203f9d · report
DNDETRDetector xunull/read-Salience-DETR/models/detectors/salience_detr.py community (archive-listed) unverified Apache-2.0 (permissive) · 4b6a428989977191 · report
RelationTransformer xiuqhou/relation-detr/models/bricks/relation_transformer.py community (archive-listed) unverified Apache-2.0 (permissive) · 4b9d0e934f46f9fd · report
SalienceDETR xunull/read-Salience-DETR/models/detectors/salience_detr.py community (archive-listed) unverified Apache-2.0 (permissive) · 7325ee0427e649c0 · report

Tasks

2D Object DetectionComputational EfficiencyDense Object DetectionObject Detection

Results from the paper archive 2025-07-28

TaskDatasetModelMetricValueRank at snapshotLeaderboardReport
Object Detection COCO 2017 val Salience-DETR (Focal-L 1x) AP 57.3 #6 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (Focal-L 1x) AP50 75.5 #6 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (Focal-L 1x) AP75 62.3 #6 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (Focal-L 1x) APL 74.5 #6 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (Focal-L 1x) APM 61.8 #6 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (Focal-L 1x) APS 40.9 #6 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (Focal-L 1x) Param. 220M #6 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (Swin-L 1x) AP 56.5 #8 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (Swin-L 1x) AP50 75.0 #8 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (Swin-L 1x) AP75 61.5 #8 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (Swin-L 1x) APL 72.8 #8 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (Swin-L 1x) APM 61.2 #8 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (Swin-L 1x) APS 40.2 #8 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (Swin-L 1x) Param. 210M #8 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (ResNet50 1x) AP 50.0 #16 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (ResNet50 1x) AP50 67.7 #16 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (ResNet50 1x) AP75 54.2 #16 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (ResNet50 1x) APL 64.4 #16 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (ResNet50 1x) APM 54.4 #16 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (ResNet50 1x) APS 33.3 #16 of 33 Archive leaderboard report
Object Detection COCO 2017 val Salience-DETR (ResNet50 1x) Param. 56M #16 of 33 Archive leaderboard report

Ranks are positions in the archive's leaderboards as they stood at the 2025-07-28 snapshot. Results published since then are not among these rows, so a rank here is not a current standing.

Methods

Absolute Position EncodingsAdamAttentionBPEConvolutionDense ConnectionsDetrDropoutFeedforward NetworkLabel SmoothingLayer NormalizationLinear LayerMulti-Head AttentionPosition-Wise Feed-Forward LayerResidual ConnectionSoftmaxTransformer

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections