christine-withers commited on
Commit
052c7be
·
verified ·
1 Parent(s): 1d7d889

Upload Dataset Card

Browse files
Files changed (1) hide show
  1. README.md +82 -18
README.md CHANGED
@@ -1,33 +1,97 @@
1
  ---
2
- language:
3
- - en
 
 
 
 
 
 
 
 
 
 
4
  ---
5
- # Dataset Card for Dataset Name
6
 
7
- <!-- Provide a quick summary of the dataset. -->
8
 
9
- PHEE - Data identifying instances of adverse events in texts, derived from literature (PubMed)
10
 
11
- ## Dataset Details
 
 
 
12
 
13
- ### Dataset Description
14
 
15
- <!-- Provide a longer summary of what this dataset is. -->
 
 
 
16
 
17
- Data taken from source listed below was reformatted into .CoNLL, suitable for model training
 
 
 
 
 
 
 
 
 
18
 
19
- - **Formatted by:** christine-withers
20
- - **Funded by [optional]:** OpenTargets
21
 
22
- ### Dataset Sources [optional]
 
23
 
24
- <!-- Provide the basic links for the dataset. -->
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
- - **Repository:** https://huggingface.co/datasets/sarus-tech/phee
27
- - **Paper:** https://arxiv.org/pdf/2210.12560
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
- ## Uses
30
 
31
- <!-- Address questions around how the dataset is intended to be used. -->
32
 
33
- Training of NER model tagging adverse-events
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language: en
3
+ license: mit
4
+ task_categories:
5
+ - token-classification
6
+ task_ids:
7
+ - named-entity-recognition
8
+ pretty_name: PHEE test data
9
+ tags:
10
+ - pharmacovigilance
11
+ - adverse-event
12
+ - medical
13
+ - ner
14
  ---
 
15
 
16
+ # PHEE test data
17
 
18
+ ## Dataset Description
19
 
20
+ This dataset contains sentences derived from medical case report abstracts
21
+ curated for adverse events. Split data and CoNLL formatting allows for the
22
+ **training of language models**, for **named entity recognition.** The dataset
23
+ includes entity annotations or labels. This subsect is the test split.
24
 
25
+ The creation of the original PHEE dataset is detailed at:
26
 
27
+ > Sun, Z., Li, J., Pergola, G., Wallace, B. C., John, B., Greene, N., Kim, J.,
28
+ > & He, Y. (2022). PHEE: A dataset for pharmacovigilance event extraction from
29
+ > text. arXiv preprint arXiv:2210.12560.
30
+ > https://arxiv.org/pdf/2210.12560.
31
 
32
+ ---
33
+
34
+ ## Source Data
35
+
36
+ The port of the original PHEE dataset used for our purposes is detailed here:
37
+
38
+ Original source repository:
39
+ https://huggingface.co/datasets/sarus-tech/phee
40
+
41
+ ---
42
 
43
+ ## Intended Use
 
44
 
45
+ ### Primary Use
46
+ - Supervised NER training for biomedical NLP tasks
47
 
48
+ ### Not Intended For
49
+ - Clinical or patient-level decision making
50
+
51
+ ---
52
+
53
+ ## Dataset Structure
54
+
55
+ - **Language:** English
56
+ - **Splits:** Train / Test / Validation
57
+ - **Features:** Text field, BIO label
58
+ - **Labels:** Adev ~ 'Adverse Event'
59
+
60
+ ---
61
 
62
+ ## Preprocessing
63
+
64
+ - Sentence-level segmentation is enforced
65
+ - Annotations carried out by 15 annotators in data's original creation
66
+ - Present dataset split into train / test / val
67
+ - Present dataset labeled in the IOB CoNLL format
68
+
69
+ ---
70
+
71
+ ## Limitations
72
+
73
+ - Relatively small corpus size compared to large-scale pretraining datasets
74
+ - Specific to medical case report abstracts only
75
+
76
+ ---
77
+
78
+ ## Ethical Considerations
79
+
80
+ - All content originates from publicly available, open-access scientific datasets
81
+ - No personal, clinical, or identifiable patient information is included
82
+
83
+ ---
84
 
85
+ ## Citation
86
 
87
+ If you use this dataset, please cite the original publication:
88
 
89
+ ```bibtex
90
+ @article{sun2022phee,
91
+ title = {PHEE: A dataset for pharmacovigilance event extraction from text},
92
+ author = {Sun, Z., Li, J., Pergola, G., Wallace, B. C., John, B., Greene, N., Kim, J., & He, Y.},
93
+ journal = {arXiv},
94
+ year = {2022},
95
+ doi = {preprint arXiv:2210.12560}
96
+ }
97
+ ```