agieval / agieval.py
baber's picture
Create agieval.py
6f26501
raw
history blame
No virus
8.3 kB
# Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""LogiQA dataset."""
import datasets
import json
import ast
_CITATION = """\
@ARTICLE{10174688,
author={Liu, Hanmeng and Liu, Jian and Cui, Leyang and Teng, Zhiyang and Duan, Nan and Zhou, Ming and Zhang, Yue},
journal={IEEE/ACM Transactions on Audio, Speech, and Language Processing},
title={LogiQA 2.0 — An Improved Dataset for Logical Reasoning in Natural Language Understanding},
year={2023},
volume={},
number={},
pages={1-16},
doi={10.1109/TASLP.2023.3293046}}
"""
_DESCRIPTION = """\
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
"""
_HOMEPAGE = "https://github.com/csitfun/LogiQA2.0/tree/main"
_LICENSE = (
"Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License"
)
HEAD= 'https://raw.githubusercontent.com/microsoft/AGIEval/main/data/v1/'
_URLS = {
"sat_en": {
"test": HEAD+'sat-en.jsonl',
},
"sat_math": {
"test": HEAD+'sat-math.jsonl'
},
"lsat_ar": {
"test": HEAD+'lsat-ar.jsonl'
},
"lsat_lr": {
"test": HEAD+'lsat-lr.jsonl'
},
"lsat_rc": {
"test": HEAD+'lsat-rc.jsonl'
},
"logiqa": {
"test": HEAD+'logiqa-en.jsonl'
},
"aqua_rat": {
"test": HEAD+'aqua_rat.jsonl'
},
'math_agieval': {
"test": HEAD+'math.jsonl'
},
}
class LogiQA2(datasets.GeneratorBasedBuilder):
"""TODO: Short description of my dataset."""
VERSION = datasets.Version("2.0.0")
# This is an example of a dataset with multiple configurations.
# If you don't want/need to define several sub-sets in your dataset,
# just remove the BUILDER_CONFIG_CLASS and the BUILDER_CONFIGS attributes.
# If you need to make complex sub-parts in the datasets with configurable options
# You can create your own builder configuration class to store attribute, inheriting from datasets.BuilderConfig
# BUILDER_CONFIG_CLASS = MyBuilderConfig
# You will be able to load one or the other configurations in the following list with
# data = datasets.load_dataset('my_dataset', 'first_domain')
# data = datasets.load_dataset('my_dataset', 'second_domain')
BUILDER_CONFIGS = [
datasets.BuilderConfig(
name="logiqa2",
version=VERSION,
description="The LogiQA multiple answer dataset translated in English from Chinese.",
),
datasets.BuilderConfig(
name="logiqa2_zh",
version=VERSION,
description="The original LogiQA multiple answer dataset in Chinese.",
),
datasets.BuilderConfig(
name="logiqa2_nli",
version=VERSION,
description="The NLI part of LogiQA2.0 dataset",
),
]
DEFAULT_CONFIG_NAME = "logiqa2"
def _info(self):
if self.config.name == "aqua_rat":
features = datasets.Features(
{
"question": datasets.Value("string"),
"options": datasets.features.Sequence(datasets.Value("string")),
"label": datasets.ClassLabel(num_classes=5, names=["A", "B", "C", "D", "E"]),
"solution": datasets.Value("string"),
}
)
elif self.config.name == "sat_en":
features = datasets.Features(
{"passage": datasets.Value("string"),
"question": datasets.Value("string"),
"options": datasets.features.Sequence(datasets.Value("string")),
"label": datasets.ClassLabel(num_classes=4, names=["A", "B", "C", "D"]),
"solution": datasets.Value("string"),
}
)
elif self.config.name in ["sat_math", "logiqa"]:
# remove solution from other
features = datasets.Features(
{"question": datasets.Value("string"),
"options": datasets.features.Sequence(datasets.Value("string")),
"label": datasets.ClassLabel(num_classes=4, names=["A", "B", "C", "D"]),
"solution": datasets.Value("string"),
}
)
elif self.config.name == "math_agieval":
features = datasets.Features(
{"question": datasets.Value("string"),
"answer": datasets.features.Sequence(datasets.Value("string")),
"solution": datasets.Value("string"),
"level": datasets.Value("int32"),
"type": datasets.Value("string"),
}
)
elif self.config.name in ['lsat_lr', 'lsat_rc', 'lsat_ar']:
features = datasets.Features(
{"question": datasets.Value("string"),
"options": datasets.features.Sequence(datasets.Value("string")),
"label": datasets.ClassLabel(num_classes=5, names=["A", "B", "C", "D", "E"]),
}
)
return datasets.DatasetInfo(
description=_DESCRIPTION,
features=features,
homepage=_HOMEPAGE,
license=_LICENSE,
citation=_CITATION,
)
def _split_generators(self, dl_manager):
_urls = _URLS[self.config.name]
urls = {
"test": _urls["test"],
}
data_dir = dl_manager.download_and_extract(urls)
return [
datasets.SplitGenerator(
name=datasets.Split.TEST,
gen_kwargs={"filepath": data_dir["test"], "split": "test"},
),
]
def _generate_examples(self, filepath, split):
with open(filepath, encoding="utf-8") as f:
for key, row in enumerate(f):
data = json.loads(row)
if self.config.name in ["aqua_rat","sat_math", "logiqa"]:
yield key, {
"question": data["question"],
"options": data["options"],
"label": data["label"],
"solution": data["other"]["solution"],
}
elif self.config.name == "math_agieval":
yield key, {
"question": data["question"],
"answer": data["answer"],
"solution": data["solution"],
"level": data["level"],
"type": data["type"]
}
elif self.config.name == "sat_en":
yield key, {
"passage": data["passage"],
"question": data["question"],
"options": data["options"],
"label": data["label"],
"solution": data["other"]["solution"],
}
elif self.config.name in ['lsat_lr', 'lsat_rc', 'lsat_ar']:
yield key, {
"question": data["question"],
"options": data["options"],
"label": data["label"],
}