Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Dataset Card for Taskmaster-1
|
| 2 |
+
|
| 3 |
+
- **Repository:** https://github.com/google-research-datasets/Taskmaster/tree/master/TM-1-2019
|
| 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 original dataset consists of 13,215 task-based dialogs, including 5,507 spoken and 7,708 written dialogs created with two distinct procedures. Each conversation falls into one of six domains: ordering pizza, creating auto repair appointments, setting up ride service, ordering movie tickets, ordering coffee drinks and making restaurant reservations.
|
| 11 |
+
|
| 12 |
+
- **How to get the transformed data from original data:**
|
| 13 |
+
- Download [master.zip](https://github.com/google-research-datasets/Taskmaster/archive/refs/heads/master.zip).
|
| 14 |
+
- Run `python preprocess.py` in the current directory.
|
| 15 |
+
- **Main changes of the transformation:**
|
| 16 |
+
- Remove dialogs that are empty or only contain one speaker.
|
| 17 |
+
- Split woz-dialogs into train/validation/test randomly (8:1:1). The split of self-dialogs is followed the original dataset.
|
| 18 |
+
- Merge continuous turns by the same speaker (ignore repeated turns).
|
| 19 |
+
- Annotate `dialogue acts` according to the original segment annotations. Add `intent` annotation (inform/accept/reject). The type of `dialogue act` is set to `non-categorical` if the original segment annotation includes a specified `slot`. Otherwise, the type is set to `binary` (and the `slot` and `value` are empty) since it means general reference to a transaction, e.g. "OK your pizza has been ordered". If there are multiple spans overlapping, we only keep the shortest one, since we found that this simple strategy can reduce the noise in annotation.
|
| 20 |
+
- Add `domain`, `intent`, and `slot` descriptions.
|
| 21 |
+
- Add `state` by accumulate `non-categorical dialogue acts` in the order that they appear, except those whose intents are **reject**.
|
| 22 |
+
- Keep the first annotation since each conversation was annotated by two workers.
|
| 23 |
+
- **Annotations:**
|
| 24 |
+
- dialogue acts, state.
|
| 25 |
+
|
| 26 |
+
### Supported Tasks and Leaderboards
|
| 27 |
+
|
| 28 |
+
NLU, DST, Policy, NLG
|
| 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 | 10535 | 223322 | 21.2 | 8.75 | 1 | - | - | - | 100 |
|
| 39 |
+
| validation | 1318 | 27903 | 21.17 | 8.75 | 1 | - | - | - | 100 |
|
| 40 |
+
| test | 1322 | 27660 | 20.92 | 8.87 | 1 | - | - | - | 100 |
|
| 41 |
+
| all | 13175 | 278885 | 21.17 | 8.76 | 1 | - | - | - | 100 |
|
| 42 |
+
|
| 43 |
+
6 domains: ['uber_lyft', 'movie_ticket', 'restaurant_reservation', 'coffee_ordering', 'pizza_ordering', 'auto_repair']
|
| 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{byrne-etal-2019-taskmaster,
|
| 51 |
+
title = {Taskmaster-1:Toward a Realistic and Diverse Dialog Dataset},
|
| 52 |
+
author = {Bill Byrne and Karthik Krishnamoorthi and Chinnadhurai Sankar and Arvind Neelakantan and Daniel Duckworth and Semih Yavuz and Ben Goodrich and Amit Dubey and Kyu-Young Kim and Andy Cedilnik},
|
| 53 |
+
booktitle = {2019 Conference on Empirical Methods in Natural Language Processing and 9th International Joint Conference on Natural Language Processing},
|
| 54 |
+
address = {Hong Kong},
|
| 55 |
+
year = {2019}
|
| 56 |
+
}
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
### Licensing Information
|
| 60 |
+
|
| 61 |
+
[**CC BY 4.0**](https://creativecommons.org/licenses/by/4.0/)
|