|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"""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" |
|
) |
|
|
|
_URLS = { |
|
"logiqa2": { |
|
"train": "https://raw.githubusercontent.com/csitfun/LogiQA2.0/main/logiqa/DATA/LOGIQA/train.txt", |
|
"validation": "https://raw.githubusercontent.com/csitfun/LogiQA2.0/main/logiqa/DATA/LOGIQA/dev.txt", |
|
"test": "https://raw.githubusercontent.com/csitfun/LogiQA2.0/main/logiqa/DATA/LOGIQA/test.txt", |
|
}, |
|
"logiqa2_zh": { |
|
"train": "https://raw.githubusercontent.com/csitfun/LogiQA2.0/main/logiqa/DATA/LOGIQA/train_zh.txt", |
|
"validation": "https://raw.githubusercontent.com/csitfun/LogiQA2.0/main/logiqa/DATA/LOGIQA/dev_zh.txt", |
|
"test": "https://raw.githubusercontent.com/csitfun/LogiQA2.0/main/logiqa/DATA/LOGIQA/test_zh.txt", |
|
}, |
|
"logiqa2_nli": { |
|
"train": "https://raw.githubusercontent.com/csitfun/LogiQA2.0/main/logiqa2nli/DATA/QA2NLI/train.txt", |
|
"validation": "https://raw.githubusercontent.com/csitfun/LogiQA2.0/main/logiqa2nli/DATA/QA2NLI/dev.txt", |
|
"test": "https://raw.githubusercontent.com/csitfun/LogiQA2.0/main/logiqa2nli/DATA/QA2NLI/test.txt", |
|
}, |
|
"logieval": { |
|
"train": "https://raw.githubusercontent.com/csitfun/LogiEval/main/Data/logiqa_ood.jsonl", |
|
"test": "https://raw.githubusercontent.com/csitfun/LogiEval/main/Data/logiqa.jsonl", |
|
}, |
|
} |
|
|
|
|
|
class LogiQA2(datasets.GeneratorBasedBuilder): |
|
"""TODO: Short description of my dataset.""" |
|
|
|
VERSION = datasets.Version("2.0.0") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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", |
|
), |
|
datasets.BuilderConfig( |
|
name="logieval", |
|
version=VERSION, |
|
description="Instruction based MRC task", |
|
), |
|
] |
|
DEFAULT_CONFIG_NAME = "logiqa2" |
|
|
|
def _info(self): |
|
|
|
if self.config.name == "logiqa2_zh": |
|
features = datasets.Features( |
|
{ |
|
"answer": datasets.Value("int32"), |
|
"text": datasets.Value("string"), |
|
"question": datasets.Value("string"), |
|
"options": datasets.features.Sequence(datasets.Value("string")), |
|
} |
|
) |
|
|
|
|
|
elif self.config.name == "logiqa2_nli": |
|
features = datasets.Features( |
|
{ |
|
"label": datasets.ClassLabel( |
|
num_classes=2, |
|
names=["not entailed", "entailed"], |
|
names_file=None, |
|
id=None, |
|
), |
|
"major_premise": datasets.features.Sequence( |
|
datasets.Value("string") |
|
), |
|
"minor_premise": datasets.Value("string"), |
|
"conclusion": datasets.Value("string"), |
|
} |
|
) |
|
elif self.config.name in ("logiqa2_nli", "logieval"): |
|
features = datasets.Features( |
|
{"content": datasets.Value("string"), "ideal": datasets.Value("string")} |
|
) |
|
else: |
|
features = datasets.Features( |
|
{ |
|
"id": datasets.Value("int32"), |
|
"answer": datasets.Value("int32"), |
|
"text": datasets.Value("string"), |
|
|
|
"type": datasets.Value("string"), |
|
"question": datasets.Value("string"), |
|
"options": datasets.features.Sequence(datasets.Value("string")), |
|
} |
|
) |
|
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 = { |
|
"train": _urls["train"], |
|
"test": _urls["test"], |
|
} |
|
if "validation" in _urls: |
|
urls["validation"] = _urls["validation"] |
|
data_dir = dl_manager.download_and_extract(urls) |
|
splits = [ |
|
datasets.SplitGenerator( |
|
name=datasets.Split.TRAIN, |
|
|
|
gen_kwargs={ |
|
"filepath": data_dir["train"], |
|
"split": "train", |
|
}, |
|
), |
|
datasets.SplitGenerator( |
|
name=datasets.Split.TEST, |
|
|
|
gen_kwargs={"filepath": data_dir["test"], "split": "test"}, |
|
), |
|
] |
|
if "validation" in _urls: |
|
splits.append( |
|
datasets.SplitGenerator( |
|
name=datasets.Split.VALIDATION, |
|
|
|
gen_kwargs={ |
|
"filepath": data_dir["validation"], |
|
"split": "validation", |
|
}, |
|
) |
|
) |
|
return splits |
|
|
|
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 == "logiqa2_zh": |
|
yield key, { |
|
"answer": data["answer"], |
|
"text": data["text"], |
|
"question": data["question"], |
|
"options": data["options"], |
|
} |
|
elif self.config.name == "logiqa2_nli": |
|
if isinstance(data["major_premise"], str): |
|
data["major_premise"] = [data["major_premise"]] |
|
data["minor_premise"] = data["minor_premise"].strip() |
|
yield key, { |
|
"label": data["label"], |
|
"major_premise": data["major_premise"], |
|
"minor_premise": data["minor_premise"], |
|
"conclusion": data["conclusion"], |
|
} |
|
elif self.config.name == "logieval": |
|
yield key, { |
|
"content": data["input"][1]["content"], |
|
"ideal": data["ideal"], |
|
} |
|
else: |
|
yield key, { |
|
"id": data["id"], |
|
"answer": data["answer"], |
|
"text": data["text"].strip(), |
|
"type": data["type"], |
|
"question": data["question"].strip(), |
|
"options": [x.strip() for x in data["options"]], |
|
} |
|
|