Views
No views yet
pipeline:1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="gabrielloiseau/ettin-encoder-150m-privacy")
4result = classifier("Happy First Day of Spring!")
5print(result) # [{'label': '1', 'score': 0.98}]1 through 5 represent the degree of privacy sensitivity, where 1 is the lowest and 5 is the highest.1@misc{loiseau2026distilling,
2 title={Distilling Human-Aligned Privacy Sensitivity Assessment from Large Language Models},
3 author={Gabriel Loiseau and Damien Sileo and Damien Riquet and Maxime Meyer and Marc Tommasi},
4 year={2026},
5 eprint={2603.29497},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2603.29497},
9}