Update README.md
Browse filesadd note about newline
README.md
CHANGED
@@ -101,6 +101,7 @@ generation_output = model.generate(**model_inputs, max_new_tokens=16)
|
|
101 |
generation_text = processor.batch_decode(generation_output[:, -16:], skip_special_tokens=True)
|
102 |
assert generation_text == ["The life expectancy at birth of males in 2018 is 80.7.\n"]
|
103 |
```
|
|
|
104 |
|
105 |
## Uses
|
106 |
|
|
|
101 |
generation_text = processor.batch_decode(generation_output[:, -16:], skip_special_tokens=True)
|
102 |
assert generation_text == ["The life expectancy at birth of males in 2018 is 80.7.\n"]
|
103 |
```
|
104 |
+
For best performance, it's recommended to end questions with `\n`, as shown above!
|
105 |
|
106 |
## Uses
|
107 |
|