LeanProgress: Guiding Search for Neural Theorem Proving via Proof Progress Prediction
Robert Joseph George, Suozhi Huang, Peiyang Song, Anima Anandkumar
TL;DR
LeanProgress addresses the challenge of guiding search in formal proof development by predicting the number of remaining proof steps from a given Lean proof state. It builds a balanced dataset from Lean Workbook Plus and Mathlib4, then fine-tunes a lightweight model (DeepSeek Coder 1.3B) to predict remaining steps, achieving an overall MAE of 3.15 and accuracy of 75.8% on held-out data when using proof history. Incorporating this progress signal into a best-first search framework with Reprover yields a 3.8% improvement on Mathlib4-pass rates, demonstrating that global progress signals can enhance both automated and interactive theorem proving. The work also integrates a predict_steps_with_suggestion tool into LeanCopilot, offering users immediate feedback on proof progress alongside tactic suggestions, and is released with open-source code for community use and extension.
Abstract
Mathematical reasoning remains a significant challenge for Large Language Models (LLMs) due to hallucinations. When combined with formal proof assistants like Lean, these hallucinations can be eliminated through rigorous verification, making theorem proving reliable. However, even with formal verification, LLMs still struggle with long proofs and complex mathematical formalizations. While Lean with LLMs offers valuable assistance with retrieving lemmas, generating tactics, or even complete proofs, it lacks a crucial capability: providing a sense of proof progress. This limitation particularly impacts the overall development efficiency in large formalization projects. We introduce LeanProgress, a method that predicts the progress in the proof. Training and evaluating our models made on a large corpus of Lean proofs from Lean Workbook Plus and Mathlib4 and how many steps remain to complete it, we employ data preprocessing and balancing techniques to handle the skewed distribution of proof lengths. Our experiments show that LeanProgress achieves an overall prediction accuracy of 75.8% in predicting the amount of progress and, hence, the remaining number of steps. When integrated into a best-first search framework using Reprover, our method shows a 3.8% improvement on Mathlib4 compared to baseline performances of 41.4%, particularly for longer proofs. These results demonstrate how proof progress prediction can enhance both automated and interactive theorem proving, enabling users to make more informed decisions about proof strategies. Our code is merged in this library here https://github.com/lean-dojo/LeanDojo-v2.
