RanXinByteDance commited on
Commit
dd10aca
Β·
verified Β·
1 Parent(s): eabba6b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -2
README.md CHANGED
@@ -16,12 +16,19 @@ tags:
16
  - formal-mathematics
17
  ---
18
 
19
- # βš™οΈ BFS-Prover Tactic Generator
 
 
 
 
 
 
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
- ## πŸš€ Usage
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.