A tiny 0.6B model just crushed formal math proofs, topping the MiniF2F leaderboard
Curated by the Inblix editorial team
A new open-source training recipe is producing absurdly strong theorem-proving models that fit on a laptop. The team behind the Kimina Prover has released kimina-prover-rl, a pipeline that teaches small language models to tackle formal mathematics in Lean 4 with a structure borrowed straight from DeepSeek-R1’s playbook: think first, then write code.
The results are genuinely startling for the model sizes involved. Their 1.7-billion-parameter model hits 76.63% Pass@32 on the MiniF2F benchmark, a notoriously tough test for formal proof systems. Even more impressively, a 0.6B-parameter variant achieves 71.30%. Both numbers represent a new state of the art for open-source models in their respective size categories. You can run these things on hardware that wouldn’t break a sweat playing a YouTube video.
The secret sauce isn’t just the model architecture. It’s the training pipeline, now fully open-sourced as a fork of the Verl reinforcement learning framework. The system uses Group Relative Policy Optimization (GRPO), where the model generates multiple proof attempts for each problem. A custom verification server, kimina-lean-server, checks the generated Lean 4 code at scale. The model gets a reward of 1 only if the code compiles and the proof is verified. No partial credit.
Two clever training tricks stand out. First, a strict format reward forces the model to separate its natural language reasoning inside
💡 Key Takeaways
- A 0.6B model achieving 71.3% on MiniF2F proves that structured reasoning, not just scale, is the critical ingredient for formal math.
- The format reward penalizes messy thinking—if the model's <think> block has repetitive or comment-heavy reasoning, it gets a zero, enforcing clean output.
- The entire RL training recipe is public in a Verl fork, complete with the high-throughput Lean verification server and a Python client for integration.
Keep reading: See related articles below for more coverage on this topic.
Get smarter about AI
The sharpest AI news, curated daily. Delivered free to your inbox.