Gaie commited on
Commit
f805d84
·
verified ·
1 Parent(s): 41edc44

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -1
README.md CHANGED
@@ -203,7 +203,12 @@ inputs = processor(
203
  ).to(model.device)
204
 
205
  output = model.generate(**inputs, max_new_tokens=30)
206
- print(processor.decode(output[0]))
 
 
 
 
 
207
  ```
208
 
209
  ## Citation
 
203
  ).to(model.device)
204
 
205
  output = model.generate(**inputs, max_new_tokens=30)
206
+ print(processor.decode(output[0], skip_special_tokens=True))
207
+
208
+ # The output:
209
+ # In the garden's embrace,
210
+ # Bunny in a blue coat,
211
+ # Spring's gentle whisper.
212
  ```
213
 
214
  ## Citation