zhuqi commited on
Commit
9e7be5a
1 Parent(s): 40a3e8e

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +66 -3
README.md CHANGED
@@ -1,3 +1,66 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dataset Card for MultiWOZ 2.1
2
+
3
+ - **Repository:** https://github.com/budzianowski/multiwoz
4
+ - **Paper:** https://aclanthology.org/2020.lrec-1.53
5
+ - **Leaderboard:** https://github.com/budzianowski/multiwoz
6
+ - **Who transforms the dataset:** Qi Zhu(zhuq96 at gmail dot com)
7
+
8
+ ### Dataset Summary
9
+
10
+ MultiWOZ 2.1 fixed the noise in state annotations and dialogue utterances. It also includes user dialogue acts from ConvLab (Lee et al., 2019) as well as multiple slot descriptions per dialogue state slot.
11
+
12
+ - **How to get the transformed data from original data:**
13
+ - Download [MultiWOZ_2.1.zip](https://github.com/budzianowski/multiwoz/blob/master/data/MultiWOZ_2.1.zip).
14
+ - Run `python preprocess.py` in the current directory.
15
+ - **Main changes of the transformation:**
16
+ - Create a new ontology in the unified format, taking slot descriptions from MultiWOZ 2.2.
17
+ - Correct some grammar errors in the text, mainly following `tokenization.md` in MultiWOZ_2.1.
18
+ - Normalize slot name and value. See `normalize_domain_slot_value` function in `preprocess.py`.
19
+ - Correct some non-categorical slots' values and provide character level span annotation.
20
+ - Concatenate multiple values in user goal & state using `|`.
21
+ - Add `booked` information in system turns from original belief states.
22
+ - Remove `Booking` domain and remap all booking relevant dialog acts to unify the annotation of booking action in different domains, see `booking_remapper.py`.
23
+ - **Annotations:**
24
+ - user goal, dialogue acts, state.
25
+
26
+ ### Supported Tasks and Leaderboards
27
+
28
+ NLU, DST, Policy, NLG, E2E, User simulator
29
+
30
+ ### Languages
31
+
32
+ English
33
+
34
+ ### Data Splits
35
+
36
+ | 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) |
37
+ |------------|-------------|--------------|-----------|--------------|---------------|-------------------------|------------------------|--------------------------------|-----------------------------------|
38
+ | train | 8438 | 113556 | 13.46 | 13.23 | 2.8 | 98.84 | 99.48 | 86.39 | 98.22 |
39
+ | validation | 1000 | 14748 | 14.75 | 13.5 | 2.98 | 98.84 | 99.46 | 86.59 | 98.17 |
40
+ | test | 1000 | 14744 | 14.74 | 13.5 | 2.93 | 99.21 | 99.32 | 85.83 | 98.58 |
41
+ | all | 10438 | 143048 | 13.7 | 13.28 | 2.83 | 98.88 | 99.47 | 86.35 | 98.25 |
42
+
43
+ 8 domains: ['attraction', 'hotel', 'taxi', 'restaurant', 'train', 'police', 'hospital', 'general']
44
+ - **cat slot match**: how many values of categorical slots are in the possible values of ontology in percentage.
45
+ - **non-cat slot span**: how many values of non-categorical slots have span annotation in percentage.
46
+
47
+ ### Citation
48
+
49
+ ```
50
+ @inproceedings{eric-etal-2020-multiwoz,
51
+ title = "{M}ulti{WOZ} 2.1: A Consolidated Multi-Domain Dialogue Dataset with State Corrections and State Tracking Baselines",
52
+ author = "Eric, Mihail and Goel, Rahul and Paul, Shachi and Sethi, Abhishek and Agarwal, Sanchit and Gao, Shuyag and Hakkani-Tur, Dilek",
53
+ booktitle = "Proceedings of the 12th Language Resources and Evaluation Conference",
54
+ month = may,
55
+ year = "2020",
56
+ address = "Marseille, France",
57
+ publisher = "European Language Resources Association",
58
+ url = "https://aclanthology.org/2020.lrec-1.53",
59
+ pages = "422--428",
60
+ ISBN = "979-10-95546-34-4",
61
+ }
62
+ ```
63
+
64
+ ### Licensing Information
65
+
66
+ Apache License, Version 2.0