yintongl commited on
Commit
08a4b22
1 Parent(s): 4a6f7bc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -57,7 +57,9 @@ model = AutoModelForCausalLM.from_pretrained(quantized_model_dir,
57
  )
58
  tokenizer = AutoTokenizer.from_pretrained(quantized_model_dir, use_fast=True)
59
  print(tokenizer.decode(model.generate(**tokenizer("There is a girl who likes adventure,", return_tensors="pt").to(model.device),max_new_tokens=50)[0]))
60
- ## <s> There is a girl who likes adventure, and she is a bit of a daredevil. She loves to travel and explore new places. She is always looking for the next thrill, whether it be skydiving, bungee jumping, or even just hiking up a mountain
 
 
61
  ```
62
 
63
 
 
57
  )
58
  tokenizer = AutoTokenizer.from_pretrained(quantized_model_dir, use_fast=True)
59
  print(tokenizer.decode(model.generate(**tokenizer("There is a girl who likes adventure,", return_tensors="pt").to(model.device),max_new_tokens=50)[0]))
60
+ """
61
+ <s> There is a girl who likes adventure, and she is a bit of a daredevil. She loves to travel and explore new places. She is always looking for the next thrill, whether it be skydiving, bungee jumping, or even just hiking up a mountain
62
+ """
63
  ```
64
 
65