dutch-ner-abb / README.md
PedroDKE's picture
Add README with quickstart
2fa30bb verified

PedroDKE/dutch-ner-abb

Dutch NER model fine-tuned with weak supervision.

Base model: GroNLP/bert-base-dutch-cased

Labels (BIO): DATE, PERIOD, LOCATION, LEGAL_GROUND, ADMINISTRATIVE_BODY, MANDATARY

Quickstart

from transformers import pipeline

ner = pipeline("token-classification", model="PedroDKE/dutch-ner-abb", aggregation_strategy="simple")
print(ner("Voorbeeldtekst over de gemeenteraad op 12 maart 2024 in Gent."))