Datasets:

Languages:
English
ArXiv:
License:
zhuqi commited on
Commit
67a6d65
1 Parent(s): 86b7615

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -0
README.md ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dataset Card for DailyDialog
2
+
3
+ - **Repository:** http://yanran.li/dailydialog
4
+ - **Paper:** https://arxiv.org/pdf/1710.03957.pdf
5
+ - **Leaderboard:** None
6
+ - **Who transforms the dataset:** Qi Zhu(zhuq96 at gmail dot com)
7
+
8
+ ### Dataset Summary
9
+
10
+ DailyDialog is a high-quality multi-turn dialog dataset. It is intriguing in several aspects. The language is human-written and less noisy. The dialogues in the dataset reflect our daily communication way and cover various topics about our daily life. We also manually label the developed dataset with communication intention and emotion information.
11
+
12
+ - **How to get the transformed data from original data:**
13
+ - Download [ijcnlp_dailydialog.zip](http://yanran.li/files/ijcnlp_dailydialog.zip).
14
+ - Run `python preprocess.py` in the current directory.
15
+ - **Main changes of the transformation:**
16
+ - Use `topic` annotation as `domain`. If duplicated dialogs are annotated with different topics, use the most frequent one.
17
+ - Use `intent` annotation as `binary` dialogue act.
18
+ - Retain emotion annotation in the `emotion` field of each turn.
19
+ - Use nltk to remove space before punctuation: `utt = ' '.join([detokenizer.detokenize(word_tokenize(s)) for s in sent_tokenize(utt)])`.
20
+ - Replace `" ’ "` with `"'"`: `utt = utt.replace(' ’ ', "'")`.
21
+ - Add space after full-stop
22
+ - **Annotations:**
23
+ - intent, emotion
24
+
25
+ ### Supported Tasks and Leaderboards
26
+
27
+ NLU, NLG
28
+
29
+ ### Languages
30
+
31
+ English
32
+
33
+ ### Data Splits
34
+
35
+ | split | dialogues | utterances | avg_utt | avg_tokens | avg_domains | cat slot match(state) | cat slot match(goal) | cat slot match(dialogue act) | non-cat slot span(dialogue act) |
36
+ |------------|-------------|--------------|-----------|--------------|---------------|-------------------------|------------------------|--------------------------------|-----------------------------------|
37
+ | train | 11118 | 87170 | 7.84 | 11.22 | 1 | - | - | - | - |
38
+ | validation | 1000 | 8069 | 8.07 | 11.16 | 1 | - | - | - | - |
39
+ | test | 1000 | 7740 | 7.74 | 11.36 | 1 | - | - | - | - |
40
+ | all | 13118 | 102979 | 7.85 | 11.22 | 1 | - | - | - | - |
41
+
42
+ 10 domains: ['Ordinary Life', 'School Life', 'Culture & Education', 'Attitude & Emotion', 'Relationship', 'Tourism', 'Health', 'Work', 'Politics', 'Finance']
43
+ - **cat slot match**: how many values of categorical slots are in the possible values of ontology in percentage.
44
+ - **non-cat slot span**: how many values of non-categorical slots have span annotation in percentage.
45
+
46
+
47
+ ### Citation
48
+
49
+ ```
50
+ @InProceedings{li2017dailydialog,
51
+ author = {Li, Yanran and Su, Hui and Shen, Xiaoyu and Li, Wenjie and Cao, Ziqiang and Niu, Shuzi},
52
+ title = {DailyDialog: A Manually Labelled Multi-turn Dialogue Dataset},
53
+ booktitle = {Proceedings of The 8th International Joint Conference on Natural Language Processing (IJCNLP 2017)},
54
+ year = {2017}
55
+ }
56
+ ```
57
+
58
+ ### Licensing Information
59
+
60
+ [**CC BY-NC-SA 4.0**](https://creativecommons.org/licenses/by-nc-sa/4.0/)