wzkariampuzha commited on
Commit
651cbe5
1 Parent(s): 60d8523

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -20
README.md CHANGED
@@ -43,14 +43,16 @@ task_ids:
43
  - [Contributions](#contributions)
44
 
45
  ## Dataset Description
46
-
47
- - **Homepage:** [Github](https://github.com/ZihanWangKi/CrossWeigh)
48
- - **Repository:** [Github](https://github.com/ZihanWangKi/CrossWeigh)
49
  - **Paper:** Pending
50
 
51
  ### Dataset Summary
52
 
53
- EpiSet4NER is a dataset
 
 
 
 
54
  [NIH NCATS GARD](https://rarediseases.info.nih.gov/)
55
 
56
  An example of 'train' looks as follows.
@@ -61,31 +63,24 @@ An example of 'train' looks as follows.
61
  "ner_tags": [0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 5, 6, 0],
62
  }
63
  ```
64
-
65
  ### Data Fields
66
 
67
  The data fields are the same among all splits.
68
-
69
- #### conllpp
70
  - `id`: a `string` feature.
71
  - `tokens`: a `list` of `string` features.
72
- - `ner_tags`: a `list` of classification labels, with possible values including `O` (0), `B-PER` (1), `I-PER` (2), `B-ORG` (3), `I-ORG` (4).
73
- "O", #(0)
74
- "B-LOC", #(1)
75
- "I-LOC", #(2)
76
- "B-EPI", #(3)
77
- "I-EPI", #(4)
78
- "B-STAT", #(5)
79
- "I-STAT", #(6)
80
 
81
- ### Data Splits
82
 
83
- | name |train|validation|test|
84
- |---------|----:|---------:|---:|
85
- |EpiSet |14041| 3250|3453|
86
 
87
  ## Dataset Creation
88
 
 
 
 
89
  ### Curation Rationale
90
 
91
  [More Information Needed]
@@ -118,7 +113,8 @@ See here and then here
118
 
119
  ### Discussion of Biases
120
 
121
- [More Information Needed]
 
122
 
123
  ### Other Known Limitations
124
 
 
43
  - [Contributions](#contributions)
44
 
45
  ## Dataset Description
46
+ - **Repository:** [Github](https://github.com/ncats/epi4GARD/tree/master/EpiExtract4GARD#epiextract4gard)
 
 
47
  - **Paper:** Pending
48
 
49
  ### Dataset Summary
50
 
51
+ EpiSet4NER is a bronze-standard dataset for epidemiological entity recognition of location, epidemiologic types, and created using weakly-supervised teaching methods
52
+
53
+ locations, epidemiological identifiers (e.g. "prevalence", "annual incidence", "estimated occurrence") and epidemiological rates (e.g. "1.7 per 1,000,000 live births", "2.1:1.000.000", "one in five million", "0.03%")
54
+
55
+ These are the V3 training (456 abstracts), validation (114 abstracts), and programmatically generated test (50 abstracts) set. The training set was copied to ```datasets/EpiCustomV3``` and renamed *train.tsv*. The validation set was copied to ```datasets/EpiCustomV3``` and ```datasets/Large_DatasetV3``` and renamed *val.tsv*. The V3 test set (uncorrected) is important as it is used by *Find efficacy of test predictions.ipynb* to find the efficacy of the programmatic labeling, but was otherwise not used with the model.
56
  [NIH NCATS GARD](https://rarediseases.info.nih.gov/)
57
 
58
  An example of 'train' looks as follows.
 
63
  "ner_tags": [0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 5, 6, 0],
64
  }
65
  ```
 
66
  ### Data Fields
67
 
68
  The data fields are the same among all splits.
 
 
69
  - `id`: a `string` feature.
70
  - `tokens`: a `list` of `string` features.
71
+ - `ner_tags`: a `list` of classification labels, with possible values including `O` (0), `B-LOC` (1), `I-LOC` (2), `B-EPI` (3), `I-EPI` (4),`B-STAT` (5),`I-STAT` (6).
 
 
 
 
 
 
 
72
 
73
+ ### Data Splits by number of tokens
74
 
75
+ |name |train |validation|test|
76
+ |---------|-----:|----:|----:|
77
+ |EpiSet |117888|31262|13910|
78
 
79
  ## Dataset Creation
80
 
81
+ This bronze-standard dataset was created from 620 rare disease abstracts
82
+ Programmatic Labeling using statistical and rule-based methods (Weakly Supervised Teaching)
83
+ ![Text Labeling](https://raw.githubusercontent.com/ncats/epi4GARD/master/EpiExtract4GARD/datasets/EpiCustomV3/Text%20Labeling4.png)
84
  ### Curation Rationale
85
 
86
  [More Information Needed]
 
113
 
114
  ### Discussion of Biases
115
 
116
+ Generates *whole_abstract_set.csv* and *positive_abstract_set.csv*. *whole_abstract_set.csv* is a dataset created by sampling 500 rare disease names and their synonyms from *GARD.csv* until ≥50 abstracts had been returned or the search results were exhausted. Although ~25,000 abstracts were expected, 7699 unique abstracts were returned due to the limited research on rare diseases. After running each of these through the LSTM RNN classifier, the *positive_abstract_set.csv* was created from the abstracts which had an epidemiological probability >50%. *positive_abstract_set.csv* will be passed to *create_labeled_dataset_V2.ipynb*
117
+
118
 
119
  ### Other Known Limitations
120