Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,10 +1,34 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
- **Repository:** https://github.com/google-research-datasets/Taskmaster/tree/master/TM-2-2020
|
| 4 |
- **Paper:** https://arxiv.org/pdf/1909.05358.pdf
|
| 5 |
- **Leaderboard:** None
|
| 6 |
- **Who transforms the dataset:** Qi Zhu(zhuq96 at gmail dot com)
|
| 7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
### Dataset Summary
|
| 9 |
|
| 10 |
The Taskmaster-2 dataset consists of 17,289 dialogs in the seven domains. Unlike Taskmaster-1, which includes both written "self-dialogs" and spoken two-person dialogs, Taskmaster-2 consists entirely of spoken two-person dialogs. In addition, while Taskmaster-1 is almost exclusively task-based, Taskmaster-2 contains a good number of search- and recommendation-oriented dialogs, as seen for example in the restaurants, flights, hotels, and movies verticals. The music browsing and sports conversations are almost exclusively search- and recommendation-based. All dialogs in this release were created using a Wizard of Oz (WOz) methodology in which crowdsourced workers played the role of a 'user' and trained call center operators played the role of the 'assistant'. In this way, users were led to believe they were interacting with an automated system that “spoke” using text-to-speech (TTS) even though it was in fact a human behind the scenes. As a result, users could express themselves however they chose in the context of an automated interface.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license:
|
| 5 |
+
- cc-by-4.0
|
| 6 |
+
multilinguality:
|
| 7 |
+
- monolingual
|
| 8 |
+
pretty_name: Taskmaster-2
|
| 9 |
+
size_categories:
|
| 10 |
+
- 10K<n<100K
|
| 11 |
+
task_categories:
|
| 12 |
+
- conversational
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# Dataset Card for Taskmaster-2
|
| 16 |
|
| 17 |
- **Repository:** https://github.com/google-research-datasets/Taskmaster/tree/master/TM-2-2020
|
| 18 |
- **Paper:** https://arxiv.org/pdf/1909.05358.pdf
|
| 19 |
- **Leaderboard:** None
|
| 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('tm2')
|
| 27 |
+
ontology = load_ontology('tm2')
|
| 28 |
+
database = load_database('tm2')
|
| 29 |
+
```
|
| 30 |
+
For more usage please refer to [here](https://github.com/ConvLab/ConvLab-3/tree/master/data/unified_datasets).
|
| 31 |
+
|
| 32 |
### Dataset Summary
|
| 33 |
|
| 34 |
The Taskmaster-2 dataset consists of 17,289 dialogs in the seven domains. Unlike Taskmaster-1, which includes both written "self-dialogs" and spoken two-person dialogs, Taskmaster-2 consists entirely of spoken two-person dialogs. In addition, while Taskmaster-1 is almost exclusively task-based, Taskmaster-2 contains a good number of search- and recommendation-oriented dialogs, as seen for example in the restaurants, flights, hotels, and movies verticals. The music browsing and sports conversations are almost exclusively search- and recommendation-based. All dialogs in this release were created using a Wizard of Oz (WOz) methodology in which crowdsourced workers played the role of a 'user' and trained call center operators played the role of the 'assistant'. In this way, users were led to believe they were interacting with an automated system that “spoke” using text-to-speech (TTS) even though it was in fact a human behind the scenes. As a result, users could express themselves however they chose in the context of an automated interface.
|