Upload README.md
Browse files
README.md
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Dataset Card for Camrest
|
2 |
+
|
3 |
+
- **Repository:** https://www.repository.cam.ac.uk/handle/1810/260970
|
4 |
+
- **Paper:** https://aclanthology.org/D16-1233/
|
5 |
+
- **Leaderboard:** None
|
6 |
+
- **Who transforms the dataset:** Qi Zhu(zhuq96 at gmail dot com)
|
7 |
+
|
8 |
+
### Dataset Summary
|
9 |
+
|
10 |
+
Cambridge restaurant dialogue domain dataset collected for developing neural network based dialogue systems. The two papers published based on this dataset are: 1. A Network-based End-to-End Trainable Task-oriented Dialogue System 2. Conditional Generation and Snapshot Learning in Neural Dialogue Systems. The dataset was collected based on the Wizard of Oz experiment on Amazon MTurk. Each dialogue contains a goal label and several exchanges between a customer and the system. Each user turn was labelled by a set of slot-value pairs representing a coarse representation of dialogue state (`slu` field). There are in total 676 dialogue, in which most of the dialogues are finished but some of dialogues were not.
|
11 |
+
|
12 |
+
- **How to get the transformed data from original data:**
|
13 |
+
- Run `python preprocess.py` in the current directory. Need `../../camrest/` as the original data.
|
14 |
+
- **Main changes of the transformation:**
|
15 |
+
- Add dialogue act annotation according to the state change. This step was done by ConvLab-2 and we use the processed dialog acts here.
|
16 |
+
- Rename `pricerange` to `price range`
|
17 |
+
- Add character level span annotation for non-categorical slots.
|
18 |
+
- **Annotations:**
|
19 |
+
- user goal, dialogue acts, state.
|
20 |
+
|
21 |
+
### Supported Tasks and Leaderboards
|
22 |
+
|
23 |
+
NLU, DST, Policy, NLG, E2E, User simulator
|
24 |
+
|
25 |
+
### Languages
|
26 |
+
|
27 |
+
English
|
28 |
+
|
29 |
+
### Data Splits
|
30 |
+
|
31 |
+
| 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) |
|
32 |
+
| ---------- | --------- | ---------- | ------- | ---------- | ----------- | --------------------- | -------------------- | ---------------------------- | ------------------------------- |
|
33 |
+
| train | 406 | 3342 | 8.23 | 10.6 | 1 | 100 | 100 | 100 | 99.83 |
|
34 |
+
| validation | 135 | 1076 | 7.97 | 11.26 | 1 | 100 | 100 | 100 | 100 |
|
35 |
+
| test | 135 | 1070 | 7.93 | 11.01 | 1 | 100 | 100 | 100 | 100 |
|
36 |
+
| all | 676 | 5488 | 8.12 | 10.81 | 1 | 100 | 100 | 100 | 99.9 |
|
37 |
+
|
38 |
+
1 domains: ['restaurant']
|
39 |
+
- **cat slot match**: how many values of categorical slots are in the possible values of ontology in percentage.
|
40 |
+
- **non-cat slot span**: how many values of non-categorical slots have span annotation in percentage.
|
41 |
+
|
42 |
+
### Citation
|
43 |
+
|
44 |
+
```
|
45 |
+
@inproceedings{wen-etal-2016-conditional,
|
46 |
+
title = "Conditional Generation and Snapshot Learning in Neural Dialogue Systems",
|
47 |
+
author = "Wen, Tsung-Hsien and Ga{\v{s}}i{\'c}, Milica and Mrk{\v{s}}i{\'c}, Nikola and Rojas-Barahona, Lina M. and Su, Pei-Hao and Ultes, Stefan and Vandyke, David and Young, Steve",
|
48 |
+
booktitle = "Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing",
|
49 |
+
month = nov,
|
50 |
+
year = "2016",
|
51 |
+
address = "Austin, Texas",
|
52 |
+
publisher = "Association for Computational Linguistics",
|
53 |
+
url = "https://aclanthology.org/D16-1233",
|
54 |
+
doi = "10.18653/v1/D16-1233",
|
55 |
+
pages = "2153--2162",
|
56 |
+
}
|
57 |
+
```
|
58 |
+
|
59 |
+
### Licensing Information
|
60 |
+
|
61 |
+
[**CC BY 4.0**](https://creativecommons.org/licenses/by/4.0/)
|