pasinit commited on
Commit
8a6fab1
1 Parent(s): d658499

readme update

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md CHANGED
@@ -1,2 +1,31 @@
1
  # XL-WSD
2
  Huggingface dataset for the paper [https://www.aclweb.org/anthology/2020.emnlp-main.584.pdf](https://www.aclweb.org/anthology/2020.emnlp-main.584.pdf).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # XL-WSD
2
  Huggingface dataset for the paper [https://www.aclweb.org/anthology/2020.emnlp-main.584.pdf](https://www.aclweb.org/anthology/2020.emnlp-main.584.pdf).
3
+
4
+ ## Languages
5
+ XL-WiC provides training data in:
6
+ - en (English)
7
+ - fr (French)
8
+ - de (German)
9
+ - it (Italian)
10
+
11
+ and dev and test data in:
12
+ - fr (French)
13
+ - de (German)
14
+ - it (Italian)
15
+ - bg (Bulgarian)
16
+ - zh (Chinese)
17
+ - hr (Croatian)
18
+ - da (Danish)
19
+ - nl (Dutch)
20
+ - et (Estonian)
21
+ - fa (Farsi)
22
+ - ja (Japanesse)
23
+ - ko (Korean)
24
+
25
+ ## Sub datasets
26
+ When loading one of the XL-WSD datasets one has to specify the training language and the target language (on which dev and test will be performed).
27
+ For example, we can load the dataset having English as training language and Italian as target language as follows:
28
+ ```
29
+ from datasets import load_dataset
30
+ dataset = load_dataset('pasinit/xlwic', 'en_it')
31
+ ```