Update README.md
Browse files
README.md
CHANGED
|
@@ -43,3 +43,91 @@ configs:
|
|
| 43 |
- split: test
|
| 44 |
path: data/test-*
|
| 45 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
- split: test
|
| 44 |
path: data/test-*
|
| 45 |
---
|
| 46 |
+
# Dataset Card for BioRel
|
| 47 |
+
|
| 48 |
+
## Dataset Description
|
| 49 |
+
|
| 50 |
+
- **Repository:** https://drive.google.com/drive/folders/1vw2zIxdSoqT2QALDbRVG6loLsgi2doBG
|
| 51 |
+
- **Paper:** [BioRel: towards large-scale biomedical relation extraction](https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-020-03889-5)
|
| 52 |
+
|
| 53 |
+
#### Dataset Summary
|
| 54 |
+
|
| 55 |
+
<!-- Provide a quick summary of the dataset. -->
|
| 56 |
+
**BioRel Dataset Summary:**
|
| 57 |
+
|
| 58 |
+
BioRel is a comprehensive dataset designed for biomedical relation extraction, leveraging the vast amount of electronic biomedical literature available.
|
| 59 |
+
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.
|
| 60 |
+
The training set comprises 534,406 sentences, the validation set includes 218,669 sentences, and the testing set contains 114,515 sentences.
|
| 61 |
+
This dataset supports both deep learning and statistical machine learning methods, providing a robust resource for training and evaluating biomedical relation extraction models.
|
| 62 |
+
The original dataset is available here: https://drive.google.com/drive/folders/1vw2zIxdSoqT2QALDbRVG6loLsgi2doBG
|
| 63 |
+
|
| 64 |
+
We converted the dataset to the OpenNRE format using the following script: https://github.com/GDAMining/gda-extraction/blob/main/convert2opennre/convert_biorel2opennre.py
|
| 65 |
+
|
| 66 |
+
### Languages
|
| 67 |
+
|
| 68 |
+
The language in the dataset is English.
|
| 69 |
+
|
| 70 |
+
|
| 71 |
+
## Dataset Structure
|
| 72 |
+
|
| 73 |
+
<!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
|
| 74 |
+
|
| 75 |
+
### Dataset Instances
|
| 76 |
+
|
| 77 |
+
An example of 'train' looks as follows:
|
| 78 |
+
```json
|
| 79 |
+
{
|
| 80 |
+
"text": "algal polysaccharide obtained from carrageenin protects 80 to 100 percent of chicken embryos against fatal infections with the lee strain of influenza virus .",
|
| 81 |
+
"relation": "NA",
|
| 82 |
+
"h": {
|
| 83 |
+
"id": "C0032594",
|
| 84 |
+
"name": "polysaccharide",
|
| 85 |
+
"pos": [6, 20]
|
| 86 |
+
},
|
| 87 |
+
"t": {
|
| 88 |
+
"id": "C0007289",
|
| 89 |
+
"name": "carrageenin",
|
| 90 |
+
"pos": [35, 46]
|
| 91 |
+
}
|
| 92 |
+
}
|
| 93 |
+
```
|
| 94 |
+
|
| 95 |
+
### Data Fields
|
| 96 |
+
|
| 97 |
+
- `text`: the text of this example, a `string` feature.
|
| 98 |
+
- `h`: head entity
|
| 99 |
+
- `id`: identifier of the head entity, a `string` feature.
|
| 100 |
+
- `pos`: character offsets of the head entity, a list of `int32` features.
|
| 101 |
+
- `name`: head entity text, a `string` feature.
|
| 102 |
+
- `t`: tail entity
|
| 103 |
+
- `id`: identifier of the tail entity, a `string` feature.
|
| 104 |
+
- `pos`: character offsets of the tail entity, a list of `int32` features.
|
| 105 |
+
- `name`: tail entity text, a `string` feature.
|
| 106 |
+
- `relation`: a class label.
|
| 107 |
+
|
| 108 |
+
|
| 109 |
+
## Citation
|
| 110 |
+
|
| 111 |
+
<!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
|
| 112 |
+
|
| 113 |
+
**BibTeX:**
|
| 114 |
+
|
| 115 |
+
```
|
| 116 |
+
@article{xing2020biorel,
|
| 117 |
+
title={BioRel: towards large-scale biomedical relation extraction},
|
| 118 |
+
author={Xing, Rui and Luo, Jie and Song, Tengwei},
|
| 119 |
+
journal={BMC bioinformatics},
|
| 120 |
+
volume={21},
|
| 121 |
+
pages={1--13},
|
| 122 |
+
year={2020},
|
| 123 |
+
publisher={Springer}
|
| 124 |
+
}
|
| 125 |
+
```
|
| 126 |
+
|
| 127 |
+
**APA:**
|
| 128 |
+
|
| 129 |
+
- Xing, R., Luo, J., & Song, T. (2020). BioRel: towards large-scale biomedical relation extraction. BMC bioinformatics, 21, 1-13.
|
| 130 |
+
|
| 131 |
+
## Dataset Card Authors
|
| 132 |
+
|
| 133 |
+
[@phucdev](https://github.com/phucdev)
|