Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Dataset Card for MetaLWOZ
|
| 2 |
|
| 3 |
- **Repository:** https://www.microsoft.com/en-us/research/project/metalwoz/
|
|
@@ -5,6 +18,16 @@
|
|
| 5 |
- **Leaderboard:** None
|
| 6 |
- **Who transforms the dataset:** Qi Zhu(zhuq96 at gmail dot com)
|
| 7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
### Dataset Summary
|
| 9 |
|
| 10 |
This large dataset was created by crowdsourcing 37,884 goal-oriented dialogs, covering 227 tasks in 47 domains. Domains include bus schedules, apartment search, alarm setting, banking, and event reservation. Each dialog was grounded in a scenario with roles, pairing a person acting as the bot and a person acting as the user. (This is the Wizard of Oz reference—using people behind the curtain who act as the machine). Each pair were given a domain and a task, and instructed to converse for 10 turns to satisfy the user’s queries. For example, if a user asked if a bus stop was operational, the bot would respond that the bus stop had been moved two blocks north, which starts a conversation that addresses the user’s actual need.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: []
|
| 5 |
+
multilinguality:
|
| 6 |
+
- monolingual
|
| 7 |
+
pretty_name: MetaLWOZ
|
| 8 |
+
size_categories:
|
| 9 |
+
- 10K<n<100K
|
| 10 |
+
task_categories:
|
| 11 |
+
- conversational
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
# Dataset Card for MetaLWOZ
|
| 15 |
|
| 16 |
- **Repository:** https://www.microsoft.com/en-us/research/project/metalwoz/
|
|
|
|
| 18 |
- **Leaderboard:** None
|
| 19 |
- **Who transforms the dataset:** Qi Zhu(zhuq96 at gmail dot com)
|
| 20 |
|
| 21 |
+
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:
|
| 22 |
+
```
|
| 23 |
+
from convlab.util import load_dataset, load_ontology, load_database
|
| 24 |
+
|
| 25 |
+
dataset = load_dataset('metalwoz')
|
| 26 |
+
ontology = load_ontology('metalwoz')
|
| 27 |
+
database = load_database('metalwoz')
|
| 28 |
+
```
|
| 29 |
+
For more usage please refer to [here](https://github.com/ConvLab/ConvLab-3/tree/master/data/unified_datasets).
|
| 30 |
+
|
| 31 |
### Dataset Summary
|
| 32 |
|
| 33 |
This large dataset was created by crowdsourcing 37,884 goal-oriented dialogs, covering 227 tasks in 47 domains. Domains include bus schedules, apartment search, alarm setting, banking, and event reservation. Each dialog was grounded in a scenario with roles, pairing a person acting as the bot and a person acting as the user. (This is the Wizard of Oz reference—using people behind the curtain who act as the machine). Each pair were given a domain and a task, and instructed to converse for 10 turns to satisfy the user’s queries. For example, if a user asked if a bus stop was operational, the bot would respond that the bus stop had been moved two blocks north, which starts a conversation that addresses the user’s actual need.
|