| --- |
| license: apache-2.0 |
| task_categories: |
| - text-generation |
| language: |
| - en |
| tags: |
| - emotional-support |
| - mental-health |
| - empathy |
| - conversation |
| - chatml |
| size_categories: |
| - 100K<n<1M |
| --- |
| |
| # π Emotional Support 500k Dataset π |
|
|
| This dataset contains **500,000 high-quality conversational entries** focused on emotional support and empathy. It is formatted in the OpenAI Chat format, making it compatible with most modern fine-tuning pipelines. |
|
|
| ## π Dataset Details |
|
|
| - **Total Entries:** 500,000 |
| - **Language:** English |
| - **Format:** JSONL (Messages) |
| - **License:** Apache 2.0 |
|
|
| ### π¬ Example Entry |
|
|
| ```json |
| { |
| "messages": [ |
| { |
| "role": "system", |
| "content": "You are an empathetic emotional support assistant." |
| }, |
| { |
| "role": "user", |
| "content": "I feel like I'm a failure. What can I do?" |
| }, |
| { |
| "role": "assistant", |
| "content": "Let's challenge that thought together. Can you think of a recent success, no matter how small? Hold on to that spark. Small steps today can lead to real change." |
| } |
| ] |
| } |
| ``` |
|
|
| ## π― Intended Use |
|
|
| This dataset is designed for: |
| - Fine-tuning empathetic conversational agents. |
| - Research in mental health support AI. |
| - Developing validation and grounding techniques in LLMs. |
|
|
| ## π Getting Started |
|
|
| You can load this dataset using the Hugging Face `datasets` library: |
|
|
| ```python |
| from datasets import load_dataset |
| |
| dataset = load_dataset("your-username/emotional_support_500k") |
| ``` |
|
|
| ## π License |
|
|
| Licensed under the **Apache License 2.0**. You are free to use, modify, and distribute this dataset. |
|
|
| --- |
| *Dream it, Pixel it* β¨ |
|
|