Update agieval.py
Browse files- agieval.py +6 -0
agieval.py
CHANGED
@@ -6,6 +6,12 @@ import csv
|
|
6 |
_DESCRIPTION = """\
|
7 |
The dataset is an amendment and re-annotation of LogiQA in 2020, a large-scale logical reasoning reading comprehension dataset adapted from the Chinese Civil Service Examination. We increase the data size, refine the texts with manual translation by professionals, and improve the quality by removing items with distinctive cultural features like Chinese idioms. Furthermore, we conduct a fine-grained annotation on the dataset and turn it into a two-way natural language inference (NLI) task, resulting in 35k premise-hypothesis pairs with gold labels, making it the first large-scale NLI dataset for complex logical reasoning
|
8 |
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
english_qa_datasets = ["lsat-ar", "lsat-lr", "lsat-rc", "logiqa-en", "sat-math", "sat-en", "aqua-rat",
|
10 |
"sat-en-without-passage", "gaokao-english"]
|
11 |
chinese_qa_datasets = ["logiqa-zh", "jec-qa-kd", "jec-qa-ca", "gaokao-chinese", "gaokao-geography", "gaokao-history",
|
|
|
6 |
_DESCRIPTION = """\
|
7 |
The dataset is an amendment and re-annotation of LogiQA in 2020, a large-scale logical reasoning reading comprehension dataset adapted from the Chinese Civil Service Examination. We increase the data size, refine the texts with manual translation by professionals, and improve the quality by removing items with distinctive cultural features like Chinese idioms. Furthermore, we conduct a fine-grained annotation on the dataset and turn it into a two-way natural language inference (NLI) task, resulting in 35k premise-hypothesis pairs with gold labels, making it the first large-scale NLI dataset for complex logical reasoning
|
8 |
"""
|
9 |
+
|
10 |
+
_HOMEPAGE = "https://github.com/csitfun/LogiQA2.0/tree/main"
|
11 |
+
|
12 |
+
_LICENSE = (
|
13 |
+
"Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License"
|
14 |
+
)
|
15 |
english_qa_datasets = ["lsat-ar", "lsat-lr", "lsat-rc", "logiqa-en", "sat-math", "sat-en", "aqua-rat",
|
16 |
"sat-en-without-passage", "gaokao-english"]
|
17 |
chinese_qa_datasets = ["logiqa-zh", "jec-qa-kd", "jec-qa-ca", "gaokao-chinese", "gaokao-geography", "gaokao-history",
|