Update README.md
Browse files
README.md
CHANGED
@@ -18,4 +18,16 @@ MedBERT is a newly pre-trained transformer-based language model for biomedical n
|
|
18 |
from transformers import AutoTokenizer, AutoModel
|
19 |
tokenizer = AutoTokenizer.from_pretrained("Charangan/MedBERT")
|
20 |
model = AutoModel.from_pretrained("Charangan/MedBERT")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
```
|
|
|
18 |
from transformers import AutoTokenizer, AutoModel
|
19 |
tokenizer = AutoTokenizer.from_pretrained("Charangan/MedBERT")
|
20 |
model = AutoModel.from_pretrained("Charangan/MedBERT")
|
21 |
+
```
|
22 |
+
|
23 |
+
|
24 |
+
## Citation
|
25 |
+
```
|
26 |
+
@inproceedings{medbert,
|
27 |
+
title = {{MedBERT: A Pre-Trained Language Model for Biomedical Named Entity Recognition}},
|
28 |
+
author = {Charangan Vasantharajan and Kyaw Zin Tun and Ho Thi-Nga and Sparsh Jain and Tong Rong and Chng Eng Siong},
|
29 |
+
booktitle = {Asia Pacific Signal and Information Processing Association Annual Summit and Conference 2022},
|
30 |
+
year = {2022},
|
31 |
+
month = {November}
|
32 |
+
}
|
33 |
```
|