mtensor commited on
Commit
6259495
1 Parent(s): 441de68

Update README.md

Browse files

add note about newline

Files changed (1) hide show
  1. README.md +1 -0
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