CoolFace
Datasetpublic

perplexity-ai/PII-TRACE

PII-TRACE PII-TRACE is a synthetic dataset for privacy-focused named entity recognition (NER) of personally identifiable information (PII), released as a 500-conversation subset of multi-turn dialogues with exact span annotations. Dataset summary This release contains 500 conversations with 2,653 annotated PII spans across nine labels. Among them, 450 conversations contain PII spans and 50 contain none. Data format Each record contains: Field… See the full description on the dataset page: https://huggingface.co/datasets/perplexity-ai/PII-TRACE.

sourceHugging Facemitupdated 2d agoView on Hugging Face
0likes93downloads
Dataset Card

PII-TRACE

PII-TRACE is a synthetic dataset for privacy-focused named entity recognition (NER) of personally identifiable information (PII), released as a 500-conversation subset of multi-turn dialogues with exact span annotations.

Dataset summary

This release contains 500 conversations with 2,653 annotated PII spans across nine labels. Among them, 450 conversations contain PII spans and 50 contain none.

Data format

Each record contains:

FieldTypeDescription
idstringUnique record ID.
turnslistOrdered turn objects containing turn, user, and assistant.
spanslistGold PII spans. An empty list indicates an empty control.

Each item in spans contains:

FieldTypeDescription
labelstringPII label.
turnintegerZero-based index of the containing turn.
sourcestringMessage role containing the span (user or assistant).
startintegerInclusive Unicode code-point start offset in the selected message.
endintegerExclusive Unicode code-point end offset in the selected message.
textstringExact annotated substring.

Do not trim or normalize message text before applying offsets.

Labels

LabelDescription
private_personPerson name
private_dateDate
private_urlLink or route
private_addressMailing or location address
account_numberAccount or reference number
private_emailEmail address
private_phoneTelephone number
other_piiOther identifier
secretAccess code or credential-like value

Evaluation

Supply turns to the model and keep spans hidden. Report micro and macro exact typed-span precision, recall, and F1 over (turn, source, start, end, label). Untyped exact-span F1 over (turn, source, start, end) may also be reported.

This subset may be used for training, evaluation, and error analysis in PII span detection research.

Limitations

This is a controlled benchmark rather than an estimate of real-world PII prevalence or deployment-level performance. Its English conversations and identifier formats are more regular than production traffic, and current gold spans occur in user messages. The secret label covers credential-like sensitive values but does not assert that every such value is statutory PII.

License

MIT.

Citation

If you use or reference this work, please cite:

bibtex
@article{zhang2026piitrace,
  title = {{PII-TRACE}: A Benchmark for Context-Aware {PII} Detection in Multi-Turn {LLM} Conversations},
  author = {Zhang, Kaiyuan and Wang, Chuan and Zhong, Joey and Fryzel, Paul and Polley, Kyle and Ma, Jerry and Li, Ninghui},
  journal = {arXiv preprint arXiv:2609.22200},
  year = {2026},
  url = {https://arxiv.org/abs/2609.22200}
}