zhuqi commited on
Commit
6e8c79b
1 Parent(s): d84e5de

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -1,3 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Dataset Card for Schema-Guided Dialogue
2
 
3
  - **Repository:** https://github.com/google-research-datasets/dstc8-schema-guided-dialogue
@@ -5,6 +19,16 @@
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.
1
+ ---
2
+ language:
3
+ - en
4
+ license:
5
+ - cc-by-sa-4.0
6
+ multilinguality:
7
+ - monolingual
8
+ pretty_name: SGD
9
+ size_categories:
10
+ - 10K<n<100K
11
+ task_categories:
12
+ - conversational
13
+ ---
14
+
15
  # Dataset Card for Schema-Guided Dialogue
16
 
17
  - **Repository:** https://github.com/google-research-datasets/dstc8-schema-guided-dialogue
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('sgd')
27
+ ontology = load_ontology('sgd')
28
+ database = load_database('sgd')
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 **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.