agentlans commited on
Commit
2a83d47
·
verified ·
1 Parent(s): 1b2ef5f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +109 -3
README.md CHANGED
@@ -1,3 +1,109 @@
1
- ---
2
- license: cc-by-nc-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - chat
7
+ - conversational-ai
8
+ - dialogue
9
+ - emotions
10
+ task_categories:
11
+ - text2text-generation
12
+ - text-generation
13
+ ---
14
+
15
+ # DailyDialog in ShareGPT-like Format
16
+
17
+ ## Dataset Summary
18
+
19
+ This dataset is a reformatted version of the [DailyDialog](https://huggingface.co/datasets/li2017dailydialog/daily_dialog) dataset, structured to resemble ShareGPT conversations.
20
+ Each row represents a single conversation, with added features and adjustments to better support conversational AI training.
21
+
22
+ The dataset includes:
23
+ - A random system prompt to initiate natural interactions.
24
+ - Emotion annotations for user or AI messages.
25
+ - Corrected message spacing using [agentlans/flan-t5-small-detokenizer](https://huggingface.co/agentlans/flan-t5-small-detokenizer).
26
+
27
+ The dataset retains the original split sizes:
28
+ - **Train**: 11,118 conversations
29
+ - **Validation**: 1,000 conversations
30
+ - **Test**: 1,000 conversations
31
+
32
+ ## Dataset Format
33
+
34
+ Each row in the dataset contains a conversation represented as a list of message objects. Each message object includes:
35
+ - `from`: The sender of the message (`system`, `human`, or `gpt`).
36
+ - `value`: The content of the message.
37
+
38
+ ### Example Row
39
+
40
+ ```json
41
+ {
42
+ "conversations": [
43
+ {
44
+ "from": "system",
45
+ "value": "This is a discussion on normal, everyday things. Take on the role of the person the user is speaking with, and feel free to invent details to keep it real. Just keep it casual."
46
+ },
47
+ {
48
+ "from": "human",
49
+ "value": "Have you heard Jenny divorced her French husband?"
50
+ },
51
+ {
52
+ "from": "gpt",
53
+ "value": "*Body freezes, head jerks back* Oh, really? No wonder that she looks quite depressed recently."
54
+ },
55
+ {
56
+ "from": "human",
57
+ "value": "Yes. They used to be joined at the hip."
58
+ },
59
+ {
60
+ "from": "gpt",
61
+ "value": "I heard they were just married for half a year."
62
+ },
63
+ {
64
+ "from": "human",
65
+ "value": "That’s true. She said they often argued over nickel-and-dime things."
66
+ },
67
+ {
68
+ "from": "gpt",
69
+ "value": "Yeah. Mixed marriage is tempting but full of culture shock."
70
+ },
71
+ {
72
+ "from": "human",
73
+ "value": "You said it. You know, they fell in love at the first sight and quickly jumped into marriage."
74
+ },
75
+ {
76
+ "from": "gpt",
77
+ "value": "Maybe they were just attracted to each other but too different to be married."
78
+ }
79
+ ]
80
+ }
81
+ ```
82
+
83
+ ## Limitations
84
+
85
+ While this dataset offers enhanced formatting and additional features, it has several limitations:
86
+ 1. **Original Errors**: The source dataset contains spelling, grammar, and formatting errors.
87
+ 2. **Emotion Granularity**: Emotion annotations do not distinguish between intensity levels.
88
+ 3. **Awkward Reactions**: Some body language reactions may feel unnatural in context.
89
+ 4. **System Prompt Specificity**: The system prompt is generic, requiring models trained on this data to generate plausible scenarios independently.
90
+
91
+ ## Intended Uses
92
+
93
+ This dataset is designed for training and fine-tuning conversational AI models capable of multi-turn dialogue with emotional context. It can be used for tasks such as:
94
+ - Dialogue modeling
95
+ - Conversational emotion recognition
96
+ - Chatbot development
97
+
98
+ ## Citation
99
+
100
+ If you use this dataset, please cite the original [DailyDialog paper](https://arxiv.org/abs/1709.09087):
101
+
102
+ ```
103
+ @InProceedings{li2017dailydialog,
104
+ author = {Li, Yanran and Su, Hui and Shen, Xiaoyu and Li, Wenjie and Cao, Ziqiang and Niu, Shuzi},
105
+ title = {DailyDialog: A Manually Labelled Multi-turn Dialogue Dataset},
106
+ booktitle = {Proceedings of The 8th International Joint Conference on Natural Language Processing (IJCNLP 2017)},
107
+ year = {2017}
108
+ }
109
+ ```