Methods › Computer Vision › Feature Extractors › SFAM

Scale-wise Feature Aggregation Module

SFAM

5 papers tagged archive 2025-07-28

archive 2025-07-28 Description, source and code snippet are the archive's method entry.

SFAM, or Scale-wise Feature Aggregation Module, is a feature extraction block from the M2Det architecture. It aims to aggregate the multi-level multi-scale features generated by Thinned U-Shaped Modules into a multi-level feature pyramid.

The first stage of SFAM is to concatenate features of the equivalent scale together along the channel dimension. The aggregated feature pyramid can be presented as 𝐗 =[𝐗₁,𝐗₂,…,𝐗ᵢ], where 𝐗ᵢ = Concat(𝐱ᵢ¹,𝐱ᵢ²,…,𝐱ᵢᴸ) ∈ℝ^(Wᵢ×Hᵢ×C) refers to the features of the i-th largest scale. Here, each scale in the aggregated pyramid contains features from multi-level depths.

However, simple concatenation operations are not adaptive enough. In the second stage, we introduce a channel-wise attention module to encourage features to focus on channels that they benefit most. Following Squeeze-and-Excitation, we use global average pooling to generate channel-wise statistics 𝐳 ∈ℝ^C at the squeeze step. And to fully capture channel-wise dependencies, the following excitation step learns the attention mechanism via two fully connected layers:

𝐬 = 𝐅ₑₓ(𝐳,𝐖) = σ(𝐖₂ δ(𝐖₁𝐳)),

where σ refers to the ReLU function, δ refers to the sigmoid function, 𝐖₁ ∈ℝ^(C/r×C) , 𝐖₂ ∈ℝ^(C×C/r), r is the reduction ratio (r=16 in our experiments). The final output is obtained by reweighting the input 𝐗 with activation 𝐬:

𝐗̃ᵢᶜ = 𝐅_(scale)(𝐗ᵢᶜ,s_c) = s_c ·𝐗ᵢᶜ,

where 𝐗̃ᵢ̃ = [𝐗̃ᵢ¹,𝐗̃ᵢ²,...,𝐗̃ᵢ^C], each of the features is enhanced or weakened by the rescaling operation.

Source: M2Det: A Single-Shot Object Detector based on...See Code · qijiezhao/M2Det

Papers archive 2025-07-28

5 shown of 5, newest first. Repository counts are the archive's code-links table. A Syntology line states what Syntology ran from that paper's harvested code; it is per sample and not a correctness claim.

Tasks archive 2025-07-28

13 tasks the archive attaches to papers tagged with this method, by distinct papers. A task without a page in the catalog is plain text.

TaskPapers
3D Feature Matching1
3D Reconstruction1
Anomaly Detection1
Decoder1
Generative Adversarial Network1
Image Restoration1
Object1
Object Detection1
Text Detection1
Text Spotting1
Video Prediction1
document understanding1
object-detection1

Usage over time archive 2025-07-28

Papers per year tagged with SFAM: 2018 to 2024, peak 2 2 0 2018: 2 papers 2018 2019: 1 paper 2019 2020: 0 papers 2020 2021: 1 paper 2021 2022: 0 papers 2022 2023: 0 papers 2023 2024: 1 paper 2024
Papers per year the archive tags with this method, by the paper's archive date (5 dated). Bars are counts, not a trend claim.

Components: the archive holds no method-to-method composition, so PwC's Components table cannot be rebuilt; the Papers list carries no Results column for the same reason (the archive does not join its leaderboard rows to method tags).

Categories archive 2025-07-28

Feature Extractors

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