Update parsinlu-multiple-choice.py
Browse files
parsinlu-multiple-choice.py
CHANGED
@@ -105,7 +105,7 @@ class ParsinluMultipleChoice(datasets.GeneratorBasedBuilder):
|
|
105 |
for id_, row in enumerate(f):
|
106 |
data = json.loads(row)
|
107 |
yield id_, {
|
108 |
-
"answer": data["
|
109 |
"candidates": data["candidates"],
|
110 |
"category": data["category"],
|
111 |
"question": data["question"],
|
|
|
105 |
for id_, row in enumerate(f):
|
106 |
data = json.loads(row)
|
107 |
yield id_, {
|
108 |
+
"answer": data["answer"],
|
109 |
"candidates": data["candidates"],
|
110 |
"category": data["category"],
|
111 |
"question": data["question"],
|