--- license: cc-by-4.0 language: - en tags: - privacy - llm-evaluation - llm-simulation - alignment size_categories: - 1K {question_text: user_response, ...} ``` A column-by-column schema for every file is documented at [docs/SCHEMA.md](https://github.com///blob/main/docs/SCHEMA.md) in the accompanying code repository. ## Loading ```python from datasets import load_dataset # Full unfiltered dataset (2,000 users) ds = load_dataset("jamesflemings/PrivacySIM", "full_dataset", split="all") # 1,000-user sampled from paper ds = load_dataset("jamesflemings/PrivacySIM", "sampled", split="all") ``` ## Source studies The data is derived from five public user studies. Each row's `domain` column identifies the source study. **Please cite the original studies in addition to this dataset** if you use the corresponding rows. | `domain` | Source | Users in `full_dataset.csv` | Users in `dataset.csv` | |---|---|---|---| | `LLM healthcare consultation` | [LLM health consultation user study](https://github.com/Cristliu/LLMHealthPrivacy_UserStudy) | 846 | 200 | | `Chatbot group chat` | [Bot-among-us chatbot group chat study](https://github.com/csienslab/bot-among-us) | 374 | 200 | | `LLM chatbot` | [LLM chatbot privacy norms factorial vignette study](https://github.com/WeberLab-UW/AIES_2025_ChatbotPrivacy) | 300 | 200 | | `LLM conversational agents` | [LLM conversational-agent privacy preferences study](https://osf.io/2vqws/) | 277 | 200 | | `AI agent permissions` | [AI agent permission user study](https://github.com/llm-platform-security/ai-agent-permissions) | 203 | 200 | | **Total** | | **2,000** | **1,000** | ## Code The full reproducibility pipeline (data download, processing, simulation, evaluation, plotting) is at [github.com/james-flemings/PrivacySIM](https://github.com/james-flemings/PrivacySIM). See `docs/SCHEMA.md` for the column-by-column reference. ## License The combined dataset is released under [Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/legalcode). Per-row content remains under each source study's original license: | `domain` | Source license | |---|---| | `LLM healthcare consultation` | MIT | | `Chatbot group chat` | MIT | | `LLM chatbot` | CC0 1.0 (public-domain dedication) | | `AI agent permissions` | CC BY 4.0 | | `LLM conversational agents` | CC BY 4.0 | Full attribution, license texts, copyright notices, and indication of modifications for every source study are provided in the [`THIRD_PARTY_LICENSES.md`](./THIRD_PARTY_LICENSES.md) file shipped alongside the dataset. Anyone redistributing or building on this dataset must preserve that attribution file (or an equivalent).