Recent advances in LLM reasoning capabilities are largely driven by RL, yet the parameter dynamics during RL training remain poorly understood. Our work identifies two key properties of RL-induced parameter updates: Rank-1 Dominance, where the top singular subspace of the parameter update matrix captures nearly all reasoning improvements, and Rank-1 Linear Dynamics, where this subspace evolves linearly across training, allowing accurate prediction from early checkpoints. Based on these insights, we propose AlphaRL, a plug-in acceleration framework that extrapolates final parameter updates from a short early training window, achieving up to 2.5× speedup while retaining over 96% of reasoning performance.
This model is one of the training checkpoints used in our paper and is provided to support research on evaluating and predicting parameter dynamics during RL training of LLMs. The full codebase is available at:
AlphaRL GitHub.
{question} Please reason step by step, and put your final answer within boxed{}.
1prompt = tokenizer.apply_chat_template(
2 [{{"content": question_with_instruction, "role": "user"}}],
3 tokenize=False,
4 add_generation_prompt=True,
5)
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("caiyuchen/PPO-step-8")
4tokenizer = AutoTokenizer.from_pretrained("caiyuchen/PPO-step-8")
5
6question = "Convert the point $(0,3)$ in rectangular coordinates to polar coordinates. Enter your answer in the form $(r,\theta),$ where $r > 0$ and $0 \le \theta < 2 \pi.$"
7question_with_instruction = question + "Please reason step by step, and put your final answer within \boxed{{}}"
8
9# Apply chat template
10prompt = tokenizer.apply_chat_template(
11 [{{"content": question_with_instruction, "role": "user"}}],
12 tokenize=False,
13 add_generation_prompt=True,
14)
15
16inputs = tokenizer(prompt, return_tensors="pt")
17outputs = model.generate(**inputs, max_new_tokens=256)
18print(tokenizer.decode(outputs[0], skip_special_tokens=True))
1@misc{cai2025predictabilityreinforcementlearningdynamics,
2 title={On Predictability of Reinforcement Learning Dynamics for Large Language Models},
3 author={Yuchen Cai and Ding Cao and Xin Xu and Zijun Yao and Yuqing Huang and Zhenyu Tan and Benyi Zhang and Guiquan Liu and Junfeng Fang},
4 year={2025},
5 eprint={2510.00553},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG},
8 url={https://arxiv.org/abs/2510.00553},
9}
10