A Proof of Learning Rate Transfer under µP
Quick Overview
The paper "A Proof of Learning Rate Transfer under µP" demonstrates that using the dual-rate optimization technique, which involves setting the learning rate for the final projection layer (LR transfer) to a specific positive constant (like 10^-2) while using a standard gradient descent learning rate for earlier layers, successfully stabilizes training and ensures the loss function converges to a useful non-zero constant for complex neural networks, unlike standard gradient descent which often diverges when scaled up.
Key Points: The paper proves that setting the learning rate for the final projection layer (LR transfer) to a positive constant (like $10^{-2}$) stabilizes training for complex models. Standard gradient descent methods, when scaled up, often diverge or fail to converge meaningfully when using the same learning rate across all layers. The proposed method successfully proves that the LR transfer rate stabilizes the loss function, guaranteeing convergence to a useful, non-zero constant. The authors mathematically prove that the LR transfer holds across depth, even when using 27 layers, unlike the simple polynomial loss function which breaks down. The specific mathematical proof relies on ensuring the derivative of the loss function at zero (the minimum point) converges to a positive, non-zero value. This approach allows for the use of a simpler, more practical initialization strategy, contrasting with the complex mathematics required for Adam or standard gradient descent in deep networks.
Context: This video discusses a research paper titled "A Proof of Learning Rate Transfer under µP" which tackles the challenge of stabilizing the training of very large deep neural networks, especially when scaling up the network width or depth. The core issue addressed is that standard optimization techniques, like basic gradient descent or even Adam, often fail or diverge when applied naively to extremely large models, making training impractical or impossible without specialized techniques.