Methods › General › Normalization › Group Normalization
Group Normalization
Introduced by Yuxin Wu et al. in Group Normalization
archive 2025-07-28 Description, source and code snippet are the archive's method entry.
Group Normalization is a normalization layer that divides channels into groups and normalizes the features within each group. GN does not exploit the batch dimension, and its computation is independent of batch sizes. In the case where the group size is 1, it is equivalent to Instance Normalization.
As motivation for the method, many classical features like SIFT and HOG had group-wise features and involved group-wise normalization. For example, a HOG vector is the outcome of several spatial cells where each cell is represented by a normalized orientation histogram.
Formally, Group Normalization is defined as:
μᵢ = 1/m∑_(k∈𝒮ᵢ)xₖ
σ²ᵢ = 1/m∑_(k∈𝒮ᵢ)(xₖ-μᵢ)²
x̂ᵢ = (xᵢ - μᵢ)/(√(σ²ᵢ+ϵ))
Here x is the feature computed by a layer, and i is an index. Formally, a Group Norm layer computes μ and σ in a set 𝒮ᵢ defined as: 𝒮ᵢ ={k |k_N = i_N ,⌊k_C/(C/G)⌋= ⌊I_C/(C/G)⌋}.
Here G is the number of groups, which is a pre-defined hyper-parameter (G = 32 by default). C/G is the number of channels per group. ⌊ is the floor operation, and the final term means that the indexes i and k are in the same group of channels, assuming each group of channels are stored in a sequential order along the C axis.
Papers archive 2025-07-28
30 shown of 55, 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.
-
Dynamic Group Normalization: Spatio-Temporal Adaptation to Evolving Data Statistics 1 Jan 2025 · 0 repositories
-
Rethinking Normalization Strategies and Convolutional Kernels for Multimodal Image Fusion 15 Nov 2024 · 0 repositories · arXiv:2411.10036
-
Unsupervised Adaptive Normalization 7 Sep 2024 · 1 repository · arXiv:2409.04757
-
Exploring the Efficacy of Group-Normalization in Deep Learning Models for Alzheimer's Disease Classification 1 Apr 2024 · 0 repositories · arXiv:2404.00946
-
Training-Free Pretrained Model Merging 4 Mar 2024 · 1 repository · arXiv:2403.01753Syntology ran 3 of 4 samples · 1 unverified · 4 pointer-only (licence)
-
ELA: Efficient Local Attention for Deep Convolutional Neural Networks 2 Mar 2024 · 0 repositories · arXiv:2403.01123
-
On Sensitivity and Robustness of Normalization Schemes to Input Distribution Shifts in Automatic MR Image Diagnosis 23 Jun 2023 · 1 repository · arXiv:2306.13276Syntology ran 1 of 1 samples · 0 unverified · 1 pointer-only (licence)
-
Adaptive Sparse Convolutional Networks with Global Context Enhancement for Faster Object Detection on Drone Images 25 Mar 2023 · 1 repository · arXiv:2303.14488Syntology ran 3 of 6 samples · 3 unverified
-
Making Batch Normalization Great in Federated Deep Learning 12 Mar 2023 · 0 repositories · arXiv:2303.06530
-
On the Ideal Number of Groups for Isometric Gradient Propagation 7 Feb 2023 · 0 repositories · arXiv:2302.03193
-
MGTUNet: An new UNet for colon nuclei instance segmentation and quantification 20 Oct 2022 · 0 repositories · arXiv:2210.10981
-
Kernel Normalized Convolutional Networks for Privacy-Preserving Machine Learning 30 Sep 2022 · 0 repositories · arXiv:2210.00053
-
Training a universal instance segmentation network for live cell images of various cell types and imaging modalities 28 Jul 2022 · 1 repository · arXiv:2207.14347
-
Understanding and Improving Group Normalization 5 Jul 2022 · 1 repository · arXiv:2207.01972
-
Domain Adaptation and Active Learning for Fine-Grained Recognition in the Field of Biodiversity 22 Oct 2021 · 0 repositories · arXiv:2110.11778
-
Exploring Heterogeneous Characteristics of Layers in ASR Models for More Efficient Training 8 Oct 2021 · 0 repositories · arXiv:2110.04267
-
Scalable deeper graph neural networks for high-performance materials property prediction 25 Sep 2021 · 1 repository · arXiv:2109.12283
-
NanoBatch Privacy: Enabling fast Differentially Private learning on the IPU 24 Sep 2021 · 0 repositories · arXiv:2109.12191
-
Benchmarking the Robustness of Instance Segmentation Models 2 Sep 2021 · 0 repositories · arXiv:2109.01123
-
Effect of Pre-Training Scale on Intra- and Inter-Domain Full and Few-Shot Transfer Learning for Natural and Medical X-Ray Chest Images 31 May 2021 · 1 repository · arXiv:2106.00116
-
GENESIS-V2: Inferring Unordered Object Representations without Iterative Refinement 20 Apr 2021 · 2 repositories · arXiv:2104.09958
-
Adaptive Feature Fusion Network for Gaze Tracking in Mobile Tablets 20 Mar 2021 · 0 repositories · arXiv:2103.11119
-
SpecTr: Spectral Transformer for Hyperspectral Pathology Image Segmentation 5 Mar 2021 · 1 repository · arXiv:2103.03604
-
Batch Group Normalization 4 Dec 2020 · 0 repositories · arXiv:2012.02782
-
NLCA-Net v2 for Stereo Matching in ECCV'20 Robust Vision Challenge 1 Nov 2020 · 0 repositories
-
High resolution weakly supervised localization architectures for medical images 22 Oct 2020 · 1 repository · arXiv:2010.11475
-
BYOL works even without batch statistics 20 Oct 2020 · 3 repositories · arXiv:2010.10241Syntology ran 5 of 5 samples · 0 unverified · 3 pointer-only (licence)
-
Group Whitening: Balancing Learning Efficiency and Representational Capacity 28 Sep 2020 · 1 repository · arXiv:2009.13333Syntology ran 3 of 5 samples · 2 unverified
-
Improving Semi-supervised Federated Learning by Reducing the Gradient Diversity of Models 26 Aug 2020 · 1 repository · arXiv:2008.11364Syntology ran 4 of 11 samples · 7 unverified
-
New Interpretations of Normalization Methods in Deep Learning 16 Jun 2020 · 0 repositories · arXiv:2006.09104
Tasks archive 2025-07-28
20 shown of 72 tasks the archive attaches to papers tagged with this method, by distinct papers. A task without a page in the catalog is plain text.
Usage over time archive 2025-07-28
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
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