Emmytheo commited on
Commit
9b9d0fe
·
1 Parent(s): e308a8e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -1
README.md CHANGED
@@ -1,3 +1,54 @@
1
  ---
2
- license: cc
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language: "en"
3
+ tags:
4
+ - bert
5
+ - medical
6
+ - clinical
7
+ thumbnail: "https://core.app.datexis.com/static/paper.png"
8
  ---
9
+
10
+ # CORe Model - BioBERT + Clinical Outcome Pre-Training
11
+
12
+ ## Model description
13
+
14
+ The CORe (_Clinical Outcome Representations_) model is introduced in the paper [Clinical Outcome Predictions from Admission Notes using Self-Supervised Knowledge Integration](https://www.aclweb.org/anthology/2021.eacl-main.75.pdf).
15
+ It is based on BioBERT and further pre-trained on clinical notes, disease descriptions and medical articles with a specialised _Clinical Outcome Pre-Training_ objective.
16
+
17
+ #### How to use CORe
18
+
19
+ You can load the model via the transformers library:
20
+ ```
21
+ from transformers import AutoTokenizer, AutoModel
22
+ tokenizer = AutoTokenizer.from_pretrained("bvanaken/CORe-clinical-outcome-biobert-v1")
23
+ model = AutoModel.from_pretrained("bvanaken/CORe-clinical-outcome-biobert-v1")
24
+ ```
25
+ From there, you can fine-tune it on clinical tasks that benefit from patient outcome knowledge.
26
+
27
+ ### Pre-Training Data
28
+
29
+ The model is based on [BioBERT](https://huggingface.co/dmis-lab/biobert-v1.1) pre-trained on PubMed data.
30
+ The _Clinical Outcome Pre-Training_ included discharge summaries from the MIMIC III training set (specified [here](https://github.com/bvanaken/clinical-outcome-prediction/blob/master/tasks/mimic_train.csv)), medical transcriptions from [MTSamples](https://mtsamples.com/) and clinical notes from the i2b2 challenges 2006-2012. It further includes ~10k case reports from PubMed Central (PMC), disease articles from Wikipedia and article sections from the [MedQuAd](https://github.com/abachaa/MedQuAD) dataset extracted from NIH websites.
31
+
32
+ ### More Information
33
+
34
+ For all the details about CORe and contact info, please visit [CORe.app.datexis.com](http://core.app.datexis.com/).
35
+
36
+ ### Cite
37
+
38
+ ```bibtex
39
+ @inproceedings{vanaken21,
40
+ author = {Betty van Aken and
41
+ Jens-Michalis Papaioannou and
42
+ Manuel Mayrdorfer and
43
+ Klemens Budde and
44
+ Felix A. Gers and
45
+ Alexander Löser},
46
+ title = {Clinical Outcome Prediction from Admission Notes using Self-Supervised
47
+ Knowledge Integration},
48
+ booktitle = {Proceedings of the 16th Conference of the European Chapter of the
49
+ Association for Computational Linguistics: Main Volume, {EACL} 2021,
50
+ Online, April 19 - 23, 2021},
51
+ publisher = {Association for Computational Linguistics},
52
+ year = {2021},
53
+ }
54
+ ```