Datasets:
WorkInTheDark
commited on
Commit
•
536646b
1
Parent(s):
71303c1
Upload FairytaleQA.py
Browse files- FairytaleQA.py +7 -1
FairytaleQA.py
CHANGED
@@ -63,7 +63,13 @@ annotated by education experts based on an evidence-based theoretical framework.
|
|
63 |
It consists of 10,580 explicit and implicit questions derived from 278 children-friendly \
|
64 |
stories, covering seven types of narrative elements or relations.
|
65 |
"""
|
66 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
|
68 |
class FairytaleQAConfig(datasets.BuilderConfig):
|
69 |
"""BuilderConfig for FairytaleQA."""
|
|
|
63 |
It consists of 10,580 explicit and implicit questions derived from 278 children-friendly \
|
64 |
stories, covering seven types of narrative elements or relations.
|
65 |
"""
|
66 |
+
_URL = 'https://github.com/WorkInTheDark/FairytaleQA_Dataset/tree/main/huggingface_hub/'
|
67 |
+
|
68 |
+
_URLS = {
|
69 |
+
"train": _URL + "train.csv",
|
70 |
+
"valid": _URL + "valid.csv",
|
71 |
+
"test": _URL + "test.csv",
|
72 |
+
}
|
73 |
|
74 |
class FairytaleQAConfig(datasets.BuilderConfig):
|
75 |
"""BuilderConfig for FairytaleQA."""
|