edmdias commited on
Commit
57099c4
·
verified ·
1 Parent(s): 302bebe

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +94 -0
README.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-classification
4
+ language:
5
+ - en
6
+ - th
7
+ - es
8
+ pretty_name: Multilingual Task-Oriented Dialog
9
+ configs:
10
+ - config_name: default
11
+ data_files:
12
+ - path:
13
+ - en/train-en.parquet
14
+ - es/train-es.parquet
15
+ - th/train-th_TH.parquet
16
+ split: train
17
+ - path:
18
+ - en/test-en.parquet
19
+ - es/test-es.parquet
20
+ - th/test-th_TH.parquet
21
+ split: test
22
+ - path:
23
+ - en/eval-en.parquet
24
+ - es/eval-es.parquet
25
+ - th/eval-th_TH.parquet
26
+ split: eval
27
+ - config_name: en
28
+ data_files:
29
+ - split: train
30
+ path: en/train-en.parquet
31
+ - split: test
32
+ path: en/test-en.parquet
33
+ - split: eval
34
+ path: en/eval-en.parquet
35
+ - config_name: es
36
+ data_files:
37
+ - split: train
38
+ path: es/train-es.parquet
39
+ - split: test
40
+ path: es/test-es.parquet
41
+ - split: eval
42
+ path: es/eval-es.parquet
43
+ - config_name: th
44
+ data_files:
45
+ - split: train
46
+ path: th/train-th_TH.parquet
47
+ - split: test
48
+ path: th/test-th_TH.parquet
49
+ - split: eval
50
+ path: th/eval-th_TH.parquet
51
+ license: cc-by-sa-4.0
52
+ ---
53
+ # Multilingual Task-Oriented Dialog Data
54
+
55
+ ## Directory structure
56
+
57
+ This dataset consists of 3 directories:
58
+ * `en` contains the English data
59
+ * `es` contains the Spanish data
60
+ * `th` contains the Thai data
61
+
62
+ In each directory, you'll find a file for each of the train/dev/test splits as used in our paper.
63
+
64
+
65
+ ## File format
66
+
67
+ PYTEXT parquet FORMAT
68
+
69
+ Each parquet file contains following 5 columns: intent label, the slot annotations in a comma-separated list with the format `<start token>:<end token>:<slot type>`,
70
+ untokenized utterance, the language, and the token spans from an in-house multilingual tokenizer.
71
+
72
+ The "upsampled" files contain the upsampled Spanish/Thai data so that there are roughly equal amounts of English and Spanish/Thai data for training and model selection.
73
+
74
+ ## License
75
+
76
+ Provided under the CC-BY-SA license.
77
+
78
+ ## Citation
79
+
80
+ If you use this dataset in your research, please cite the following paper:
81
+
82
+
83
+ @unpublished{Schuster2018,
84
+ author = {Sebastian Schuster and Sonal Gupta and Rushin Shah and Mike Lewis},
85
+ title = {Cross-lingual Transfer Learning for Multilingual Task Oriented Dialog},
86
+ year = {2018},
87
+ note = {arXiv preprint},
88
+ url = {http://arxiv.org/abs/}
89
+ }
90
+
91
+
92
+ ## Questions
93
+
94
+ Please contact Sonal Gupta (<[email protected]>) with questions about this dataset.