--- 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](https://github.com/huggingface/transformers) library: ```python from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("jannikskytt/MeDa-Bert") model = AutoModelForMaskedLM.from_pretrained("jannikskytt/MeDa-Bert") ```