Summary (Overview)
- Core Finding: The paper uncovers "ELR collapse" in language model pretraining: learning rate (LR) and parameter norm govern loss dynamics primarily through their ratio, the effective learning rate (ELR), defined as .
- Quantitative Precision: When ELR schedules are matched across runs with substantially different LRs and norms, loss trajectories collapse with mean discrepancies of only a few —well below seed-to-seed variation (~ to ) and the -scale differences used in optimizer studies.
- Mechanistic Mediation: Weight decay and Hyperball (explicit norm constraint) affect loss dynamics primarily through the ELR schedules they induce, not as independent controls. LR-only interventions that match target ELR recover target loss trajectories with errors of and .
- Scaling Law Transfer: Replacing LR with ELR in functional scaling laws (FSL) enables transfer across norm-control methods, reducing out-of-distribution prediction error by 11.83×.
- Explanatory Power: The ELR framework explains "delayed acceleration"—the phenomenon where norm-controlled runs initially have higher loss but later overtake baselines—as a temporal separation between when learning gains are acquired (early) and when they are revealed (late).
Introduction and Theoretical Foundation
Background and Motivation
Training dynamics in LLM pretraining are governed by hyperparameters like LR and batch size, but norm control provides another axis—encompassing implicit mechanisms (weight decay) and explicit constraints (Hyperball, SSO). Norm control improves training stability and hyperparameter transfer but also reshapes loss dynamics. This raises the central question:
Does norm control introduce an independent degree of freedom governing loss dynamics?
Theoretical Basis: Scale Invariance and ELR
The ELR concept originates from scale-invariant objectives where for all . For such objectives:
- For gradient descent: ELR is
- For scale-insensitive optimizers (signSGD, Adam): ELR is
However, the authors emphasize that transformers are not exactly scale invariant. In a pre-norm residual block:
rescaling affects identity and residual branches differently. Learnable normalization gains, nonhomogeneous activations, and embedding/output layers introduce further scale dependence. Thus, ELR collapse is not implied by exact reparameterization symmetry.
Key Definitions
The effective learning rate at step :
Loss residual and mean collapse error:
Methodology
ELR Matching Protocol
For a reference run A with LR and norm evolution , inducing ELR schedule :
- Choose a different LR schedule for run B
- Set target norm
- Enforce at every optimization step
This ensures runs A and B have different LR and norm schedules but identical ELR schedules.
Norm Control Methods
Decoupled weight decay:
Hyperball (explicit norm constraint):
Experimental Configurations
- Models: Llama (dense), Qwen3 (dense), Qwen3-MoE, Kimi Delta Attention (linear attention), 100M–1B parameters
- Datasets: FineWeb, C4, OpenWebText
- Optimizers: AdamW, Muon, Signum
- Ablations: QK-Norm removal, fixed vs. learnable RMSNorm gains, sinusoidal LR–norm modulation at varying frequencies
Functional Scaling Laws (FSL)
Given LR schedule , the intrinsic training time is . FSL models:
where and . elr-FSL replaces with throughout.
Empirical Validation / Results
Central Result: ELR Collapse
Across 26 ELR-matched comparisons, the median collapse error is , with all comparisons below . Representative results:
Conditions for High-Precision Collapse
-
QK-Norm: Removing QK-Norm increases collapse error from to
-
Learnable RMSNorm gains: Fixing gains (making parameterization more scale invariant) increases error to —a ~3.5× degradation
-
Timescale of LR–norm variation: Modulating LR and norm jointly with sinusoidal perturbations preserves ELR but degrades collapse as frequency increases:
| Modulation Cycles | Collapse Error |
|---|---|
| 2 | |
| 32 |
Mediation through ELR
- Weight decay (λ=0.1 target vs. λ=0 with adapted LR): collapse error of
- Hyperball (MuonH target vs. MuonW with adapted LR): collapse error of (evaluated from step 7.5k due to initial transient)
Scaling Law Transfer
| Evaluation | # Runs | lr-FSL RMSE ↓ | elr-FSL RMSE ↓ | RMSE ratio ↑ |
|---|---|---|---|---|
| Fit | 4 | 0.0183 | 0.0131 | 1.40× |
| ID: held-out | 4 | 0.0239 | 0.0133 | 1.80× |
| OOD: Hyperball | 2 | 0.2508 | 0.0212 | 11.83× |
Delayed Acceleration
The ELR mechanism explains why weight decay initially yields higher loss but later overtakes baselines:
- Without weight decay, norm growth causes ELR to decay faster than nominal LR
- Weight decay sustains larger ELR longer, accumulating effective training time more rapidly
- The signal-learning advantage is acquired early but revealed late as noise injection diminishes
Theoretical and Practical Implications
Theoretical Significance
-
ELR as a low-dimensional coordinate: Despite the high-dimensional, coupled dynamics of Transformer training, loss dynamics admit an accurate low-dimensional description through ELR—analogous to how density (mass/volume ratio) governs macroscopic physical behavior.
-
Not a consequence of scale invariance: The counterintuitive finding that learnable RMSNorm gains improve collapse despite making parameterization less scale invariant rules out static symmetry as the explanation, suggesting a dynamical compensation mechanism with finite response timescale.
-
Conditional validity: ELR collapse is precise but not exact—precision depends on normalization design and the timescale of LR–norm variation.
Practical Implications
-
ELR-first pretraining: The ELR schedule should be the design object; LR scheduling and norm control are mechanisms for realizing it. This separates two conflated questions: what effective trajectory should training follow and how should that trajectory be realized.
-
Cross-scale transfer: Hyperparameter transfer becomes a two-stage problem: (a) determine the desired ELR schedule for the target scale, (b) choose a stable LR–norm realization. This replaces method-specific heuristics with a common dynamical target.
-
Norm control as ELR shaping: Norm control is useful not because a particular norm is intrinsically preferable, but because it expands the set of realizable ELR schedules. The explicit norm-control experiment shows that increasing parameter norm more rapidly late in training can improve final loss by producing more favorable ELR decay.
Conclusion
Main Takeaways
-
ELR collapse is a precise macroscopic law: LR and parameter norm govern loss dynamics primarily through their ratio, with collapse errors of a few across optimizers, architectures, datasets, and model scales.
-
Norm control acts through ELR: Weight decay and Hyperball shape loss dynamics primarily through the ELR schedules they induce, not as independent controls.
-
ELR enables scaling law transfer: Parameterizing FSL with ELR instead of LR enables transfer across norm-control methods, reducing OOD prediction error by 11.83×.
-
Delayed acceleration is explained: The late-emerging benefit of norm control reflects temporal separation—gains are acquired early but revealed late as noise diminishes.
Limitations and Future Directions
- Scope limited to loss dynamics: Matched loss trajectories need not imply matched parameters, representations, or downstream performance
- Microscopic mechanism remains open: A satisfactory theory should explain why such an accurate low-dimensional description exists and why precision depends on normalization design and variation timescale
- Future work: Determine how the desired ELR schedule changes with model size, batch size, data budget, and training horizon; stability, numerical precision, and transferability remain additional constraints on ELR schedule realization
Related papers
- CRISP: Cliff-awaRe Input-adaptive Sparse Prefilling with Structural-Mass-Motivated Routing
CRISP replaces indirect JSD routing and cumulative coverage thresholds with a structural-mass proxy and sink-aware noise-floor threshold, achieving parity with dense attention and up to 5.30x speedup at 512k tokens.
- Explore More, Drift Less: Outcome-Only Reinforcement Learning Can Suffice for Long-Horizon Interactive Agents
Outcome-only reinforcement learning with CANOPY, a protocol fixing signal starvation and policy drift, lets a single open 14B model top the AppWorld leaderboard.
- Deriving Scaling Laws for OpenEuroLLM Models: Learning Rate, Batch Size and Loss
The Skaling law, with its N-D interaction exponent, predicts held-out LLM losses three times more accurately than Chinchilla, while optimal learning rate and batch size scale as N^-0.417 D^0.086 and N^0.145 D^0.460.