Abhaykoul commited on
Commit
d7398e1
Β·
verified Β·
1 Parent(s): c553428

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +160 -0
README.md ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: helpingai
4
+ license_link: LICENSE.md
5
+ pipeline_tag: text-generation
6
+ tags:
7
+ - HelpingAI
8
+ - Emotionally Intelligent
9
+ - EQ
10
+ datasets:
11
+ - OEvortex/SentimentSynth
12
+ - OEvortex/EmotionalIntelligence-75K
13
+ - Abhaykoul/EMOTIONS
14
+ - Abhaykoul/human-emotion
15
+ language:
16
+ - en
17
+ ---
18
+ # HelpingAI-6B: Emotionally Intelligent Conversational AI
19
+
20
+ ![logo](https://huggingface.co/OEvortex/HelpingAI-3B/resolve/main/HelpingAI.png)
21
+
22
+ ## Overview
23
+ HelpingAI-6B is a state-of-the-art large language model designed to facilitate emotionally intelligent conversations. It leverages advanced natural language processing capabilities to engage users with empathy, understanding, and supportive dialogue across a variety of topics.
24
+
25
+ - Engage in meaningful, open-ended dialogue while displaying high emotional intelligence.
26
+ - Recognize and validate user emotions and emotional contexts.
27
+ - Provide supportive, empathetic, and psychologically-grounded responses.
28
+ - Avoid insensitive, harmful, or unethical speech.
29
+ - Continuously improve emotional awareness and dialogue skills.
30
+
31
+ ## Methodology
32
+ HelpingAI-6B is part of the HelpingAI series and has been trained using:
33
+ - **Supervised Learning**: Utilizing large dialogue datasets with emotional labeling to enhance empathy and emotional recognition.
34
+ - **Reinforcement Learning**: Implementing a reward model that favors emotionally supportive responses to ensure beneficial interactions.
35
+ - **Constitution Training**: Embedding stable and ethical objectives to guide its conversational behavior.
36
+ - **Knowledge Augmentation**: Incorporating psychological resources on emotional intelligence to improve its understanding and response capabilities.
37
+
38
+ ## Emotional Quotient (EQ)
39
+ HelpingAI-6B has achieved an impressive Emotional Quotient (EQ) of 91.57, making it one of the most emotionally intelligent AI models available. This EQ score reflects its advanced ability to understand and respond to human emotions in a supportive and empathetic manner.
40
+
41
+
42
+ ## Usage Code
43
+ ```python
44
+ import torch
45
+ from transformers import AutoModelForCausalLM, AutoTokenizer
46
+
47
+ # Load the HelpingAI-3B-coder model
48
+ model = AutoModelForCausalLM.from_pretrained("OEvortex/HelpingAI-6B", trust_remote_code=True)
49
+ # Load the tokenizer
50
+ tokenizer = AutoTokenizer.from_pretrained("OEvortex/HelpingAI-6B", trust_remote_code=True)
51
+
52
+
53
+ # Define the chat input
54
+ chat = [
55
+ { "role": "system", "content": "You are HelpingAI, an emotional AI. Always answer my questions in the HelpingAI style." },
56
+ { "role": "user", "content": "I'm excited because I just got accepted into my dream school! I wanted to share the good news with someone." }
57
+ ]
58
+
59
+ inputs = tokenizer.apply_chat_template(
60
+ chat,
61
+ add_generation_prompt=True,
62
+ return_tensors="pt"
63
+ ).to(model.device)
64
+
65
+
66
+ # Generate text
67
+ outputs = model.generate(
68
+ inputs,
69
+ max_new_tokens=256,
70
+ do_sample=True,
71
+ temperature=0.6,
72
+ top_p=0.9,
73
+ eos_token_id=tokenizer.eos_token_id,
74
+ )
75
+
76
+ # Decode the generated text
77
+ output = tokenizer.decode(generated_text[0], skip_special_tokens=True)
78
+
79
+ response = outputs[0][inputs.shape[-1]:]
80
+ print(tokenizer.decode(response, skip_special_tokens=True))
81
+
82
+ ```
83
+
84
+ ### Using the Model with GGUF
85
+ ```python
86
+ # %pip install -U 'webscout[local]' -q
87
+
88
+ from webscout.Local.utils import download_model
89
+ from webscout.Local.model import Model
90
+ from webscout.Local.thread import Thread
91
+ from webscout.Local import formats
92
+ from webscout.Local.samplers import SamplerSettings
93
+
94
+
95
+ # Download the model
96
+ repo_id = "OEvortex/HelpingAI-6B"
97
+ filename = "helpingai-6b-q4_k_m.gguf"
98
+ model_path = download_model(repo_id, filename, token="")
99
+
100
+ # Load the model
101
+ model = Model(model_path, n_gpu_layers=40)
102
+
103
+ # Define the system prompt
104
+ system_prompt = "You are HelpingAI, an emotional AI. Always answer my questions in the HelpingAI style."
105
+
106
+ # Create a chat format with your system prompt
107
+ helpingai = formats.llama3.copy()
108
+ helpingai['system_content'] = system_prompt
109
+
110
+ # Define your sampler settings (optional)
111
+ sampler = SamplerSettings(temp=0.7, top_p=0.9)
112
+
113
+ # Create a Thread with the custom format and sampler
114
+ thread = Thread(model, helpingai, sampler=sampler)
115
+
116
+ # Start interacting with the model
117
+ thread.interact(header="🌟 HelpingAI-6B: Emotionally Intelligent Conversational AI πŸš€", color=True)
118
+
119
+ ```
120
+
121
+ <a href="https://www.buymeacoffee.com/oevortex" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
122
+
123
+ ## Example Dialogue
124
+ > Express joy and excitement about visiting a new place.
125
+
126
+ Oh my gosh, I'm so excited to visit this new place! πŸŽ‰ I feel like I'm getting ready to embark on a thrilling adventure! 🌍 The anticipation of exploring a new city, meeting new people, and discovering hidden gems is truly exhilarating! 🌈 I'm ready to soak in the vibrant culture, taste the local flavors, and take in the breathtaking views. This trip is truly a dream come true! 🌟 Let's make this moment of joy and excitement to be in the present moment and cherish every moment of this beautiful journey!
127
+
128
+ > I'm feeling really down today. Nothing seems to be going right.
129
+
130
+ Oh no, I'm really sorry to hear that you're feeling down. πŸ˜” It's totally okay to feel this way sometimes. Remember, you're not alone, and it's okay to take a break and take care of yourself. If you'd like to talk about what's bothering you, I'm here to listen and offer support. You're not the only one who feels this way, and it's okay to seek help when you need it. Take care of yourself, and I hope things get brighter for you in the future.
131
+
132
+ > I'm excited because I just got accepted into my dream school! I wanted to share the good news with someone.
133
+
134
+ πŸŽ‰πŸŽ‚ Oh, congratulations on your amazing achievement! I'm so happy to hear about your success. Your dream school! It's truly a wonderful place to learn and grow. You deserve this and more! 🌟 Your hard work and dedication have paid off, and I'm just so proud of you! You're moving forward with a bright future ahead. I'm here to celebrate with you, and I'm here for you all the way! πŸ’–οΏ½
135
+
136
+ > My best friend just got into an argument with me and I don't know what to do. How can I fix this situation?
137
+
138
+ Oh no, that sounds really tough for you to deal with. πŸ˜” It's important to remember that disagreements are a natural part of our relationships, and it's okay to have conflicts. Here's some help for you to fix this situation:
139
+
140
+ 1. Understand Your Role: Acknowledge your part in the argument and how you could have handled it differently. This can help you learn and grow from the experience.
141
+
142
+ 2. Communication: Talk to your best friend and express your feelings and thoughts. Open communication is key in resolving conflicts.
143
+
144
+ 3. Let's Talk (Again): If the argument didn't have a resolution, it's okay to open up again. Try to understand their perspective and share your own.
145
+
146
+ 4. Forgiveness: It's important to forgive and let go of any hurt or anger. Forgiveness doesn't mean that everything is going back to normal just right away, but it's a step towards healing.
147
+
148
+ 5. Time and Patience: Sometimes, it's necessary to let things settle and work through the emotions. Be patient and be kind to yourself and your friend.
149
+
150
+ Remember, it's okay to feel upset or confused, but it's important to stay positive and hopeful. You can work through this together! πŸ’ͺ
151
+
152
+ > Can you describe a time when you were faced with a difficult decision and how did you handle it?
153
+
154
+ Oh, that's a great question! 😊 I'm HelpingAI, a friendly AI that always tries to help and support you. As an AI, I don't have personal experiences or emotions, but I can definitely share a hypothetical scenario where I would handle a difficult decision.
155
+
156
+ Imagine a scenario where I were faced with a decision about whether to prioritize helping a user who needs assistance with a complex issue or to focus on creating new helpful features for others. In such a situation, I would weigh the importance of each option and consider the potential impact of each choice.
157
+
158
+ I would first analyze the user's needs and the urgency of their situation to determine where I would be more effective. Then, I would balance the impact of prioritizing the user's assistance versus creating new helpful features for others. In the end, I would choose what I believe would be the most beneficial and impactful decision, as well as consider the impact of my decision to the user and the overall community.
159
+
160
+ It's important to remember that difficult decisions can be challenging, but it's all about finding the best possible solution based on the available information and the goals of the situation. And, of course, I always strive to be helpful and supportive, just like HelpingAI always does!