Retaining by Doing: The Role of On-Policy Data in Mitigating Forgetting
Howard Chen, Noam Razin, Karthik Narasimhan, Danqi Chen
TL;DR
Catastrophic forgetting during language-model post-training is addressed by comparing supervised fine-tuning (SFT) and reinforcement learning (RL) across tasks and model families. RL consistently achieves strong target-task gains with substantially less forgetting, with the authors arguing that on-policy data drives this robustness by enabling a mode-seeking update that preserves prior knowledge. A mixture-of-distributions analysis shows forward KL can forget less in uni-modal settings, but reverse KL forgets less in multi-modal scenarios, aligning with practical LM behavior. The authors further demonstrate that approximately on-policy data—collected at the start of epochs or via RL traces—can dramatically reduce forgetting, offering a practical, data-efficient guideline for LM post-training.
Abstract
Adapting language models (LMs) to new tasks via post-training carries the risk of degrading existing capabilities -- a phenomenon classically known as catastrophic forgetting. In this paper, toward identifying guidelines for mitigating this phenomenon, we systematically compare the forgetting patterns of two widely adopted post-training methods: supervised fine-tuning (SFT) and reinforcement learning (RL). Our experiments reveal a consistent trend across LM families (Llama, Qwen) and tasks (instruction following, general knowledge, and arithmetic reasoning): RL leads to less forgetting than SFT while achieving comparable or higher target task performance. To investigate the cause for this difference, we consider a simplified setting in which the LM is modeled as a mixture of two distributions, one corresponding to prior knowledge and the other to the target task. We identify that the mode-seeking nature of RL, which stems from its use of on-policy data, enables keeping prior knowledge intact when learning the target task. We then verify this insight by demonstrating that the use on-policy data underlies the robustness of RL to forgetting in practical settings, as opposed to other algorithmic choices such as the KL regularization or advantage estimation. Lastly, as a practical implication, our results highlight the potential of mitigating forgetting using approximately on-policy data, which can be substantially more efficient to obtain than fully on-policy data.
