Update README.md
Browse files
README.md
CHANGED
|
@@ -12,7 +12,7 @@ license: apache-2.0
|
|
| 12 |
|
| 13 |

|
| 14 |
|
| 15 |
-
**Kimina-Prover-1.7B** 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 72.95% 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-1.7B"
|
| 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?"
|
|
|
|
| 12 |
|
| 13 |

|
| 14 |
|
| 15 |
+
**AI-MO/Kimina-Prover-Distill-1.7B** 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 72.95% 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-1.7B"
|
| 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?"
|