TasksSotADatasetsPapersMethodsSubmitAbout
Papers With Code 2

A community resource for machine learning research: papers, code, benchmarks, and state-of-the-art results.

Explore

Notable BenchmarksAll SotADatasetsPapersMethods

Community

Submit ResultsAbout

Data sourced from the PWC Archive (CC-BY-SA 4.0). Built by the community, for the community.

Methods/ECANet

ECANet

efficient channel attention

GeneralIntroduced 20005 papers
Source Paper

Description

An ECA block has similar formulation to an SE block including a squeeze module for aggregating global spatial information and an efficient excitation module for modeling cross-channel interaction. Instead of indirect correspondence, an ECA block only considers direct interaction between each channel and its k-nearest neighbors to control model complexity. Overall, the formulation of an ECA block is: \begin{align} s = F_\text{eca}(X, \theta) & = \sigma (\text{Conv1D}(\text{GAP}(X))) \end{align} \begin{align} Y & = s X \end{align} where Conv1D(⋅)\text{Conv1D}(\cdot)Conv1D(⋅) denotes 1D convolution with a kernel of shape kkk across the channel domain, to model local cross-channel interaction. The parameter kkk decides the coverage of interaction, and in ECA the kernel size kkk is adaptively determined from the channel dimensionality CCC instead of by manual tuning, using cross-validation: \begin{equation} k = \psi(C) = \left | \frac{\log_2(C)}{\gamma}+\frac{b}{\gamma}\right |_\text{odd} \end{equation}

where γ\gammaγ and bbb are hyperparameters. ∣x∣odd|x|_\text{odd}∣x∣odd​ indicates the nearest odd function of xxx.

Compared to SENet, ECANet has an improved excitation module, and provides an efficient and effective block which can readily be incorporated into various CNNs.

Papers Using This Method

A Lightweight Insulator Defect Detection Model Based on Drone Images2024-08-26iiANET: Inception Inspired Attention Hybrid Network for efficient Long-Range Dependency2024-07-10LiteYOLO-ID: A Lightweight Object Detection Network for Insulator Defect Detection2024-06-24YOLOv8-AM: YOLOv8 Based on Effective Attention Mechanisms for Pediatric Wrist Fracture Detection2024-02-14ECA-Net: Efficient Channel Attention for Deep Convolutional Neural Networks2019-10-08