Scale Equalization for Multi-Level Feature Fusion
Bum Jun Kim, Sang Woo Kim
TL;DR
This work identifies scale disequilibrium as a key issue in multi-level feature fusion for semantic segmentation, arising from bilinear upsampling which reduces feature variance and biases gradient scales at initialization. It proposes Scale Equalizers, simple post-upsampling normalizers using dataset-wide mean and standard deviation $\mu$ and $\sigma$ to achieve zero-mean, unit-variance inputs before fusion, effectively functioning as a cost-free initialization for fusion weights. The approach is theoretically motivated by gradient-scale considerations and BN properties, and empirically validated across multiple backbones (e.g., Swin, Twins, ConvNeXt) and datasets (ADE20K, PASCAL VOC 2012, Cityscapes), improving $mIoU$ by about $+0.1$ to $+0.4$ on average. The method is lightweight, hyperparameter-free, and easily integrated into existing decoders such as UPerHead, PSPHead, ASPPHead, and SepASPPHead, offering practical impact for robust multi-level feature fusion in diverse segmentation tasks.
Abstract
Deep neural networks have exhibited remarkable performance in a variety of computer vision fields, especially in semantic segmentation tasks. Their success is often attributed to multi-level feature fusion, which enables them to understand both global and local information from an image. However, we found that multi-level features from parallel branches are on different scales. The scale disequilibrium is a universal and unwanted flaw that leads to detrimental gradient descent, thereby degrading performance in semantic segmentation. We discover that scale disequilibrium is caused by bilinear upsampling, which is supported by both theoretical and empirical evidence. Based on this observation, we propose injecting scale equalizers to achieve scale equilibrium across multi-level features after bilinear upsampling. Our proposed scale equalizers are easy to implement, applicable to any architecture, hyperparameter-free, implementable without requiring extra computational cost, and guarantee scale equilibrium for any dataset. Experiments showed that adopting scale equalizers consistently improved the mIoU index across various target datasets, including ADE20K, PASCAL VOC 2012, and Cityscapes, as well as various decoder choices, including UPerHead, PSPHead, ASPPHead, SepASPPHead, and FCNHead.
