Update README.md
Browse files
README.md
CHANGED
@@ -16,12 +16,19 @@ tags:
|
|
16 |
- formal-mathematics
|
17 |
---
|
18 |
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
This repository contains the latest tactic generator model checkpoint from BFS-Prover, a state-of-the-art theorem proving system in Lean4. While the full BFS-Prover system integrates multiple components for scalable theorem proving, we are releasing the core tactic generation model that achieved state-of-the-art performance on formal mathematics tasks. Given a proof state in Lean4, the model generates a tactic that transforms the current proof state into a new state, progressively working towards completing the proof.
|
22 |
|
23 |
**π Paper: [BFS-Prover: Scalable Best-First Tree Search for LLM-based Automatic Theorem Proving](https://arxiv.org/abs/2502.03438)**
|
24 |
|
|
|
25 |
## β¨ Model Details
|
26 |
|
27 |
- Base Model: Qwen2.5-Math-7B
|
@@ -52,7 +59,7 @@ BFS-Prover achieves state-of-the-art performance on the MiniF2F test benchmark.
|
|
52 |
- β
Achieves better performance without requiring a critic model (value function)
|
53 |
- β
Combined with simpler search method (BFS) rather than MCTS
|
54 |
|
55 |
-
##
|
56 |
- The model expects Lean4 tactic states in the format `"{state}:::"`
|
57 |
- `:::` serves as a special indicator to signal the model to generate a tactic for the given state.
|
58 |
- The model will echo back the input state followed by the generated tactic.
|
|
|
16 |
- formal-mathematics
|
17 |
---
|
18 |
|
19 |
+
<div align="center">
|
20 |
+
<h1 style="font-size: 2.0em;">π BFS-Prover Tactic Generator</h1>
|
21 |
+
<a href="https://arxiv.org/abs/2502.03438"><img src="https://img.shields.io/badge/arXiv-2502.03438-b31b1b.svg" alt="arXiv"></a>
|
22 |
+
<a href="https://choosealicense.com/licenses/apache-2.0/"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License: Apache 2.0"></a>
|
23 |
+
<img src="https://img.shields.io/badge/Lean-4-orange" alt="Lean 4">
|
24 |
+
State-of-the-art tactic generation model in Lean4
|
25 |
+
</div>
|
26 |
|
27 |
This repository contains the latest tactic generator model checkpoint from BFS-Prover, a state-of-the-art theorem proving system in Lean4. While the full BFS-Prover system integrates multiple components for scalable theorem proving, we are releasing the core tactic generation model that achieved state-of-the-art performance on formal mathematics tasks. Given a proof state in Lean4, the model generates a tactic that transforms the current proof state into a new state, progressively working towards completing the proof.
|
28 |
|
29 |
**π Paper: [BFS-Prover: Scalable Best-First Tree Search for LLM-based Automatic Theorem Proving](https://arxiv.org/abs/2502.03438)**
|
30 |
|
31 |
+
|
32 |
## β¨ Model Details
|
33 |
|
34 |
- Base Model: Qwen2.5-Math-7B
|
|
|
59 |
- β
Achieves better performance without requiring a critic model (value function)
|
60 |
- β
Combined with simpler search method (BFS) rather than MCTS
|
61 |
|
62 |
+
## βοΈ Usage
|
63 |
- The model expects Lean4 tactic states in the format `"{state}:::"`
|
64 |
- `:::` serves as a special indicator to signal the model to generate a tactic for the given state.
|
65 |
- The model will echo back the input state followed by the generated tactic.
|