liyongsea commited on
Commit
c43e319
·
verified ·
1 Parent(s): 8762723

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -7,12 +7,12 @@ tags:
7
  library_name: transformers
8
  license: apache-2.0
9
  ---
10
- # Kimina-Prover-8B
11
 
12
 
13
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/66775fab8c58c5a12ae629ac/mtT1qq2bKycrWvy9NT0ly.png)
14
 
15
- **Kimina-Prover-8B** is a theorem proving model developed by Project Numina and Kimi teams, focusing on competition style problem solving capabilities in Lean 4. It is a distillation of **Kimina-Prover**, a model trained via large scale reinforcement learning. It achieves 77.86% accuracy with Pass@32 on MiniF2F-test.
16
 
17
  # Quick Start with vLLM
18
 
@@ -21,7 +21,7 @@ You can easily do inference using vLLM:
21
  ```python
22
  from vllm import LLM, SamplingParams
23
  from transformers import AutoTokenizer
24
- model_name = "AI-MO/Kimina-Prover-8B"
25
  model = LLM(model_name)
26
  tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
27
  problem = "The volume of a cone is given by the formula $V = \frac{1}{3}Bh$, where $B$ is the area of the base and $h$ is the height. The area of the base of a cone is 30 square units, and its height is 6.5 units. What is the number of cubic units in its volume?"
 
7
  library_name: transformers
8
  license: apache-2.0
9
  ---
10
+ # Kimina-Prover-Distill-8B
11
 
12
 
13
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/66775fab8c58c5a12ae629ac/mtT1qq2bKycrWvy9NT0ly.png)
14
 
15
+ **AI-MO/Kimina-Prover-Distill-8B** is a theorem proving model developed by Project Numina and Kimi teams, focusing on competition style problem solving capabilities in Lean 4. It is a distillation of **Kimina-Prover**, a model trained via large scale reinforcement learning. It achieves 77.86% accuracy with Pass@32 on MiniF2F-test.
16
 
17
  # Quick Start with vLLM
18
 
 
21
  ```python
22
  from vllm import LLM, SamplingParams
23
  from transformers import AutoTokenizer
24
+ model_name = "AI-MO/Kimina-Prover-Distill-8B"
25
  model = LLM(model_name)
26
  tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
27
  problem = "The volume of a cone is given by the formula $V = \frac{1}{3}Bh$, where $B$ is the area of the base and $h$ is the height. The area of the base of a cone is 30 square units, and its height is 6.5 units. What is the number of cubic units in its volume?"