biomrc / biomrc.py
albertvillanova's picture
Host data files (#2)
8c2e675
raw
history blame contribute delete
No virus
8.2 kB
# coding=utf-8
# Copyright 2020 The TensorFlow Datasets Authors and the HuggingFace Datasets Authors.
#
# 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.
# Lint as: python3
"""BioMRC Dataset"""
import json
import datasets
logger = datasets.logging.get_logger(__name__)
_CITATION = """\
@inproceedings{pappas-etal-2020-biomrc,
title = "{B}io{MRC}: A Dataset for Biomedical Machine Reading Comprehension",
author = "Pappas, Dimitris and
Stavropoulos, Petros and
Androutsopoulos, Ion and
McDonald, Ryan",
booktitle = "Proceedings of the 19th SIGBioMed Workshop on Biomedical Language Processing",
month = jul,
year = "2020",
address = "Online",
publisher = "Association for Computational Linguistics",
url = "https://www.aclweb.org/anthology/2020.bionlp-1.15",
pages = "140--149",
abstract = "We introduce BIOMRC, a large-scale cloze-style biomedical MRC dataset. Care was taken to reduce noise, compared to the previous BIOREAD dataset of Pappas et al. (2018). Experiments show that simple heuristics do not perform well on the new dataset and that two neural MRC models that had been tested on BIOREAD perform much better on BIOMRC, indicating that the new dataset is indeed less noisy or at least that its task is more feasible. Non-expert human performance is also higher on the new dataset compared to BIOREAD, and biomedical experts perform even better. We also introduce a new BERT-based MRC model, the best version of which substantially outperforms all other methods tested, reaching or surpassing the accuracy of biomedical experts in some experiments. We make the new dataset available in three different sizes, also releasing our code, and providing a leaderboard.",
}
"""
_DESCRIPTION = """\
We introduce BIOMRC, a large-scale cloze-style biomedical MRC dataset. Care was taken to reduce noise, compared to the previous BIOREAD dataset of Pappas et al. (2018). Experiments show that simple heuristics do not perform well on the new dataset and that two neural MRC models that had been tested on BIOREAD perform much better on BIOMRC, indicating that the new dataset is indeed less noisy or at least that its task is more feasible. Non-expert human performance is also higher on the new dataset compared to BIOREAD, and biomedical experts perform even better. We also introduce a new BERT-based MRC model, the best version of which substantially outperforms all other methods tested, reaching or surpassing the accuracy of biomedical experts in some experiments. We make the new dataset available in three different sizes, also releasing our code, and providing a leaderboard.
"""
_URLS = {
"large": {
"train": "data/biomrc_large/dataset_train{setting}.jsonl.gz",
"val": "data/biomrc_large/dataset_val{setting}.jsonl.gz",
"test": "data/biomrc_large/dataset_test{setting}.jsonl.gz",
},
"small": {
"train": "data/biomrc_small/dataset_train_small{setting}.jsonl.gz",
"val": "data/biomrc_small/dataset_val_small{setting}.jsonl.gz",
"test": "data/biomrc_small/dataset_test_small{setting}.jsonl.gz",
},
"tiny": {
"test": "data/biomrc_tiny/dataset_tiny{setting}.jsonl.gz",
},
}
class BiomrcConfig(datasets.BuilderConfig):
"""BuilderConfig for BioMRC."""
def __init__(self, biomrc_setting="A", biomrc_version="large", **kwargs):
"""BuilderConfig for BioMRC.
Args:
**kwargs: keyword arguments forwarded to super.
"""
if biomrc_setting.lower() == "b":
self.biomrc_setting = "B"
else:
if biomrc_setting.lower() != "a":
logger.warning("Wrong Setting for BioMRC, using Setting A instead.")
self.biomrc_setting = "A"
if biomrc_version.lower() == "small":
self.biomrc_version = "small"
elif biomrc_version.lower() == "tiny":
self.biomrc_version = "tiny"
else:
if biomrc_version.lower() != "large":
logger.warning("Wrong version for BioMRC, using BioMRC Large instead.")
self.biomrc_version = "large"
super(BiomrcConfig, self).__init__(**kwargs)
class Biomrc(datasets.GeneratorBasedBuilder):
"""BioMRC Dataset"""
BUILDER_CONFIG_CLASS = BiomrcConfig
BUILDER_CONFIGS = [
BiomrcConfig(
name="biomrc_large_A",
version=datasets.Version("1.0.0", ""),
description="Biomrc Version Large Setting A",
biomrc_setting="A",
biomrc_version="large",
),
BiomrcConfig(
name="biomrc_large_B",
version=datasets.Version("1.0.0", ""),
description="Biomrc Version Large Setting B",
biomrc_setting="B",
biomrc_version="large",
),
BiomrcConfig(
name="biomrc_small_A",
version=datasets.Version("1.0.0", ""),
description="Biomrc Version Small Setting A",
biomrc_setting="A",
biomrc_version="small",
),
BiomrcConfig(
name="biomrc_small_B",
version=datasets.Version("1.0.0", ""),
description="Biomrc Version Small Setting B",
biomrc_setting="B",
biomrc_version="small",
),
BiomrcConfig(
name="biomrc_tiny_A",
version=datasets.Version("1.0.0", ""),
description="Biomrc Version Tiny Setting A",
biomrc_setting="A",
biomrc_version="tiny",
),
BiomrcConfig(
name="biomrc_tiny_B",
version=datasets.Version("1.0.0", ""),
description="Biomrc Version Tiny Setting B",
biomrc_setting="B",
biomrc_version="tiny",
),
]
def _info(self):
return datasets.DatasetInfo(
description=_DESCRIPTION,
features=datasets.Features(
{
"abstract": datasets.Value("string"),
"title": datasets.Value("string"),
"entities_list": datasets.features.Sequence(datasets.Value("string")),
"answer": datasets.Value("string"),
}
),
supervised_keys=None,
homepage="http://datasets.cs.aueb.gr/",
citation=_CITATION,
)
def _split_generators(self, dl_manager):
setting = "" if self.config.biomrc_setting == "A" else "_B"
urls_to_download = {
split: url.format(setting=setting) for split, url in _URLS[self.config.biomrc_version].items()
}
downloaded_files = dl_manager.download_and_extract(urls_to_download)
if self.config.biomrc_version == "tiny":
return [
datasets.SplitGenerator(name=datasets.Split.TEST, gen_kwargs={"filepath": downloaded_files["test"]}),
]
else:
return [
datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepath": downloaded_files["train"]}),
datasets.SplitGenerator(
name=datasets.Split.VALIDATION, gen_kwargs={"filepath": downloaded_files["val"]}
),
datasets.SplitGenerator(name=datasets.Split.TEST, gen_kwargs={"filepath": downloaded_files["test"]}),
]
def _generate_examples(self, filepath):
"""This function returns the examples in the raw (text) form."""
logger.info("generating examples from = %s", filepath)
with open(filepath, encoding="utf-8") as fp:
for idx, example in enumerate(fp):
yield idx, json.loads(example)