cfahlgren1 HF staff commited on
Commit
5f1cb13
1 Parent(s): 6e38502

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -61,8 +61,8 @@ messages=[
61
 
62
  inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to(model.device)
63
 
64
- # 32021 is the id of <|EOT|> token
65
- outputs = model.generate(inputs, max_new_tokens=512, do_sample=False, top_k=50, top_p=0.95, num_return_sequences=1, eos_token_id=32021)
66
 
67
  print(tokenizer.decode(outputs[0][len(inputs[0]):], skip_special_tokens=True))
68
 
 
61
 
62
  inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to(model.device)
63
 
64
+ # 32023 is the id of <|EOT|> token
65
+ outputs = model.generate(inputs, max_new_tokens=512, do_sample=False, top_k=50, top_p=0.95, num_return_sequences=1, eos_token_id=32023)
66
 
67
  print(tokenizer.decode(outputs[0][len(inputs[0]):], skip_special_tokens=True))
68