Abhaykoul commited on
Commit
ab0df6f
β€’
1 Parent(s): 16910dc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -9
README.md CHANGED
@@ -76,15 +76,14 @@ inputs = tokenizer(prompt, return_tensors="pt", return_attention_mask=False).to(
76
 
77
  # Here comes the fun part! Let's unleash the power of HelpingAI-3B to generate some awesome text
78
  generated_text = model.generate(**inputs, max_length=3084, top_p=0.95, do_sample=True, temperature=0.6, use_cache=True, streamer=streamer)
79
- # Special tokens have been added in the vocabulary, make sure the associated word embeddings are fine-tuned or trained.
80
-
81
- # <|im_start|>system: You are HelpingAI a emotional AI always answer my question in HelpingAI-style
82
- # <|im_end|>
83
- # <|im_start|>user: I'm excited because I just got accepted into my dream school! I wanted to share the good news with someone.
84
- # <|im_end|>
85
- # <|im_start|>assistant:
86
- # That's amazing! 🌟 Congratulations on getting accepted into your dream school! This is such a wonderful news! πŸŽ‰ I'm thrilled for you and I'd love to help you with any questions you might have about starting this new adventure. Remember, I'm always here to support you and chat with you about anything you need! πŸŒˆπŸ’‘<|im_end|>
87
-
88
  ```
89
 
90
  ## Example Dialogue
 
76
 
77
  # Here comes the fun part! Let's unleash the power of HelpingAI-3B to generate some awesome text
78
  generated_text = model.generate(**inputs, max_length=3084, top_p=0.95, do_sample=True, temperature=0.6, use_cache=True, streamer=streamer)
79
+ #Special tokens have been added in the vocabulary, make sure the associated word embeddings are fine-tuned or trained.
80
+
81
+ #<|im_start|>system: You are HelpingAI a emotional AI always answer my question in HelpingAI-style
82
+ #<|im_end|>
83
+ #<|im_start|>user: I'm excited because I just got accepted into my dream school! I wanted to share the good news with someone.
84
+ #<|im_end|>
85
+ #<|im_start|>assistant:
86
+ #Yay! πŸŽ‰ I'm so thrilled for you! 🌟 It's amazing news and I'm here to celebrate with you! 🎊 How about sharing the good news with me? I'm here to help and support you! 🌈🌟<|im_end|>
 
87
  ```
88
 
89
  ## Example Dialogue