LGJan 28, 2025

Accelerated Training through Iterative Gradient Propagation Along the Residual Path

arXiv:2501.17086v23 citationsh-index: 5ICLR
Originality Incremental advance
AI Analysis

This addresses the scalability issue for training very deep models, offering a practical solution to reduce training time, though it is incremental as it builds on existing residual-like architectures.

The paper tackles the computational burden of backpropagation in deep learning by introducing Highway backpropagation, a parallelizable iterative algorithm that approximates backpropagation, achieving major speedups with minimal performance degradation across various tasks and models.

Despite being the cornerstone of deep learning, backpropagation is criticized for its inherent sequentiality, which can limit the scalability of very deep models. Such models faced convergence issues due to vanishing gradient, later resolved using residual connections. Variants of these are now widely used in modern architecture. However, the computational cost of backpropagation remains a major burden, accounting for most of the training time. Taking advantage of residual-like architectural designs, we introduce Highway backpropagation, a parallelizable iterative algorithm that approximates backpropagation, by alternatively i) accumulating the gradient estimates along the residual path, and ii) backpropagating them through every layer in parallel. This algorithm is naturally derived from a decomposition of the gradient as the sum of gradients flowing through all paths and is adaptable to a diverse set of common architectures, ranging from ResNets and Transformers to recurrent neural networks. Through an extensive empirical study on a large selection of tasks and models, we evaluate Highway-BP and show that major speedups can be achieved with minimal performance degradation.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes