How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("token-classification", model="dswah/address-ner-de")
# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification

tokenizer = AutoTokenizer.from_pretrained("dswah/address-ner-de")
model = AutoModelForTokenClassification.from_pretrained("dswah/address-ner-de")
Quick Links

address-ner-de

Address NER for Legal German Text

See synthetic dataset creation at github.com/dswah/address-ner-de

Downloads last month
8
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train dswah/address-ner-de