Datasets:
matteogabburo
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -187,18 +187,18 @@ from datasets import load_dataset
|
|
187 |
|
188 |
"""
|
189 |
if you want the default splits, replace [LANG] with an identifier in: en, fr, de, it, po, sp
|
190 |
-
dataset = load_dataset("mWikiQA", "[LANG]")
|
191 |
"""
|
192 |
# example:
|
193 |
-
italian_dataset = load_dataset("mWikiQA", "it")
|
194 |
|
195 |
|
196 |
"""
|
197 |
if you want the processed splits ("clean" and "no all negatives" sets), replace [LANG] with a language identifier and [VERSION] with "++" or "clean"
|
198 |
-
dataset = load_dataset("mWikiQA", "[LANG]_[VERSION]")
|
199 |
"""
|
200 |
# example:
|
201 |
-
italian_clean_dataset = load_dataset("mWikiQA", "it_clean")
|
202 |
|
203 |
```
|
204 |
|
|
|
187 |
|
188 |
"""
|
189 |
if you want the default splits, replace [LANG] with an identifier in: en, fr, de, it, po, sp
|
190 |
+
dataset = load_dataset("matteogabburo/mWikiQA", "[LANG]")
|
191 |
"""
|
192 |
# example:
|
193 |
+
italian_dataset = load_dataset("matteogabburo/mWikiQA", "it")
|
194 |
|
195 |
|
196 |
"""
|
197 |
if you want the processed splits ("clean" and "no all negatives" sets), replace [LANG] with a language identifier and [VERSION] with "++" or "clean"
|
198 |
+
dataset = load_dataset("matteogabburo/mWikiQA", "[LANG]_[VERSION]")
|
199 |
"""
|
200 |
# example:
|
201 |
+
italian_clean_dataset = load_dataset("matteogabburo/mWikiQA", "it_clean")
|
202 |
|
203 |
```
|
204 |
|