The dataset viewer is not available for this dataset.
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Dataset Card for BioRel
Dataset Summary
BioRel Dataset Summary:
BioRel is a comprehensive dataset designed for biomedical relation extraction, leveraging the vast amount of electronic biomedical literature available. Developed using the Unified Medical Language System (UMLS) as a knowledge base and Medline articles as a corpus, BioRel utilizes Metamap for entity identification and linking, and employs distant supervision for relation labeling. The training set comprises 534,406 sentences, the validation set includes 218,669 sentences, and the testing set contains 114,515 sentences. This dataset supports both deep learning and statistical machine learning methods, providing a robust resource for training and evaluating biomedical relation extraction models. The original dataset is available here: https://drive.google.com/drive/folders/1vw2zIxdSoqT2QALDbRVG6loLsgi2doBG
We converted the dataset to the OpenNRE format using the following script: https://github.com/GDAMining/gda-extraction/blob/main/convert2opennre/convert_biorel2opennre.py
Languages
The language in the dataset is English.
Dataset Structure
Dataset Instances
An example of 'train' looks as follows:
{
"text": "algal polysaccharide obtained from carrageenin protects 80 to 100 percent of chicken embryos against fatal infections with the lee strain of influenza virus .",
"relation": "NA",
"h": {
"id": "C0032594",
"name": "polysaccharide",
"pos": [6, 20]
},
"t": {
"id": "C0007289",
"name": "carrageenin",
"pos": [35, 46]
}
}
Data Fields
text: the text of this example, astringfeature.h: head entityid: identifier of the head entity, astringfeature.pos: character offsets of the head entity, a list ofint32features.name: head entity text, astringfeature.
t: tail entityid: identifier of the tail entity, astringfeature.pos: character offsets of the tail entity, a list ofint32features.name: tail entity text, astringfeature.
relation: a class label.
Citation
BibTeX:
@article{xing2020biorel,
title={BioRel: towards large-scale biomedical relation extraction},
author={Xing, Rui and Luo, Jie and Song, Tengwei},
journal={BMC bioinformatics},
volume={21},
pages={1--13},
year={2020},
publisher={Springer}
}
APA:
- Xing, R., Luo, J., & Song, T. (2020). BioRel: towards large-scale biomedical relation extraction. BMC bioinformatics, 21, 1-13.
Dataset Card Authors
- Downloads last month
- 388