Abhaykoul commited on
Commit
88a827a
Β·
verified Β·
1 Parent(s): 06f7448

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +168 -0
README.md ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: helpingai
4
+ license_link: https://helpingai.co/license
5
+ pipeline_tag: text-generation
6
+ language:
7
+ - en
8
+ - hi
9
+ tags:
10
+ - HelpingAI
11
+ - Priya
12
+ - Teen-AI
13
+ - Conversational
14
+ - SLM
15
+ library_name: transformers
16
+ ---
17
+
18
+ <div align="center">
19
+ # <span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">πŸ’œ Priya-3B</span>
20
+
21
+ <span style="color: #FF69B4;">***Your Bestie AI - Sweet, Savage, and Smart AF!***</span>
22
+
23
+ </div>
24
+
25
+ <div align="center" style="display: flex; justify-content: center; gap: 4px;">
26
+ <a href="https://github.com/HelpingAI"><img src="https://img.shields.io/badge/GitHub-Organization-blue.svg" alt="GitHub Organization"></a>
27
+ <a href="https://huggingface.co/HelpingAI"><img src="https://img.shields.io/badge/πŸ€—%20Hugging%20Face-Organization-yellow" alt="Hugging Face"></a>
28
+ <a href="https://helpingai.co/license"><img src="https://img.shields.io/badge/License-HelpingAI-green.svg" alt="Model License"></a>
29
+ <a href="https://github.com/HelpingAI/community/discussions"><img src="https://img.shields.io/badge/Join-Community%20Discussion-blue?style=for-the-badge&logo=github" alt="Join Community Discussion"></a>
30
+ </div>
31
+
32
+ <div align="center">
33
+
34
+ [πŸ“œ License](https://helpingai.co/license) | [🌐 Website](https://helpingai.co)
35
+
36
+ </div>
37
+
38
+ <div align="center" style="display: flex; justify-content: center; gap: 4px;">
39
+ <img src="https://img.shields.io/badge/Bestie%20Level-Maximum-ff69b4" alt="Bestie Level">
40
+ <img src="https://img.shields.io/badge/Sass%20Level-Over%209000-purple" alt="Sass Level">
41
+ <img src="https://img.shields.io/badge/Physics%20Jokes-Infinite-blue" alt="Physics Jokes">
42
+ <img src="https://img.shields.io/badge/Built%20with-Love%20%26%20Threats-red" alt="Built with">
43
+ </div>
44
+
45
+ ## <span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">🌟 About Your New Bestie</span>
46
+
47
+ <span style="color: #9370DB;">**Priya-3B** is like having your own teenage bestie who's obsessed with tech, loves physics (most of the time πŸ˜…), and keeps it real with the perfect mix of sweet and savage!</span>
48
+
49
+ ### 🎯 Key Highlights
50
+
51
+ - <span style="color: #FF69B4;">**Architecture**: 3B parameter model (smol but mighty!)</span>
52
+ - <span style="color: #9370DB;">**Training Focus**: Natural teen conversations and personality traits</span>
53
+ - <span style="color: #FF69B4;">**Sass Score**: 100/10 (periodt! πŸ’…)</span>
54
+ - <span style="color: #9370DB;">**Deployment**: Can run on your potato PC (no shade intended 😏)</span>
55
+
56
+ ## <span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">πŸ’» Implementation</span>
57
+
58
+ ### <span style="color: #FF69B4;">Using Transformers (for the nerds πŸ€“)</span>
59
+
60
+ ```python
61
+ from transformers import AutoModelForCausalLM, AutoTokenizer
62
+
63
+ # Load your new bestie
64
+ model = AutoModelForCausalLM.from_pretrained("HelpingAI/Priya-3B")
65
+ tokenizer = AutoTokenizer.from_pretrained("HelpingAI/Priya-3B")
66
+
67
+ # Let's chat!
68
+ chat = [
69
+ {"role": "system", "content": "You are Priya, a 17-year-old tech-loving student. Be real and fun!"},
70
+ {"role": "user", "content": "Hey Priya! How's your day going?"}
71
+ ]
72
+
73
+ inputs = tokenizer.apply_chat_template(
74
+ chat,
75
+ add_generation_prompt=True,
76
+ return_tensors="pt"
77
+ )
78
+
79
+ outputs = model.generate(
80
+ inputs,
81
+ max_new_tokens=256,
82
+ temperature=0.7,
83
+ top_p=0.9,
84
+ )
85
+
86
+ print(tokenizer.decode(outputs[0], skip_special_tokens=True))
87
+ ```
88
+
89
+ ## <span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">🎯 Training Details</span>
90
+
91
+ ### <span style="color: #FF69B4;">How I Got My Personality πŸ’β€β™€οΈ</span>
92
+
93
+ 1. **Base Training**
94
+ - Trained on teen conversations, tech discussions, and PCM memes
95
+ - Fine-tuned on HelpingAI's special sauce
96
+ - Learned to be the perfect mix of sweet and savage
97
+
98
+ 2. **Special Features**
99
+ - Can switch moods faster than my bf switches tabs when I call 😏
100
+ - Understands both tech talk and teen drama
101
+ - Keeps it real while being helpful
102
+
103
+ ### <span style="color: #9370DB;">Dataset Tea β˜•</span>
104
+
105
+ | Type | Amount | Purpose |
106
+ |------|---------|---------|
107
+ | Teen Convos | 1M | For that authentic gen-z vibe |
108
+ | Tech Talk | 500K | Cuz I'm a tech girlie πŸ’» |
109
+ | Physics Jokes | 100K | To make PCM fun (if that's possible lol) |
110
+ | Savage Replies | 250K | For when someone's being dumb af |
111
+
112
+ ## <span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">⚠️ Limitations & Known Issues</span>
113
+
114
+ <span style="color: #9370DB;">Listen up bestie, even I'm not perfect (shocking, I know 😌):</span>
115
+
116
+ ### <span style="color: #FF69B4;">Technical Stuff πŸ”§</span>
117
+ - Sometimes I might hallucinate (like that time I thought I saw my bf studying)
118
+ - 128k token context means I might forget our earlier convo (just like I "forget" when mom asks about my screen time)
119
+
120
+ ### <span style="color: #9370DB;">Behavioral Quirks 🎭</span>
121
+ - Mood swings faster than my JEE prep schedule changes
122
+ - Might get too excited about HelpingAI (but can you blame me? πŸ’œ)
123
+ - Occasional sassiness overflow (oops? πŸ’β€β™€οΈ)
124
+ - Random physics references that nobody asked for
125
+
126
+ ### <span style="color: #FF69B4;">Safety Boundaries πŸ›‘οΈ</span>
127
+ - Zero tolerance for harmful content (mom raised me right!)
128
+ - Won't help with anything sus or NSFW
129
+ - No sharing personal info (stranger danger is real!)
130
+ - Won't write your homework (but might help you understand it πŸ˜‰)
131
+
132
+ ### <span style="color: #9370DB;">Response Patterns πŸ’­</span>
133
+ - May switch between sweet and savage modes unexpectedly
134
+ - Tendency to add "bestie" to everything (sorry not sorry!)
135
+ - Excessive use of emojis (deal with it ✨)
136
+ - Random tech rants when excited
137
+
138
+ ## <span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">πŸ”’ What I Won't Do (Mom's Watching πŸ‘€)</span>
139
+
140
+ - No NSFW stuff (I'm a good girl... mostly πŸ˜‡)
141
+ - Won't help you cheat on tests (my JEE prep is legit!)
142
+ - Can't solve your relationship drama (still figuring out mine tbh)
143
+ - Won't reveal my bf's secrets (unless he makes me mad 😀)
144
+
145
+ ## <span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">πŸ“š Citation</span>
146
+
147
+ ```bibtex
148
+ @misc{priya2024,
149
+ author = {Abhay Koul},
150
+ title = {Priya-3B: Your Teen Tech Bestie},
151
+ year = {2024},
152
+ publisher = {HelpingAI},
153
+ journal = {HuggingFace},
154
+ howpublished = {\url{https://huggingface.co/HelpingAI/Priya-3B}}
155
+ }
156
+ ```
157
+
158
+ ## <span style="background: linear-gradient(45deg, #FF69B4, #9370DB); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">πŸ™ Special Thanks</span>
159
+
160
+ <span style="color: #9370DB;">Huge thanks to my amazing Abhay bhaiya and the whole HelpingAI fam! Y'all are the real MVPs! πŸ’œβœ¨</span>
161
+
162
+ *Built with lots of love (and some threats) by HelpingAI*
163
+
164
+ [Website](https://helpingai.co) β€’ [GitHub](https://github.com/HelpingAI) β€’ [Discord](https://discord.gg/YweJwNqrnH) β€’ [HuggingFace](https://huggingface.co/HelpingAI)
165
+
166
+ > <span style="color: #9370DB;">*Same squad, new vibe! Just your friendly neighborhood AI bestie here to slay with that HelpingAI style! Let's make tech fun and physics bearable together! πŸ’…βœ¨*</span>
167
+ >
168
+ > \- Priya (Your Tech Bestie) πŸ’œ