Update README.md
Browse files
README.md
CHANGED
@@ -19,6 +19,16 @@ task_categories:
|
|
19 |
- **Leaderboard:** https://github.com/budzianowski/multiwoz
|
20 |
- **Who transforms the dataset:** Qi Zhu(zhuq96 at gmail dot com)
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
### Dataset Summary
|
23 |
|
24 |
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.
|
|
|
19 |
- **Leaderboard:** https://github.com/budzianowski/multiwoz
|
20 |
- **Who transforms the dataset:** Qi Zhu(zhuq96 at gmail dot com)
|
21 |
|
22 |
+
To use this dataset, you need to install [ConvLab-3](https://github.com/ConvLab/ConvLab-3) platform first. Then you can load the dataset via:
|
23 |
+
```
|
24 |
+
from convlab.util import load_dataset, load_ontology, load_database
|
25 |
+
|
26 |
+
dataset = load_dataset('multiwoz21')
|
27 |
+
ontology = load_ontology('multiwoz21')
|
28 |
+
database = load_database('multiwoz21')
|
29 |
+
```
|
30 |
+
For more usage please refer to the [here](https://github.com/ConvLab/ConvLab-3/tree/master/data/unified_datasets).
|
31 |
+
|
32 |
### Dataset Summary
|
33 |
|
34 |
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.
|