Commit ·
02f20da
1
Parent(s): a5ed97f
Update README.md
Browse files
README.md
CHANGED
|
@@ -17,4 +17,15 @@ pipeline_tag: token-classification
|
|
| 17 |
- Online presence: URL, usernames, and passwords
|
| 18 |
- Other sensitive data: SSN, vehicle VIN and VRM, phone IMEI, and nearby GPS coordinates
|
| 19 |
|
| 20 |
-
The PII Identifier Model ensures data privacy and compliance by effectively detecting and categorizing sensitive information within documents, emails, user-generated content, and more. Make your data processing safer and more secure with our state-of-the-art PII detection technology.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
- Online presence: URL, usernames, and passwords
|
| 18 |
- Other sensitive data: SSN, vehicle VIN and VRM, phone IMEI, and nearby GPS coordinates
|
| 19 |
|
| 20 |
+
The PII Identifier Model ensures data privacy and compliance by effectively detecting and categorizing sensitive information within documents, emails, user-generated content, and more. Make your data processing safer and more secure with our state-of-the-art PII detection technology.
|
| 21 |
+
|
| 22 |
+
How to do Inference :
|
| 23 |
+
|
| 24 |
+
```
|
| 25 |
+
from transformers import pipeline
|
| 26 |
+
gen = pipeline("token-classification", "lakshyakh93/deberta_finetuned_pii", device=-1)
|
| 27 |
+
|
| 28 |
+
text = "My name is John and I live in California."
|
| 29 |
+
output = gen(text, aggregation_strategy="first")
|
| 30 |
+
```
|
| 31 |
+
|