Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
json
Sub-tasks:
extractive-qa
Languages:
Catalan
Size:
< 1K
ArXiv:
License:
Commit
•
6f40841
1
Parent(s):
9fa4486
Remove unnecessary builder config
Browse files- viquiquad.py +1 -18
viquiquad.py
CHANGED
@@ -28,27 +28,10 @@ _DEV_FILE = "dev.json"
|
|
28 |
_TEST_FILE = "test.json"
|
29 |
|
30 |
|
31 |
-
class ViquiQuADConfig(datasets.BuilderConfig):
|
32 |
-
""" Builder config for the ViquiQuAD dataset """
|
33 |
-
|
34 |
-
def __init__(self, **kwargs):
|
35 |
-
"""BuilderConfig for ViquiQuAD.
|
36 |
-
Args:
|
37 |
-
**kwargs: keyword arguments forwarded to super.
|
38 |
-
"""
|
39 |
-
super(ViquiQuADConfig, self).__init__(**kwargs)
|
40 |
-
|
41 |
-
|
42 |
class ViquiQuAD(datasets.GeneratorBasedBuilder):
|
43 |
"""ViquiQuAD Dataset."""
|
44 |
|
45 |
-
|
46 |
-
ViquiQuADConfig(
|
47 |
-
name="ViquiQuAD",
|
48 |
-
version=datasets.Version("1.0.1"),
|
49 |
-
description="ViquiQuAD dataset",
|
50 |
-
),
|
51 |
-
]
|
52 |
|
53 |
def _info(self):
|
54 |
return datasets.DatasetInfo(
|
|
|
28 |
_TEST_FILE = "test.json"
|
29 |
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
class ViquiQuAD(datasets.GeneratorBasedBuilder):
|
32 |
"""ViquiQuAD Dataset."""
|
33 |
|
34 |
+
VERSION = datasets.Version("1.0.1")
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
|
36 |
def _info(self):
|
37 |
return datasets.DatasetInfo(
|