MedBERT / README.md
Charangan's picture
Update README.md
f70ffc9
|
raw
history blame
No virus
475 Bytes
---
language:
- "en"
license: mit
tags:
- fill-mask
---
# MedBERT Model
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.
## How to use
```python
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("Charangan/MedBERT")
model = AutoModel.from_pretrained("Charangan/MedBERT")
```