bourdoiscatie
commited on
Commit
•
083f0a8
1
Parent(s):
c96b202
Update frenchQA.py
Browse files- frenchQA.py +2 -2
frenchQA.py
CHANGED
@@ -18,7 +18,7 @@ One French QA Dataset to rule them all, One French QA Dataset to find them, One
|
|
18 |
_URLS = {
|
19 |
"train": "train.csv",
|
20 |
"dev": "valid.csv",
|
21 |
-
|
22 |
}
|
23 |
|
24 |
|
@@ -87,7 +87,7 @@ class FrenchQA(datasets.GeneratorBasedBuilder):
|
|
87 |
return [
|
88 |
datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepath": downloaded_files["train"]}),
|
89 |
datasets.SplitGenerator(name=datasets.Split.VALIDATION, gen_kwargs={"filepath": downloaded_files["dev"]}),
|
90 |
-
|
91 |
]
|
92 |
|
93 |
def _generate_examples(self, filepath):
|
|
|
18 |
_URLS = {
|
19 |
"train": "train.csv",
|
20 |
"dev": "valid.csv",
|
21 |
+
"test": "test.csv"
|
22 |
}
|
23 |
|
24 |
|
|
|
87 |
return [
|
88 |
datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepath": downloaded_files["train"]}),
|
89 |
datasets.SplitGenerator(name=datasets.Split.VALIDATION, gen_kwargs={"filepath": downloaded_files["dev"]}),
|
90 |
+
datasets.SplitGenerator(name=datasets.Split.TEST, gen_kwargs={"filepath": downloaded_files["test"]}),
|
91 |
]
|
92 |
|
93 |
def _generate_examples(self, filepath):
|