gabrielaltay commited on
Commit
d105904
1 Parent(s): 8c66524

upload hub_repos/n2c2_2009/README.md to hub from bigbio repo

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ language:
4
+ - en
5
+ license: other
6
+ license_bigbio_shortname: DUA
7
+ pretty_name: n2c2 2009 Medications
8
+ ---
9
+
10
+
11
+ # Dataset Card for n2c2 2009 Medications
12
+
13
+ ## Dataset Description
14
+
15
+ - **Homepage:** https://portal.dbmi.hms.harvard.edu/projects/n2c2-nlp/
16
+ - **Pubmed:** True
17
+ - **Public:** False
18
+ - **Tasks:** Named Entity Recognition
19
+
20
+
21
+ The Third i2b2 Workshop on Natural Language Processing Challenges for Clinical Records
22
+ focused on the identification of medications, their dosages, modes (routes) of administration,
23
+ frequencies, durations, and reasons for administration in discharge summaries.
24
+ The third i2b2 challenge—that is, the medication challenge—extends information
25
+ extraction to relation extraction; it requires extraction of medications and
26
+ medication-related information followed by determination of which medication
27
+ belongs to which medication-related details.
28
+
29
+ The medication challenge was designed as an information extraction task.
30
+ The goal, for each discharge summary, was to extract the following information
31
+ on medications experienced by the patient:
32
+ 1. Medications (m): including names, brand names, generics, and collective names of prescription substances,
33
+ over the counter medications, and other biological substances for which the patient is the experiencer.
34
+ 2. Dosages (do): indicating the amount of a medication used in each administration.
35
+ 3. Modes (mo): indicating the route for administering the medication.
36
+ 4. Frequencies (f): indicating how often each dose of the medication should be taken.
37
+ 5. Durations (du): indicating how long the medication is to be administered.
38
+ 6. Reasons (r): stating the medical reason for which the medication is given.
39
+ 7. Certainty (c): stating whether the event occurs. Certainty can be expressed by uncertainty words,
40
+ e.g., “suggested”, or via modals, e.g., “should” indicates suggestion.
41
+ 8. Event (e): stating on whether the medication is started, stopped, or continued.
42
+ 9. Temporal (t): stating whether the medication was administered in the past,
43
+ is being administered currently, or will be administered in the future, to the extent
44
+ that this information is expressed in the tense of the verbs and auxiliary verbs used to express events.
45
+ 10. List/narrative (ln): indicating whether the medication information appears in a
46
+ list structure or in narrative running text in the discharge summary.
47
+
48
+ The medication challenge asked that systems extract the text corresponding to each of the fields
49
+ for each of the mentions of the medications that were experienced by the patients.
50
+
51
+ The values for the set of fields related to a medication mention, if presented within a
52
+ two-line window of the mention, were linked in order to create what we defined as an ‘entry’.
53
+ If the value of a field for a mention were not specified within a two-line window,
54
+ then the value ‘nm’ for ‘not mentioned’ was entered and the offsets were left unspecified.
55
+
56
+ Since the dataset annotations were crowd-sourced, it contains various violations that are handled
57
+ throughout the data loader via means of exception catching or conditional statements. e.g.
58
+ annotation: anticoagulation, while in text all words are to be separated by space which
59
+ means words at end of sentence will always contain `.` and hence won't be an exact match
60
+ i.e. `anticoagulation` != `anticoagulation.` from doc_id: 818404
61
+
62
+
63
+
64
+ ## Citation Information
65
+
66
+ ```
67
+ @article{DBLP:journals/jamia/UzunerSC10,
68
+ author = {
69
+ Ozlem Uzuner and
70
+ Imre Solti and
71
+ Eithon Cadag
72
+ },
73
+ title = {Extracting medication information from clinical text},
74
+ journal = {J. Am. Medical Informatics Assoc.},
75
+ volume = {17},
76
+ number = {5},
77
+ pages = {514--518},
78
+ year = {2010},
79
+ url = {https://doi.org/10.1136/jamia.2010.003947},
80
+ doi = {10.1136/jamia.2010.003947},
81
+ timestamp = {Mon, 11 May 2020 22:59:55 +0200},
82
+ biburl = {https://dblp.org/rec/journals/jamia/UzunerSC10.bib},
83
+ bibsource = {dblp computer science bibliography, https://dblp.org}
84
+ }
85
+
86
+ ```