iteshxt commited on
Commit
1ecb64a
·
verified ·
1 Parent(s): c35d9b6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +125 -3
README.md CHANGED
@@ -1,3 +1,125 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ task_categories:
6
+ - text-generation
7
+ - text-to-text
8
+ - dialogue
9
+ tags:
10
+ - emotional-intelligence
11
+ - gen-z
12
+ - empathy
13
+ - mental-health
14
+ - small-models
15
+ - gguf
16
+ - lora
17
+ size_categories:
18
+ - 1K<n<10K
19
+ pretty_name: DiaChat Dataset
20
+ ---
21
+
22
+ # DiaChat Dataset
23
+
24
+ ## Dataset Summary
25
+
26
+ The **DiaChat Dataset** is a curated conversational dataset designed to fine-tune **very small language models (≈270M parameters)** to behave as a warm, emotionally intelligent, Gen Z–style conversational companion called **Dia**.
27
+
28
+ This dataset focuses on **tone, empathy, and emotional awareness**, rather than reasoning, knowledge recall, or task completion.
29
+
30
+ It is suitable for **client-side, offline, and privacy-first AI systems**.
31
+
32
+ ---
33
+
34
+ ## Supported Tasks
35
+
36
+ - Conversational response generation
37
+ - Emotion-aware dialogue
38
+ - Empathetic text generation
39
+
40
+ ---
41
+
42
+ ## Languages
43
+
44
+ - English (`en`)
45
+
46
+ ---
47
+
48
+ ## Dataset Structure
49
+
50
+ Each example contains four fields:
51
+
52
+ - `system`: Defines Dia’s persona and conversational style
53
+ - `user`: The user’s message
54
+ - `context`: Natural-language emotional metadata
55
+ - `assistant`: Dia’s empathetic response
56
+
57
+ ### Example
58
+
59
+ ```text
60
+ system: You are "Dia" — a warm, emotionally intelligent, Gen Z-style friend.
61
+ user: I feel like everyone’s doing better than me lately.
62
+ context:
63
+ Emotion detected: sadness
64
+ User tone: self-critical
65
+ assistant: Yeah… that comparison spiral hits hard. But your life isn’t behind — it’s just on its own timeline.
66
+ ```
67
+
68
+ ---
69
+
70
+ ## Emotion Coverage
71
+
72
+ The dataset spans a broad emotional range, including:
73
+
74
+ - sadness
75
+ - anxiety
76
+ - self-doubt
77
+ - loneliness
78
+ - burnout
79
+ - pride
80
+ - frustration
81
+ - numbness
82
+ - overthinking
83
+ - neutral / conversational moods
84
+
85
+ This ensures the assistant does not feel crisis-only or clinical.
86
+
87
+ ---
88
+
89
+ ## Intended Use
90
+
91
+ ### Recommended
92
+
93
+ - LoRA / QLoRA fine-tuning
94
+ - Small and quantized language models (Gemma, Phi-style, Qwen-small)
95
+ - GGUF-based inference pipelines
96
+ - Emotion-first conversational agents
97
+
98
+ ### Not Recommended
99
+
100
+ - Medical, psychological, or clinical diagnosis
101
+ - Crisis intervention systems
102
+ - Decision-making or advisory systems
103
+
104
+ ---
105
+
106
+ ## Bias, Risks, and Limitations
107
+
108
+ - The dataset reflects a **Gen Z conversational tone** and may not generalize to other demographics.
109
+ - Responses are intentionally non-directive and may not satisfy users seeking explicit advice.
110
+ - The dataset should **not** be used as a replacement for professional mental health support.
111
+
112
+ ---
113
+
114
+ ## Dataset Creation
115
+
116
+ - Manually curated and generated with strict style constraints
117
+ - Emphasis on consistency over scale
118
+ - Context provided as plain natural language for GGUF compatibility
119
+
120
+ ---
121
+
122
+ ## Licensing
123
+
124
+ This dataset is released for **research and experimental use only**.
125
+ Use responsibly and with appropriate safeguards.