Charangan commited on
Commit
1ffbda5
1 Parent(s): df51f2b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -0
README.md CHANGED
@@ -1,3 +1,22 @@
1
  ---
 
 
2
  license: mit
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - "en"
4
  license: mit
5
+ tags:
6
+ - fill-mask
7
  ---
8
+
9
+
10
+ # MedBERT Model
11
+
12
+ MedBERT is a newly pre-trained transformer-based language model for biomedical named entity recognition: initialised with Bio_ClinicalBERT & pre-trained on N2C2, BioNLP and CRAFT community datasets.
13
+
14
+
15
+ ## How to use the model
16
+
17
+ Load the model via the transformers library:
18
+ ```
19
+ from transformers import AutoTokenizer, AutoModel
20
+ tokenizer = AutoTokenizer.from_pretrained("charangan/MedBERT")
21
+ model = AutoModel.from_pretrained("charangan/MedBERT")
22
+ ```