Georgios Spithourakis
commited on
Commit
·
b24b379
1
Parent(s):
937819b
Update README.md
Browse files
README.md
CHANGED
@@ -23,6 +23,17 @@ multilinguality:
|
|
23 |
- **Paper:** [EVI: Multilingual Spoken Dialogue Tasks and Dataset for Knowledge-Based Enrolment, Verification, and Identification](https://arxiv.org/abs/2204.13496)
|
24 |
- **Repository:** [Github](https://github.com/PolyAI-LDN/evi-paper)
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
### Licensing Information
|
27 |
All datasets are licensed under the [Creative Commons license (CC-BY)](https://creativecommons.org/licenses/).
|
28 |
|
|
|
23 |
- **Paper:** [EVI: Multilingual Spoken Dialogue Tasks and Dataset for Knowledge-Based Enrolment, Verification, and Identification](https://arxiv.org/abs/2204.13496)
|
24 |
- **Repository:** [Github](https://github.com/PolyAI-LDN/evi-paper)
|
25 |
|
26 |
+
## Example
|
27 |
+
EVI can be downloaded and used as follows:
|
28 |
+
|
29 |
+
```py
|
30 |
+
from datasets import load_dataset
|
31 |
+
evi = load_dataset("PolyAI/evi", "en-GB") # for British English
|
32 |
+
|
33 |
+
# to download data from all locales use:
|
34 |
+
# evi = load_dataset("PolyAI/evi", "all")
|
35 |
+
```
|
36 |
+
|
37 |
### Licensing Information
|
38 |
All datasets are licensed under the [Creative Commons license (CC-BY)](https://creativecommons.org/licenses/).
|
39 |
|