đ€ AI Summary
To address catastrophic forgettingâperformance degradation on previously learned tasks due to distribution shift induced by new data during continual pretraining of large language models (LLMs)âthis paper proposes an efficient continual pretraining method integrating experience replay with gradient alignment. We are the first to empirically validate the effectiveness of gradient alignment in LLM pretraining and introduce Meta Experience Replay (MER), a low-overhead implementation that minimizes computational cost. Evaluated across multilingual and multitask settings, our approach significantly mitigates forgetting. Experiments on datasets comprising tens of billions of tokens demonstrate that replaying only 1% of historical data achieves performance gains comparable to those from scaling model parametersâwhile ensuring training stability and computational efficiency. This work establishes a scalable, practical paradigm for sustainable LLM pretraining.
đ Abstract
Training large language models (LLMs) typically involves pre-training on massive corpora, only to restart the process entirely when new data becomes available. A more efficient and resource-conserving approach would be continual pre-training, where models are updated with new data rather than retraining from scratch. However, the introduction of new data often causes distribution shifts, leading to performance degradation on previously learned tasks. In this paper, we take a deeper look at two popular proposals for addressing this distribution shift within the continual learning literature: experience replay and gradient alignment. We consider continual pre-training of models within the Llama family of architectures at a large scale across languages with 100 billion tokens of training data in each language, finding that both replay and gradient alignment lead to more stable learning without forgetting. This conclusion holds both as we vary the model scale and as we vary the number and diversity of tasks. Moreover, we are the first to demonstrate the effectiveness of gradient alignment techniques in the context of LLM pre-training and propose an efficient implementation of meta-experience replay (MER) that imbues experience replay with the benefits of gradient alignment despite negligible compute and memory overhead. Our scaling analysis across model sizes and replay rates indicates that small rates of replaying old examples are definitely a more valuable use of compute than investing in model size, but that it is more compute efficient to scale the size of the model than invest in high rates of replaying old examples.