Update README.md
Browse files
README.md
CHANGED
@@ -23,7 +23,7 @@ It has been trained using [TRL](https://github.com/huggingface/trl).
|
|
23 |
from transformers import pipeline
|
24 |
|
25 |
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
26 |
-
generator = pipeline("text-generation", model="
|
27 |
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
28 |
print(output["generated_text"])
|
29 |
```
|
|
|
23 |
from transformers import pipeline
|
24 |
|
25 |
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
26 |
+
generator = pipeline("text-generation", model="MasterControlAIML/DeepSeek-R1-Strategy-Qwen-2.5-1.5b-Unstructured-To-Structured", device="cuda")
|
27 |
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
28 |
print(output["generated_text"])
|
29 |
```
|