MihaiPopa-1 commited on
Commit
5b6ffde
·
1 Parent(s): 6bcbfd4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -8
README.md CHANGED
@@ -17,14 +17,7 @@ It has been trained using [TRL](https://github.com/huggingface/trl).
17
 
18
  ## Quick start
19
 
20
- ```python
21
- from transformers import pipeline
22
-
23
- 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?"
24
- generator = pipeline("text-generation", model="trishtan/voxtral-sentinel-4b", device="cuda")
25
- output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
26
- print(output["generated_text"])
27
- ```
28
 
29
  ## Training procedure
30
 
 
17
 
18
  ## Quick start
19
 
20
+ We deleted the quick start code because that's a ASR model, not a text generation model.
 
 
 
 
 
 
 
21
 
22
  ## Training procedure
23