phucdev commited on
Commit
c796abe
1 Parent(s): af6c38d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +80 -0
README.md CHANGED
@@ -23,4 +23,84 @@ configs:
23
  data_files:
24
  - split: train
25
  path: OptimALBaselineDataset/train-*
 
 
 
 
 
 
 
 
 
 
 
26
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  data_files:
24
  - split: train
25
  path: OptimALBaselineDataset/train-*
26
+ task_categories:
27
+ - text-classification
28
+ language:
29
+ - en
30
+ tags:
31
+ - medical
32
+ - biology
33
+ - drugs
34
+ pretty_name: OptimAL
35
+ size_categories:
36
+ - n<1K
37
  ---
38
+ # Dataset Card for OptimAL
39
+
40
+ ## Dataset Description
41
+
42
+ - **Repository:** https://github.com/MaastrichtU-IDS/OptimAL
43
+ - **Paper:** [CoMAGC: a corpus with multi-faceted annotations of gene-cancer relations](Relation extraction from DailyMed structured product labels by optimally combining crowd, experts and machines)
44
+
45
+ #### Dataset Summary
46
+
47
+ <!-- Provide a quick summary of the dataset. -->
48
+ **OptimAL Dataset Summary:**
49
+
50
+ The dataset in this repository is relevant to drug discovery and clinical decision support.
51
+ The authors of the dataset reported on the combination of weak supervision (i.e., programmatic labeling and crowdsourcing) and deep learning methods for relation extraction from
52
+ DailyMed text to create a higher quality drug-disease relation dataset.
53
+ The generated drug-disease relation data showed a high overlap with DrugCentral, a manually curated dataset.
54
+ Using this dataset, they constructed a machine learning model to classify relations between drugs and diseases from text into four categories;
55
+ treatment, symptomatic relief, contradiction, and effect.
56
+
57
+ The data that is available in this repository is the OptimALBaselineDataset: https://github.com/MaastrichtU-IDS/OptimAL/blob/master/data/OptimALBaselineDataset.csv
58
+
59
+ ### Languages
60
+ The language in the dataset is English.
61
+
62
+ ## Dataset Structure
63
+ <!-- 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. -->
64
+ ### Dataset Instances
65
+ An example of 'train' looks as follows:
66
+ ```json
67
+ {
68
+ "_unit_id": 2270472226,
69
+ "Worker Answer": "effect",
70
+ "context": "(See INDICATIONS AND USAGE and WARNINGS.) Experience in over 1,400 patients with nifedipine immediate-release capsules in a noncomparative clinical trial has shown that concomitant administration of nifedipine and beta-blocking agents is usually well tolerated, but there have been occasional literature reports suggesting that the combination may increase the likelihood of congestive heart failure, severe hypotension, or exacerbation of angina.",
71
+ "drug_name": "Nifedipine",
72
+ "disease_name": "CONGESTIVE HEART FAILURE"
73
+ }
74
+ ```
75
+
76
+ ### Data Fields
77
+
78
+ - `_unit_id`: the unique identifier for this data entry, an `int32` feature.
79
+ - `Worker Answer`: the answer or classification provided by the worker based on the context, a `string` feature.
80
+ - `context`: the text providing the scenario or situation where the drug and disease interaction is mentioned, a `string` feature.
81
+ - `drug_name`: the name of the drug discussed in the context, a `string` feature.
82
+ - `disease_name`: the name of the disease discussed in relation to the drug within the context, a `string` feature.
83
+
84
+ ## Citation
85
+ <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
86
+ **BibTeX:**
87
+ ```
88
+ @article{SHINGJERGJI2021103902,
89
+ title = {Relation extraction from DailyMed structured product labels by optimally combining crowd, experts and machines},
90
+ journal = {Journal of Biomedical Informatics},
91
+ volume = {122},
92
+ pages = {103902},
93
+ year = {2021},
94
+ issn = {1532-0464},
95
+ doi = {https://doi.org/10.1016/j.jbi.2021.103902},
96
+ url = {https://www.sciencedirect.com/science/article/pii/S1532046421002318},
97
+ author = {Krist Shingjergji and Remzi Celebi and Jan Scholtes and Michel Dumontier},
98
+ keywords = {Drug-disease relation classification, Drug indications, Drug data quality, Drug repositioning, Weak supervision, Programmatic labeling, Crowdsourcing, Human-in-the-loop, Machine learning},
99
+ abstract = {The effectiveness of machine learning models to provide accurate and consistent results in drug discovery and clinical decision support is strongly dependent on the quality of the data used. However, substantive amounts of open data that drive drug discovery suffer from a number of issues including inconsistent representation, inaccurate reporting, and incomplete context. For example, databases of FDA-approved drug indications used in computational drug repositioning studies do not distinguish between treatments that simply offer symptomatic relief from those that target the underlying pathology. Moreover, drug indication sources often lack proper provenance and have little overlap. Consequently, new predictions can be of poor quality as they offer little in the way of new insights. Hence, work remains to be done to establish higher quality databases of drug indications that are suitable for use in drug discovery and repositioning studies. Here, we report on the combination of weak supervision (i.e., programmatic labeling and crowdsourcing) and deep learning methods for relation extraction from DailyMed text to create a higher quality drug-disease relation dataset. The generated drug-disease relation data shows a high overlap with DrugCentral, a manually curated dataset. Using this dataset, we constructed a machine learning model to classify relations between drugs and diseases from text into four categories; treatment, symptomatic relief, contradiction, and effect, exhibiting an improvement of 15.5% with Bi-LSTM (F1 score of 71.8%) over the best performing discrete method. Access to high quality data is crucial to building accurate and reliable drug repurposing prediction models. Our work suggests how the combination of crowds, experts, and machine learning methods can go hand-in-hand to improve datasets and predictive models.}
100
+ }
101
+ ```
102
+ **APA:**
103
+ - Shingjergji, K., Celebi, R., Scholtes, J., & Dumontier, M. (2021). Relation extraction from DailyMed structured product labels by optimally combining crowd, experts and machines. Journal of Biomedical Informatics, 122, 103902. https://doi.org/10.1016/j.jbi.2021.103902
104
+ -
105
+ ## Dataset Card Authors
106
+ [@phucdev](https://github.com/phucdev)