paper-with-me

홈 › Papers

StableGrad: Backward Scale Control without Batch Normalization

2026-05-19 · Jose I. Mestre, Alberto Fernández-Hernández, Cristian Pérez-Corral, Manuel F. Dolz, Enrique S. Quintana-Ortí arxiv

Training very deep neural networks requires controlling the propagation of magnitudes across depth. Without such control, activations and gradients may vanish, explode, or enter unstable regimes that make optimization fail. Modern architectures often mitigate this problem through Batch Normalization, residual connections, or other normalization layers, which repeatedly re-scale or bypass intermediate representations. However, these mechanisms are not always appropriate. In Physics-Informed Neural Networks (PINNs), the network represents a continuous physical field and its input derivatives define the training objective, making batch-dependent normalization problematic because it can introduce non-local dependencies into the predicted field and its derivatives. We propose StableGrad, an optimizer-level scale-control mechanism that corrects layer-wise weight-gradient imbalances without modifying the forward model. Because the normalization is applied only after backpropagation and before the optimizer update, the network output, its derivatives, and the physical residual remain unchanged. We analyze the effective training dynamics induced by this rescaling and evaluate StableGrad on deep PINNs as the target application, with BatchNorm-free convolutional networks serving as a diagnostic stress test. On PINN benchmarks, StableGrad improves matched-depth solution accuracy and makes deeper models more reliable under standard optimization. On ResNet and EfficientNet architectures, where removing Batch Normalization normally leads to training collapse, StableGrad stabilizes optimization without introducing any other architectural change. These results show that optimizer-level control of weight-gradient scale can provide a practical alternative when forward normalization is unavailable or undesirable.

📄 PDF Abstract BibTeX arXiv:2605.19856

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

An Automatic Operation Batching Strategy for the Backward Propagation of Neural Networks Having Dynamic Computation Graphs

2019-05-01 · ICLR 2019 5 · Yuchen Qiao, Kenjiro Taura

Organizing the same operations in the computation graph of a neural network into batches is one of the important methods to improve the speed of training deep learning models and applications since it helps to execute op…

LMC: Fast Training of GNNs via Subgraph Sampling with Provable Convergence

2023-02-02 · Zhihao Shi, Xize Liang, Jie Wang

The message passing-based graph neural networks (GNNs) have achieved great success in many real-world applications. However, training GNNs on large-scale graphs suffers from the well-known neighbor explosion problem, i.e…

AMDP: Asynchronous Multi-Directional Pipeline Parallelism for Large-Scale Models Training

2026-05-28 · Ling Chen, Houming Wu, Wenjie Yu arxiv

Pipeline parallelism is essential for large-scale model training, but existing asynchronous approaches often degrade convergence due to parameter mismatch between forward and backward passes. We propose Asynchronous Mult…

Towards Stabilizing Batch Statistics in Backward Propagation of Batch Normalization

2020-01-19 · ICLR 2020 1 · Junjie Yan, Ruosi Wan, Xiangyu Zhang, Wei zhang 외

Batch Normalization (BN) is one of the most widely used techniques in Deep Learning field. But its performance can awfully degrade with insufficient batch size. This weakness limits the usage of BN on many computer visio…

Breaking the Bubble: Asynchronous Pipeline Parallel Training with Bounded Weight Inconsistency

2026-06-05 · Itay Elam, Eliron Rahimi, Avi Mendelson, Chaim Baskin arxiv

Pipeline parallelism is essential for training large neural networks, but existing schedules trade off throughput, memory, and optimization consistency. Synchronous pipelines preserve forward/backward weight consistency …