zhuqi commited on
Commit
2e3934c
1 Parent(s): 9205a0d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md CHANGED
@@ -1,3 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Dataset Card for KVRET
2
 
3
  - **Repository:** https://nlp.stanford.edu/blog/a-new-multi-turn-multi-domain-task-oriented-dialogue-dataset/
@@ -5,6 +18,16 @@
5
  - **Leaderboard:** None
6
  - **Who transforms the dataset:** Qi Zhu(zhuq96 at gmail dot com)
7
 
 
 
 
 
 
 
 
 
 
 
8
  ### Dataset Summary
9
 
10
  In an effort to help alleviate this problem, we release a corpus of 3,031 multi-turn dialogues in three distinct domains appropriate for an in-car assistant: calendar scheduling, weather information retrieval, and point-of-interest navigation. Our dialogues are grounded through knowledge bases ensuring that they are versatile in their natural language without being completely free form.
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: []
5
+ multilinguality:
6
+ - monolingual
7
+ pretty_name: KVRET
8
+ size_categories:
9
+ - 1K<n<10K
10
+ task_categories:
11
+ - conversational
12
+ ---
13
+
14
  # Dataset Card for KVRET
15
 
16
  - **Repository:** https://nlp.stanford.edu/blog/a-new-multi-turn-multi-domain-task-oriented-dialogue-dataset/
 
18
  - **Leaderboard:** None
19
  - **Who transforms the dataset:** Qi Zhu(zhuq96 at gmail dot com)
20
 
21
+ 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:
22
+ ```
23
+ from convlab.util import load_dataset, load_ontology, load_database
24
+
25
+ dataset = load_dataset('kvret')
26
+ ontology = load_ontology('kvret')
27
+ database = load_database('kvret')
28
+ ```
29
+ For more usage please refer to [here](https://github.com/ConvLab/ConvLab-3/tree/master/data/unified_datasets).
30
+
31
  ### Dataset Summary
32
 
33
  In an effort to help alleviate this problem, we release a corpus of 3,031 multi-turn dialogues in three distinct domains appropriate for an in-car assistant: calendar scheduling, weather information retrieval, and point-of-interest navigation. Our dialogues are grounded through knowledge bases ensuring that they are versatile in their natural language without being completely free form.