Datasets:
ok
Browse files
mqa.py
CHANGED
@@ -92,8 +92,8 @@ class MQA(datasets.GeneratorBasedBuilder):
|
|
92 |
"id": datasets.Value("string"),
|
93 |
"bucket": datasets.Value("string"),
|
94 |
"domain": datasets.Value("string"),
|
95 |
-
"description": datasets.Value("string"),
|
96 |
-
"title": datasets.Value("string"),
|
97 |
"questions": [question]
|
98 |
}
|
99 |
domain = {
|
@@ -160,8 +160,8 @@ class MQA(datasets.GeneratorBasedBuilder):
|
|
160 |
"id": page["page_hash"],
|
161 |
"domain": page["domain"],
|
162 |
"bucket": page["bucket"],
|
163 |
-
"title": default(page, "title"),
|
164 |
-
"description": default(page, "description"),
|
165 |
"questions": questions
|
166 |
}
|
167 |
if self.config.level == "question":
|
|
|
92 |
"id": datasets.Value("string"),
|
93 |
"bucket": datasets.Value("string"),
|
94 |
"domain": datasets.Value("string"),
|
95 |
+
# "description": datasets.Value("string"),
|
96 |
+
# "title": datasets.Value("string"),
|
97 |
"questions": [question]
|
98 |
}
|
99 |
domain = {
|
|
|
160 |
"id": page["page_hash"],
|
161 |
"domain": page["domain"],
|
162 |
"bucket": page["bucket"],
|
163 |
+
# "title": default(page, "title"),
|
164 |
+
# "description": default(page, "description"),
|
165 |
"questions": questions
|
166 |
}
|
167 |
if self.config.level == "question":
|