Upload README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Real Human Conversations Multilingual Dataset
|
| 2 |
+
|
| 3 |
+
A unified dataset of real human conversations from across the world.
|
| 4 |
+
|
| 5 |
+
## Languages
|
| 6 |
+
- English: Reddit, Discord, Twitch, therapy, Usenet
|
| 7 |
+
- Russian: Telegram chats
|
| 8 |
+
- Italian: Usenet newsgroups
|
| 9 |
+
- Japanese: Speech transcriptions
|
| 10 |
+
- Korean: Everyday conversations
|
| 11 |
+
|
| 12 |
+
## Format (Parquet)
|
| 13 |
+
| Column | Type | Description |
|
| 14 |
+
| text | string | Conversation text |
|
| 15 |
+
| source | string | Origin dataset |
|
| 16 |
+
| language | string | ISO code |
|
| 17 |
+
| domain | string | Conversation type |
|
| 18 |
+
| turns | int | Dialogue turns |
|
| 19 |
+
| metadata | string | Extra JSON info |
|
| 20 |
+
|
| 21 |
+
## Sources
|
| 22 |
+
- mookiezi/Discord-Dialogues
|
| 23 |
+
- HuggingFaceGECLM/REDDIT_comments
|
| 24 |
+
- fsteig/conversations-30gb
|
| 25 |
+
- SocialGrep/one-million-reddit-confessions
|
| 26 |
+
- Den4ikAI/russian_dialogues_2
|
| 27 |
+
- mii-community/UsenetArchiveIT-conversations
|
| 28 |
+
- japanese-asr/whisper_transcriptions.reazon_speech_all
|
| 29 |
+
- jojo0217/korean_safe_conversation
|
| 30 |
+
- lparkourer10/twitch_chat
|
| 31 |
+
- Amod/mental_health_counseling_conversations
|
| 32 |
+
|
| 33 |
+
## Usage
|
| 34 |
+
```python
|
| 35 |
+
from datasets import load_dataset
|
| 36 |
+
ds = load_dataset("asdf98/human-chats-worldwide", split="train")
|
| 37 |
+
```
|