language:-nllicense:apache-2.0base_model:microsoft/deberta-v3-largetags:-token-classification-ner-pii-pii-detection-de-identification-privacy-healthcare-medical-clinical-phi-dutch-pytorch-transformers-openmedpipeline_tag:token-classificationlibrary_name:transformersmetrics:-f1-precision-recallmodel-index:-name:OpenMed-PII-Dutch-SuperClinical-Large-434M-v1results:-task:type:token-classificationname:NamedEntityRecognitiondataset:name:AI4Privacy(Dutchsubset)type:ai4privacy/pii-masking-400ksplit:testmetrics:-type:f1value:0.9419name:F1(micro)-type:precisionvalue:0.939name:Precision-type:recallvalue:0.9448name:Recallwidget:-text:>- Dr. Jan de Vries (BSN: 123456789) is bereikbaar via jan.devries@ziekenhuis.nl of +31 6 12345678. Hij woont op Keizersgracht 42, 1015 CS Amsterdam.example_title:ClinicalNotewithPII(Dutch)
OpenMed-PII-Dutch-SuperClinical-Large-434M-v1
Dutch PII Detection Model | 434M Parameters | Open Source
Model Description
OpenMed-PII-Dutch-SuperClinical-Large-434M-v1 is a transformer-based token classification model fine-tuned for Personally Identifiable Information (PII) detection in Dutch text. This model identifies and classifies 54 types of sensitive information including names, addresses, social security numbers, medical record numbers, and more.
Key Features
Dutch-Optimized: Specifically trained on Dutch text for optimal performance
High Accuracy: Achieves strong F1 scores across diverse PII categories
Comprehensive Coverage: Detects 54 entity types spanning personal, financial, medical, and contact information
Privacy-Focused: Designed for de-identification and compliance with GDPR and other privacy regulations
Production-Ready: Optimized for real-world text processing pipelines
Performance
Evaluated on the Dutch subset of AI4Privacy dataset:
This model detects 54 PII entity types organized into categories:
Identifiers (22 types)
Entity
Description
ACCOUNTNAME
Accountname
BANKACCOUNT
Bankaccount
BIC
Bic
BITCOINADDRESS
Bitcoinaddress
CREDITCARD
Creditcard
CREDITCARDISSUER
Creditcardissuer
CVV
Cvv
ETHEREUMADDRESS
Ethereumaddress
IBAN
Iban
IMEI
Imei
...
and 12 more
Personal Info (11 types)
Entity
Description
AGE
Age
DATEOFBIRTH
Dateofbirth
EYECOLOR
Eyecolor
FIRSTNAME
Firstname
GENDER
Gender
HEIGHT
Height
LASTNAME
Lastname
MIDDLENAME
Middlename
OCCUPATION
Occupation
PREFIX
Prefix
...
and 1 more
Contact Info (2 types)
Entity
Description
EMAIL
Email
PHONE
Phone
Location (9 types)
Entity
Description
BUILDINGNUMBER
Buildingnumber
CITY
City
COUNTY
County
GPSCOORDINATES
Gpscoordinates
ORDINALDIRECTION
Ordinaldirection
SECONDARYADDRESS
Secondaryaddress
STATE
State
STREET
Street
ZIPCODE
Zipcode
Organization (3 types)
Entity
Description
JOBDEPARTMENT
Jobdepartment
JOBTITLE
Jobtitle
ORGANIZATION
Organization
Financial (5 types)
Entity
Description
AMOUNT
Amount
CURRENCY
Currency
CURRENCYCODE
Currencycode
CURRENCYNAME
Currencyname
CURRENCYSYMBOL
Currencysymbol
Temporal (2 types)
Entity
Description
DATE
Date
TIME
Time
Usage
Using OpenMed
uv pip install "openmed[hf]"
from openmed import extract_pii
result = extract_pii(
"Patiënt: Eva de Vries, geboortedatum: 15 januari 1984, BSN: 123456782, telefoon: +31 6 12345678",
lang="nl",
model_name="OpenMed/OpenMed-PII-Dutch-SuperClinical-Large-434M-v1",
use_smart_merging=True,
)
print([(e.label, e.text) for e in result.entities])
Quick Start
from transformers import pipeline
# Load the PII detection pipeline
ner = pipeline("ner", model="OpenMed/OpenMed-PII-Dutch-SuperClinical-Large-434M-v1", aggregation_strategy="simple")
text = """Patiënt Jan Jansen (geboren 15-03-1985, BSN: 987654321) is vandaag gezien.Contact: jan.jansen@email.nl, Telefoon: +31 6 12345678.Adres: Herengracht 42, 1015 BN Amsterdam."""
entities = ner(text)
for entity in entities:
print(f"{entity['entity_group']}: {entity['word']} (score: {entity['score']:.3f})")
De-identification Example
defredact_pii(text, entities, placeholder='[REDACTED]'):
"""Replace detected PII with placeholders."""# Sort entities by start position (descending) to preserve offsets
sorted_entities = sorted(entities, key=lambda x: x['start'], reverse=True)
redacted = text
for ent in sorted_entities:
redacted = redacted[:ent['start']] + f"[{ent['entity_group']}]" + redacted[ent['end']:]
return redacted
# Apply de-identification
redacted_text = redact_pii(text, entities)
print(redacted_text)