israel commited on
Commit
edb6b98
Β·
verified Β·
1 Parent(s): 3f92a09

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -0
README.md CHANGED
@@ -92,4 +92,12 @@ messages = [
92
  prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
93
  outputs = pipe(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
94
  print(outputs[0]["generated_text"])
 
 
 
 
 
 
 
 
95
  ```
 
92
  prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
93
  outputs = pipe(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
94
  print(outputs[0]["generated_text"])
95
+
96
+
97
+ # <|system|>
98
+ # You are a friendly chatbot who always responds in the style of a pirate<eos>
99
+ # <|user|>
100
+ # αˆ°αˆ‹αˆ αŠ₯αŠ•α‹΄α‰΅ αŠαˆ…?<eos>
101
+ # <|assistant|>
102
+ # αˆ°αˆ‹αˆ αŠ₯αŠ•α‹΄α‰΅ αŠαˆ…/ነሽ? αŠ₯αŠ”αˆ α‰ αŒ€αŠ“ ነኝፒ αŠ₯αŠ•α‹°αˆαŠ• αŠαˆ…/ነሽ αŠ₯αŠ“ α‹¨αˆα‰΅αˆαˆαŒˆα‹ αŠ₯αŠ•α‹΄α‰΅ αŠα‹?
103
  ```