init
Browse files
README.md
CHANGED
|
@@ -25,7 +25,7 @@ Tabel 2: Model performance on math reasoning tasks. For AIME and AMC, the result
|
|
| 25 |
from transformers import pipeline
|
| 26 |
|
| 27 |
question = "math"
|
| 28 |
-
generator = pipeline("text-generation", model="
|
| 29 |
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 30 |
print(output["generated_text"])
|
| 31 |
```
|
|
|
|
| 25 |
from transformers import pipeline
|
| 26 |
|
| 27 |
question = "math"
|
| 28 |
+
generator = pipeline("text-generation", model="GradientResearch/Qwen2.5-7B-ECHO-MATH-GRPO", device="cuda")
|
| 29 |
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 30 |
print(output["generated_text"])
|
| 31 |
```
|