On the Interplay of Pre-Training, Mid-Training, and RL on Reasoning Language Models
Paper • 2512.07783 • Published • 39
This repository is organized by experiment setting. Each top-level directory corresponds to one pretraining mixture used in the extrapolation experiments.
Within each setting:
base/ stores the base model used to initialize RL.rl/ stores the final RL checkpoints for each experiment variant.Only inference-relevant Hugging Face files are included.
id2-10_0.2easy_0.3medium_0.5hardid2-10_0.5easy_0.3medium_0.2hardid2-10_0.4995easy_0.4995medium_0.001hardid2-10_0.475easy_0.475medium_0.05hardfrom transformers import AutoModelForCausalLM, AutoTokenizer
repo_id = "Interplay-LM-Reasoning/extrapolation_rl"
subdir = "id2-10_0.5easy_0.3medium_0.2hard/rl/op11-14_uniform"
tokenizer = AutoTokenizer.from_pretrained(repo_id, subfolder=subdir)
model = AutoModelForCausalLM.from_pretrained(repo_id, subfolder=subdir)