NB-Bert base model fine-tuned on the Part of Speech task using the NorNE dataset.
Usage
python
1from transformers import pipeline
23pos = pipeline("token-classification","NbAiLab/nb-bert-base-pos")4example ="Jeg heter Kjell og bor i Oslo."56pos_results = pos(example)7print(ner_results)