rxavier commited on
Commit
b2f2f15
1 Parent(s): f2a9f5c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -189,7 +189,7 @@ tokens = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_p
189
 
190
  with torch.no_grad():
191
  outputs = model.generate(inputs=tokens, generation_config=generation_config, max_length=512)
192
- print(tokenizer.decode(outputs["sequences"].cpu().tolist()[0]))
193
  ```
194
 
195
  ## GGUF quants
 
189
 
190
  with torch.no_grad():
191
  outputs = model.generate(inputs=tokens, generation_config=generation_config, max_length=512)
192
+ print(tokenizer.decode(outputs.cpu().tolist()[0]))
193
  ```
194
 
195
  ## GGUF quants