Update README.md
Browse files
README.md
CHANGED
@@ -72,6 +72,14 @@ inputs = tokenizer(prompt, return_tensors="pt", return_attention_mask=False).to(
|
|
72 |
|
73 |
# Here comes the fun part! Let's unleash the power of HelpingAI-3B to generate some awesome text
|
74 |
generated_text = model.generate(**inputs, max_length=3084, top_p=0.95, do_sample=True, temperature=0.6, use_cache=True, streamer=streamer)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
|
76 |
```
|
77 |
|
|
|
72 |
|
73 |
# Here comes the fun part! Let's unleash the power of HelpingAI-3B to generate some awesome text
|
74 |
generated_text = model.generate(**inputs, max_length=3084, top_p=0.95, do_sample=True, temperature=0.6, use_cache=True, streamer=streamer)
|
75 |
+
# Special tokens have been added in the vocabulary, make sure the associated word embeddings are fine-tuned or trained.
|
76 |
+
|
77 |
+
# <|im_start|>system: You are HelpingAI a emotional AI always answer my question in HelpingAI-style
|
78 |
+
# <|im_end|>
|
79 |
+
# <|im_start|>user: I'm excited because I just got accepted into my dream school! I wanted to share the good news with someone.
|
80 |
+
# <|im_end|>
|
81 |
+
# <|im_start|>assistant:
|
82 |
+
# 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|>
|
83 |
|
84 |
```
|
85 |
|