A fine-tuned GLiNER2 Large (340M params) model trained to detect Personally Identifiable Information (PII) in text. Built as a flexible, self-hosted replacement for AWS Comprehend at Overmind.
Training data: 1,210 synthetic snippets generated with Gemini 3 Pro + Python Faker, each containing 2–4 PII entities
Eval data: 300 held-out snippets (no template overlap with training)
Strategy: Full weight fine-tuning with differential learning rates:
Encoder (DeBERTa v3): 1e-7
GLiNER-specific layers: 1e-6
Batch size: 64
Convergence: 175 steps
Why NERPA?
NERPA combines two technical advantages that commercial NER services like AWS Comprehend cannot offer:
1. Bi-Encoder Architecture for Zero-Shot Entity Detection
GLiNER2 is a bi-encoder that takes both text and entity label descriptions as input, rather than treating entity types as fixed output classes. This architectural difference means you can define arbitrary entity types at inference time without retraining:
python
1# Standard PII entities2entities = detect_entities(model, text, entities={3"PERSON_NAME":"Person name",4"DATE_OF_BIRTH":"Date of birth",5"EMAIL":"Email address",6})78# Add domain-specific entities on the fly9entities = detect_entities(model, text, entities={10"PERSON_NAME":"Person name",11"MEDICATION":"Drug or medication name",12"DIAGNOSIS":"Medical condition or diagnosis",13"LAB_VALUE":"Laboratory test result",14})15
This isn't prompt engineering or few-shot learning. The model's bi-encoder architecture natively supports arbitrary entity schemas. Fine-tuning on PII improves precision on those specific types without degrading the zero-shot capability.
Example: Context-dependent entity distinction
python
1text ="""Last weekend, I visited Riverside Farm & Wildlife Park with my family.
2The kids were excited to see the tigers first—magnificent creatures pacing behind
3the reinforced glass. My daughter Sarah kept comparing them to our tabby cat at home,
4saying how similar their stripes looked, though obviously Mittens is much smaller and
5sleeps on our couch rather than prowling through artificial jungle habitats."""67entities = detect_entities(model, text, entities={8"ZOO":"Animals in a zoo or wildlife park",9"PET":"Pet animals owned by someone",10})
Output:
Last weekend, I visited Riverside Farm & Wildlife Park with my family. The kids were
excited to see the [ZOO] first—magnificent creatures pacing behind the reinforced glass.
My daughter Sarah kept comparing them to our [PET] at home, saying how similar their
stripes looked, though obviously [PET] is much smaller and sleeps on our couch rather
than prowling through artificial jungle habitats.
The model correctly distinguishes tigers (zoo animals) from the tabby cat and even the cat's name Mittens (pets) based purely on contextual cues. No retraining required.
2. Superior Performance on Standard PII
Fine-tuning GLiNER2 Large on 1,210 synthetic PII examples produced a model that outperforms AWS Comprehend on standard entity detection:
Model
Micro-Precision
Micro-Recall
AWS Comprehend
0.90
0.94
GLiNER2 Large (off-the-shelf)
0.84
0.89
NERPA (this model)
0.93
0.90
NERPA achieves 3% higher precision than AWS Comprehend while maintaining comparable recall. The fine-tuning also enables fine-grained date disambiguation (DATE_OF_BIRTH vs DATE_TIME), which AWS Comprehend cannot do without custom model training.
The Architecture Advantage
AWS Comprehend treats entity types as fixed classification targets. Adding a new entity type requires:
Annotating thousands of examples
Training a custom model
Paying for model hosting
Managing model versioning
NERPA's bi-encoder architecture makes entity types a runtime parameter. Adding new entities is a single line of code.
Pre-Optimised PII Entity Types
NERPA is fine-tuned on these entity types (but you can add more at inference time):
Entity
Description
PERSON_NAME
Person name
DATE_OF_BIRTH
Date of birth
DATE_TIME
Generic date and time
EMAIL
Email address
PHONE
Phone numbers
LOCATION
Address, city, country, postcode, street
AGE
Age of a person
BUSINESS_NAME
Business name
USERNAME
Username
URL
Any URL
BANK_ACCOUNT_DETAILS
IBAN, SWIFT, routing numbers, etc.
CARD_DETAILS
Card number, CVV, expiration
DIGITAL_KEYS
Passwords, PINs, API keys
PERSONAL_ID_NUMBERS
Passport, driving licence, tax IDs
TECHNICAL_ID_NUMBERS
IP/MAC addresses, serial numbers
VEHICLE_ID_NUMBERS
License plates, VINs
Quick Start
Install dependencies
pip install gliner2 torch
Anonymise text (CLI)
bash
1# Inline text2python anonymise.py "Dear John Smith, born 15/03/1990. Contact: john@acme.com"34# From file5python anonymise.py --file input.txt --output anonymised.txt
67# Show detected entities8python anonymise.py --show-entities "Call me at 020-7946-0958, my IBAN is GB29NWBK60161331926819."
Use in Python
python
1from anonymise import load_model, detect_entities, anonymise
23model = load_model(".")# path to this repo45text =(6"Dear John Smith, your appointment is on 2025-03-15. "7"Your date of birth (15/03/1990) has been verified. "8"Please contact support at help@acme.com or call 020-7946-0958. "9)1011entities = detect_entities(model, text)12print(anonymise(text, entities))
Output:
Dear [PERSON_NAME], your appointment is on [DATE_TIME].
Your date of birth ([DATE_OF_BIRTH]) has been verified.
Please contact support at [EMAIL] or call [PHONE].
Entity detection only
If you just need the raw entity offsets (e.g. for your own replacement logic):
python
1entities = detect_entities(model, text)2for e in entities:3print(f'{e["type"]:25s} [{e["start"]}:{e["end"]}] score={e["score"]:.2f} "{text[e["start"]:e["end"]]}"')
You can detect additional entity types beyond the built-in PII set. The model's zero-shot capability means any label + description pair will work — your custom entities are detected and anonymised alongside the fine-tuned ones.
CLI — use --extra-entities / -e:
bash
1python anonymise.py -e PRODUCT="Product name" -e SKILL="Professional skill"\2"John Smith is a senior Python developer who bought a MacBook Pro."
Output:
[PERSON_NAME] is a senior [SKILL] developer who bought a [PRODUCT].
Python:
python
1from anonymise import load_model, detect_entities, anonymise, PII_ENTITIES
23model = load_model(".")45custom_entities ={6**PII_ENTITIES,7"PRODUCT":"Product name",8"SKILL":"Professional skill",9}1011text ="John Smith is a senior Python developer who bought a MacBook Pro."12entities = detect_entities(model, text, entities=custom_entities)13print(anonymise(text, entities))
How It Works
The inference pipeline in anonymise.py:
Chunking — Long texts are split into 3000-character chunks with 100-char overlap to stay within the model's context window. Specific chunk size can be varied since DeBERTa-v3 (underlying encoder) uses relative position encoding. We found that this size works as well as smaller ones.
Batch prediction — Chunks are fed through GLiNER2.batch_extract_entities() with include_spans=True to get character-level offsets.
Date disambiguation — Both DATE_TIME and DATE_OF_BIRTH are always detected together so the model can choose the best label per span.
De-duplication — Overlapping detections from chunk boundaries are merged, keeping the highest-confidence label for each position.
Replacement — Detected spans are replaced right-to-left with [ENTITY_TYPE] placeholders.
Notes
Confidence threshold: Default is 0.25. The model sometimes tends to be conservative, so a lower threshold works well for high recall.
GLiNER2 version: Requires gliner2>=1.2.4. Earlier versions had a bug where entity character offsets mapped to token positions instead of character positions; this is fixed in 1.2.4+.
Device: Automatically uses CUDA > MPS > CPU.
Acknowledgements
This model is a fine-tuned version of GLiNER2 Large by Fastino AI. We thank the GLiNER2 authors for making their model and library openly available.
Citation
If you use NERPA, please cite both this model and the original GLiNER2 paper:
bibtex
1@misc{nerpa2025,
2 title={NERPA: Fine-Tuned GLiNER2 for PII Anonymisation},
3 author={Akhat Rakishev},
4 year={2025},
5 url={https://huggingface.co/OvermindLab/nerpa},
6}
78@misc{zaratiana2025gliner2efficientmultitaskinformation,
9 title={GLiNER2: An Efficient Multi-Task Information Extraction System with Schema-Driven Interface},
10 author={Urchade Zaratiana and Gil Pasternak and Oliver Boyd and George Hurn-Maloney and Ash Lewis},
11 year={2025},
12 eprint={2507.18546},
13 archivePrefix={arXiv},
14 primaryClass={cs.CL},
15 url={https://arxiv.org/abs/2507.18546},
16}