bhaviktheslider commited on
Commit
946d02f
·
verified ·
1 Parent(s): 9349223

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
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="bhaviktheslider/qwen-2.5-7b-r1-countdown", device="cuda")
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
  ```