Token Classification
GLiNER2
Safetensors
GLiNER
extractor
pii
ner
privacy
redaction
information-extraction
span-extraction
Instructions to use fastino/gliner2-privacy-filter-PII-multi with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- GLiNER2
How to use fastino/gliner2-privacy-filter-PII-multi with GLiNER2:
from gliner2 import GLiNER2 model = GLiNER2.from_pretrained("fastino/gliner2-privacy-filter-PII-multi") # Extract entities text = "Apple CEO Tim Cook announced iPhone 15 in Cupertino yesterday." result = extractor.extract_entities(text, ["company", "person", "product", "location"]) print(result) - GLiNER
How to use fastino/gliner2-privacy-filter-PII-multi with GLiNER:
from gliner import GLiNER model = GLiNER.from_pretrained("fastino/gliner2-privacy-filter-PII-multi") - Notebooks
- Google Colab
- Kaggle
Commit ·
dcd875e
1
Parent(s): d4f264a
Update README.md (#1)
Browse files- Update README.md (74adf6759a727b0091336323d7bcc3010e20db82)
Co-authored-by: Thao Nguyen <thaooonguyennn@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -22,6 +22,17 @@ datasets:
|
|
| 22 |
- synthetic
|
| 23 |
pipeline_tag: token-classification
|
| 24 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
# GLiNER2-PII: Multilingual PII Detection & Masking
|
| 27 |
|
|
|
|
| 22 |
- synthetic
|
| 23 |
pipeline_tag: token-classification
|
| 24 |
---
|
| 25 |
+
<div style="display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;">
|
| 26 |
+
<a href="https://arxiv.org/abs/2605.09973" target="_blank" rel="noreferrer" style="text-decoration:none;">
|
| 27 |
+
<img src="https://img.shields.io/badge/arXiv-2605.07982-b31b1b.svg?logo=arxiv" alt="arXiv Paper" style="vertical-align:middle;">
|
| 28 |
+
</a>
|
| 29 |
+
<a href="https://pioneer.ai?utm_source=huggingface" target="_blank" rel="noreferrer" style="text-decoration:none;">
|
| 30 |
+
<img src="https://img.shields.io/badge/Deploy-GLiNER2%20PII-FF7345" alt="Deploy GLiNER2-PII model with Pioneer" style="vertical-align:middle;">
|
| 31 |
+
</a>
|
| 32 |
+
<a href="https://x.com/fastinoAI" target="_blank" rel="noreferrer" style="text-decoration:none;">
|
| 33 |
+
<img src="https://img.shields.io/twitter/follow/:fastinoAI" alt="Follow @fastinoAI" style="vertical-align:middle;">
|
| 34 |
+
</a>
|
| 35 |
+
</div>
|
| 36 |
|
| 37 |
# GLiNER2-PII: Multilingual PII Detection & Masking
|
| 38 |
|