Update README.md
Browse files
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
|
| 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
|