metadata
license: cc-by-nc-sa-4.0
language:
- da
pipeline_tag: fill-mask
tags:
- bert
- danish
widget:
- text: pt. har [MASK] i højre arm.
Danish medical BERT
The development of the model is described in the paper:
Here is an example on how to load Danish BERT in PyTorch using the 🤗Transformers library:
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("jannikskytt/MeDa-Bert")
model = AutoModelForMaskedLM.from_pretrained("jannikskytt/MeDa-Bert")