Datasets:
Tasks:
Other
Modalities:
Text
Languages:
English
Size:
10K - 100K
ArXiv:
Tags:
question-generation
License:
WorkInTheDark
commited on
Commit
·
20193b2
1
Parent(s):
4040317
edit
Browse files- fairytaleqa.py +2 -3
fairytaleqa.py
CHANGED
@@ -75,10 +75,9 @@ _URLS = {
|
|
75 |
}
|
76 |
|
77 |
class FairytaleQAConfig(datasets.BuilderConfig):
|
78 |
-
"""BuilderConfig for SQUAD."""
|
79 |
|
80 |
def __init__(self, **kwargs):
|
81 |
-
"""
|
82 |
Args:
|
83 |
**kwargs: keyword arguments forwarded to super.
|
84 |
"""
|
@@ -106,7 +105,7 @@ class FairytaleQA(datasets.GeneratorBasedBuilder):
|
|
106 |
|
107 |
|
108 |
BUILDER_CONFIGS = [
|
109 |
-
|
110 |
]
|
111 |
|
112 |
# DEFAULT_CONFIG_NAME = "train" # It's not mandatory to have a default configuration. Just use one if it make sense.
|
|
|
75 |
}
|
76 |
|
77 |
class FairytaleQAConfig(datasets.BuilderConfig):
|
|
|
78 |
|
79 |
def __init__(self, **kwargs):
|
80 |
+
"""
|
81 |
Args:
|
82 |
**kwargs: keyword arguments forwarded to super.
|
83 |
"""
|
|
|
105 |
|
106 |
|
107 |
BUILDER_CONFIGS = [
|
108 |
+
FairytaleQAConfig(name="plain_text", description="Plain Text")
|
109 |
]
|
110 |
|
111 |
# DEFAULT_CONFIG_NAME = "train" # It's not mandatory to have a default configuration. Just use one if it make sense.
|