Update testing.py
Browse files- testing.py +5 -1
testing.py
CHANGED
@@ -56,7 +56,10 @@ _URLS = {
|
|
56 |
"test": "https://raw.githubusercontent.com/csitfun/LogiQA2.0/main/logiqa2nli/DATA/QA2NLI/test.txt",
|
57 |
},
|
58 |
"logieval": {
|
59 |
-
"
|
|
|
|
|
|
|
60 |
}
|
61 |
}
|
62 |
|
@@ -221,3 +224,4 @@ class LogiQA2(datasets.GeneratorBasedBuilder):
|
|
221 |
"question": data["question"].strip(),
|
222 |
"options": [x.strip() for x in data["options"]],
|
223 |
}
|
|
|
|
56 |
"test": "https://raw.githubusercontent.com/csitfun/LogiQA2.0/main/logiqa2nli/DATA/QA2NLI/test.txt",
|
57 |
},
|
58 |
"logieval": {
|
59 |
+
"train": "https://raw.githubusercontent.com/csitfun/LogiEval/main/Data/logiqa_ood.jsonl",
|
60 |
+
"validation": None,
|
61 |
+
"test": "https://raw.githubusercontent.com/csitfun/LogiEval/main/Data/logiqa.jsonl",
|
62 |
+
|
63 |
}
|
64 |
}
|
65 |
|
|
|
224 |
"question": data["question"].strip(),
|
225 |
"options": [x.strip() for x in data["options"]],
|
226 |
}
|
227 |
+
|