Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
10K<n<100K
ArXiv:
License:
zhuqi commited on
Commit
92c6f21
1 Parent(s): 7d51d1f

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dataset Card for Schema-Guided Dialogue
2
+
3
+ - **Repository:** https://github.com/google-research-datasets/dstc8-schema-guided-dialogue
4
+ - **Paper:** https://arxiv.org/pdf/1909.05855.pdf
5
+ - **Leaderboard:** None
6
+ - **Who transforms the dataset:** Qi Zhu(zhuq96 at gmail dot com)
7
+
8
+ ### Dataset Summary
9
+
10
+ The **Schema-Guided Dialogue (SGD)** dataset consists of over 20k annotated multi-domain, task-oriented conversations between a human and a virtual assistant. These conversations involve interactions with services and APIs spanning 20 domains, such as banks, events, media, calendar, travel, and weather. For most of these domains, the dataset contains multiple different APIs, many of which have overlapping functionalities but different interfaces, which reflects common real-world scenarios. The wide range of available annotations can be used for intent prediction, slot filling, dialogue state tracking, policy imitation learning, language generation, and user simulation learning, among other tasks for developing large-scale virtual assistants. Additionally, the dataset contains unseen domains and services in the evaluation set to quantify the performance in zero-shot or few-shot settings.
11
+
12
+ - **How to get the transformed data from original data:**
13
+ - Download [dstc8-schema-guided-dialogue-master.zip](https://github.com/google-research-datasets/dstc8-schema-guided-dialogue/archive/refs/heads/master.zip).
14
+ - Run `python preprocess.py` in the current directory.
15
+ - **Main changes of the transformation:**
16
+ - Lower case original `act` as `intent`.
17
+ - Add `count` slot for each domain, non-categorical, find span by text matching.
18
+ - Categorize `dialogue acts` according to the `intent`.
19
+ - Concatenate multiple values using `|`.
20
+ - Retain `active_intent`, `requested_slots`, `service_call`.
21
+ - **Annotations:**
22
+ - dialogue acts, state, db_results, service_call, active_intent, requested_slots.
23
+
24
+ ### Supported Tasks and Leaderboards
25
+
26
+ NLU, DST, Policy, NLG, E2E
27
+
28
+ ### Languages
29
+
30
+ English
31
+
32
+ ### Data Splits
33
+
34
+ | 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) |
35
+ | ---------- | --------- | ---------- | ------- | ---------- | ----------- | --------------------- | -------------------- | ---------------------------- | ------------------------------- |
36
+ | train | 16142 | 329964 | 20.44 | 9.75 | 1.84 | 100 | - | 100 | 100 |
37
+ | validation | 2482 | 48726 | 19.63 | 9.66 | 1.84 | 100 | - | 100 | 100 |
38
+ | test | 4201 | 84594 | 20.14 | 10.4 | 2.02 | 100 | - | 100 | 100 |
39
+ | all | 22825 | 463284 | 20.3 | 9.86 | 1.87 | 100 | - | 100 | 100 |
40
+
41
+ 45 domains: ['Banks_1', 'Buses_1', 'Buses_2', 'Calendar_1', 'Events_1', 'Events_2', 'Flights_1', 'Flights_2', 'Homes_1', 'Hotels_1', 'Hotels_2', 'Hotels_3', 'Media_1', 'Movies_1', 'Music_1', 'Music_2', 'RentalCars_1', 'RentalCars_2', 'Restaurants_1', 'RideSharing_1', 'RideSharing_2', 'Services_1', 'Services_2', 'Services_3', 'Travel_1', 'Weather_1', 'Alarm_1', 'Banks_2', 'Flights_3', 'Hotels_4', 'Media_2', 'Movies_2', 'Restaurants_2', 'Services_4', 'Buses_3', 'Events_3', 'Flights_4', 'Homes_2', 'Media_3', 'Messaging_1', 'Movies_3', 'Music_3', 'Payment_1', 'RentalCars_3', 'Trains_1']
42
+ - **cat slot match**: how many values of categorical slots are in the possible values of ontology in percentage.
43
+ - **non-cat slot span**: how many values of non-categorical slots have span annotation in percentage.
44
+
45
+ ### Citation
46
+
47
+ ```
48
+ @article{rastogi2019towards,
49
+ title={Towards Scalable Multi-domain Conversational Agents: The Schema-Guided Dialogue Dataset},
50
+ author={Rastogi, Abhinav and Zang, Xiaoxue and Sunkara, Srinivas and Gupta, Raghav and Khaitan, Pranav},
51
+ journal={arXiv preprint arXiv:1909.05855},
52
+ year={2019}
53
+ }
54
+ ```
55
+
56
+ ### Licensing Information
57
+
58
+ [**CC BY-SA 4.0**](https://creativecommons.org/licenses/by-sa/4.0/)