Revisiting Residual Connections: Orthogonal Updates for Stable and Efficient Deep Networks
Giyeong Oh, Woohyun Cho, Siyeol Kim, Suhwan Choi, Youngjae Yu
TL;DR
This work revisits residual connections and argues that standard additive updates can excessively modulate the current residual stream. It proposes Orthogonal Residual Update, decomposing the module output into $f_{\parallel}$ and $f_{\perp}$ and updating with the orthogonal component $f_{\perp}$, i.e., $x_{n+1} = x_n + f_{\perp}(x_n)$. Across ViT and ResNetV2 on CIFAR, TinyImageNet, and ImageNet-1k, the method yields improved generalization and training stability, exemplified by a +3.78 percentage-point gain for ViT-B on ImageNet-1k, with modest computational overhead. The work analyzes internal dynamics, ablations, and robustness to hyperparameters, and discusses implications for residual-stream geometry and future research across architectures and modalities.
Abstract
Residual connections are pivotal for deep neural networks, enabling greater depth by mitigating vanishing gradients. However, in standard residual updates, the module's output is directly added to the input stream. This can lead to updates that predominantly reinforce or modulate the existing stream direction, potentially underutilizing the module's capacity for learning entirely novel features. In this work, we introduce Orthogonal Residual Update: we decompose the module's output relative to the input stream and add only the component orthogonal to this stream. This design aims to guide modules to contribute primarily new representational directions, fostering richer feature learning while promoting more efficient training. We demonstrate that our orthogonal update strategy improves generalization accuracy and training stability across diverse architectures (ResNetV2, Vision Transformers) and datasets (CIFARs, TinyImageNet, ImageNet-1k), achieving, for instance, a +3.78 pp top-1 accuracy gain for ViT-B on ImageNet-1k.
