Queued · round 20
Recipe-aligned multi-epoch SFT
Three epochs, linear warmup over the first three percent of steps, the base model's own optimizer betas, weight decay at zero. The reference schedule from the lab's published SFT configuration, applied to our corpus.
needs: the data recipe and training code
Queued · round 22
RLVR with GRPO on the golden checks
The deterministic checks become the reward function. Correct shape, grounded numbers, required sections, minimum length. A group of sampled completions per prompt, advantage estimated within the group, no value model.
needs: verifiable rewards, which we already have
The first lever is a multi-epoch supervised fine-tune aligned to the base model's own published training recipe: the same optimizer settings, warmup schedule, weight decay, and epoch count that OLMo-core uses in its reference SFT configuration. Three epochs instead of one. Linear warmup over the first three percent. Weight decay at zero. This is the lever a fully open release specifically enables. You align your fine-tune to the schedule the base was actually trained under, rather than guessing.
The second is Reinforcement Learning with Verifiable Rewards against the golden checks themselves. RLVR was introduced in Tülu 3 as a way to train language models on tasks where correctness is checkable by a verifier rather than judged by a preference model. Ai2 reports gains of up to 1.7, 3.3, and 1.3 points over the DPO checkpoint on MATH, GSM8K, and IFEval when RLVR is added (Lambert et al.). The optimizer we plan to use is Group Relative Policy Optimization, the critic-free variant of PPO introduced in DeepSeekMath. It estimates the advantage from a group of sampled completions instead of a learned value function, the same optimizer behind DeepSeek's R1 reasoning training (Shao et al. · DeepSeekMath (GRPO)). Our deterministic golden checks are exactly the verifiable rewards RLVR was designed for.
Both levers exist because the base model's full flow is open. On a closed model, neither is available. On a weights-only release, only the first is, and it has to be reverse-engineered. This is the compounding story in a single paragraph. The deeper the openness of the base, the more levers you have, the more precisely you can pull each one, and the further the same team on the same infrastructure gets in the same quarter. Part two covers what those rounds returned.