LGAIJul 10, 2024

Deconstructing What Makes a Good Optimizer for Language Models

arXiv:2407.07972v243 citationsh-index: 96
AI Analysis

This work addresses the practical challenge of optimizer selection for language model training, but it is incremental as it refines existing methods without introducing a new paradigm.

The study compared optimization algorithms for language models and found that, except for SGD, algorithms like Adam, Lion, and Sophia perform similarly in optimal performance and hyperparameter stability, with no clear winner. It introduced simplified variants like Signum and Adalayer, showing that adaptivity in specific layers is crucial for maintaining performance and stability.

Training language models becomes increasingly expensive with scale, prompting numerous attempts to improve optimization efficiency. Despite these efforts, the Adam optimizer remains the most widely used, due to a prevailing view that it is the most effective approach. We aim to compare several optimization algorithms, including SGD, Adafactor, Adam, Lion, and Sophia in the context of autoregressive language modeling across a range of model sizes, hyperparameters, and architecture variants. Our findings indicate that, except for SGD, these algorithms all perform comparably both in their optimal performance and also in terms of how they fare across a wide range of hyperparameter choices. Our results suggest to practitioners that the choice of optimizer can be guided by practical considerations like memory constraints and ease of implementation, as no single algorithm emerged as a clear winner in terms of performance or stability to hyperparameter misspecification. Given our findings, we further dissect these approaches, examining two simplified versions of Adam: a) signed momentum (Signum) which we see recovers both the performance and hyperparameter stability of Adam and b) Adalayer, a layerwise variant of Adam which we introduce to study the impact on Adam's preconditioning for different layers of the network. Examining Adalayer leads us to the conclusion that, perhaps surprisingly, adaptivity on both the last layer and LayerNorm parameters in particular are necessary for retaining performance and stability to learning rate.

Foundations

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

Your Notes