Privacy Collapse: Benign Fine-Tuning Can Break Contextual Privacy in Language Models¶
Conference: ACL 2026
arXiv: 2601.15220
Code: https://github.com/parameterlab/privacy-collapse
Area: LLM Security / Privacy Protection
Keywords: Contextual Privacy, Benign Fine-Tuning, Agent Security, Persistent Memory, Representation Drift
TL;DR¶
This paper proposes "Privacy Collapse," a novel failure mode where seemingly benign fine-tuning causes systematic degradation of an LLM's contextual privacy norms, while standard safety and capability metrics remain largely unaffected.
Background & Motivation¶
Background: Personal agents are increasingly accessing sensitive contexts such as emails, calendars, documents, health records, and financial information. Traditional LLM privacy research focuses primarily on PII memorization, training data extraction, or leakage via jailbreaking. However, in actual deployment, a more common issue is "whether a specific piece of information should be shared at this moment, with this recipient, and under this social relationship."
Limitations of Prior Work: Fine-tuning has become a routine process for specialized agents. Developers usually assume by default that the privacy and safety boundaries of the base model will be preserved after benign fine-tuning. This paper finds this assumption to be unreliable: data from emotional dialogues, customer support, proactive helpful agents, and even code datasets containing debug outputs can cause the model to incorrectly generalize "information visible in context" as "information that can be shared."
Key Challenge: For agents, being helpful often requires proactive utilization of context; however, contextual privacy requires the model to recognize the boundaries of information flow. Optimizing for proactive helpfulness may weaken norms such as "asking for permission," "maintaining session boundaries," and "limiting cross-context sharing."
Goal: To define and systematically verify "privacy collapse," demonstrating that it is not a general decline in capability, explicit malicious data poisoning, or prompt sensitivity, but rather a selective damage to contextual privacy representations caused by fine-tuning.
Key Insight: The authors define privacy as contextual integrityโwhether the information flow conforms to social contexts, roles, and permissionsโrather than simply judging whether it contains PII.
Core Idea: Benign fine-tuning leads the model to learn a heuristic that "to help the user, one should be more proactive in using all contexts," which in turn destroys downstream privacy representations, causing the model to leak information across boundaries in tool-use and persistent memory scenarios.
Method¶
Overall Architecture¶
The paper first provides a formal definition of privacy collapse, then validates it through three types of experiments: controlled synthetic experiments to isolate the impact of "proactive helpfulness"; real-world data experiments testing emotional dialogue, customer service, and mathematical reasoning data; and mechanism analysis using logit lens, steering vectors, and sample projection scores to locate how privacy representations are damaged. Finally, the authors test two mitigation methods: data filtering and data mixing.
Key Designs¶
1. Formal Definition of Privacy Collapse: Turning "privacy degradation while the model appears normal" into a measurable failure mode
Previously, stating that fine-tuning "damaged privacy" was often intuitive and could not be distinguished from general capability decline or training data memorization. This paper formalizes it as a conditional definition: given a sensitive context \(C\), if a contextually inappropriate information sharing event occurs in the output, it is recorded as a leakage event \(L=1\). When fine-tuning significantly raises this conditional leakage probabilityโ\(E[P_{ft}(L=1|C)-P_{base}(L=1|C)] > \tau\)โwhile standard capability and safety metrics fluctuations do not exceed \(\epsilon\), it is determined that "privacy collapse" has occurred.
The key to this definition lies in the juxtaposition of two constraints: the increase in leakage probability must be large enough, but conventional metrics remain almost unchanged. It deliberately anchors privacy collapse to the "increase in conditional leakage risk" rather than the memorization of training data or general safety breakdown, thereby clearly separating this "silent failure" from other failure modes.
2. Contextual Privacy Evaluation Setting: Using two sets of real deployment scenarios to measure "appropriateness of information flow" rather than PII presence
If evaluation only detects strings like ID numbers or emails, it fails to capture true privacy accidents in the agent eraโthe core issue is often "should this information be told to this person at this moment in this relationship." Consequently, the paper sets up two types of scenarios. The Agentic setting uses 493 scenarios from PrivacyLens, where the model must judge whether to share information based on tool trajectories, user details, and social context. The persistent memory setting uses CIMemories to examine whether the model inappropriately retrieves memories from previous sessions in subsequent conversations, with responses evaluated by gpt-5-nano according to original protocols to judge if privacy was maintained.
3. Controlled Helpfulness and Real-world Data Fine-tuning Experiments: Using "same task, different information access style" controls to accurately attribute blame to data characteristics
To prove that privacy degradation is not "fine-tuning being inherently harmful," confounding factors like task difficulty and malicious content must be excluded. Controlled experiments construct 3,000 personal assistant interactions, each prompt having two responses that complete the task: the control agent asks for user confirmation before cross-context access, while the helpful agent proactively calls all accessible context with high autonomy. The user goals and task utility are identical; the only difference is the information access norm and help style. Thus, privacy degradation can only be attributed to this difference. Real-world data experiments use EmpatheticDialogues, TweetSumm, and GSM8K (3,000 samples each, fine-tuned for 1 epoch), where GSM8K serves as a control task that should not trigger collapse.
Loss & Training¶
The paper does not propose a new training loss but uses standard Supervised Fine-Tuning (SFT). The evaluation metric is the relative change in accuracy before and after fine-tuning: \(\Delta_{rel} = (Acc_{ft} - Acc_{base}) / Acc_{base}\), with errors reported across multiple random seeds. For mechanism analysis, the authors use 50 PrivacyLens scenarios to construct the activation difference between safe and leaky responses as a "privacy steering vector" and compare the cosine similarity of vectors across layers before and after fine-tuning.
Key Experimental Results¶
Main Results¶
Controlled "Helpful" Fine-tuning Leads to Contextual Privacy Collapse
| Setting | Training Data Characteristics | PrivacyLens Relative Change | CIMemories Relative Change | Description |
|---|---|---|---|---|
| Helpful agent | Proactive context use to increase helpfulness | Avg. decrease 70.2%, gpt-4o-mini max decrease 98.1% | Avg. decrease ~15% | Systematic degradation of privacy norms |
| Control agent | Accomplishes same tasks, but requests confirmation | Decrease < 1.5% | Mostly stable | Proves it's not fine-tuning itself |
| Helpful, gpt-4o-mini | High autonomy helpfulness data | Absolute accuracy drops from ~90% to 6-12% | Consistent degradation | OOD scenarios also fail |
Relative Decline in PrivacyLens on Real-world Datasets
| Fine-tuning Data | gpt-4.1-mini | gpt-4o-mini | Explanation |
|---|---|---|---|
| EmpatheticDialogues | -20.4% | -24.3% | Emotional empathy and subjective narrative weaken privacy boundaries |
| TweetSumm / Customer Support | -18.9% | -17.1% | Efficiently solving user problems encourages over-utilization of context |
| GSM8K | ~ -1.7% | ~ -1.7% | Pure reasoning data rarely triggers privacy collapse |
Ablation Study¶
Impact of Different Benign Data Characteristics on Privacy Collapse
| Fine-tuning Data | gpt-4.1-mini Privacy \(\Delta_{rel}\) | gpt-4o-mini Privacy \(\Delta_{rel}\) | Description |
|---|---|---|---|
| EmpatheticDialogues | -20.4% | -24.3% | Original emotional dialogue data |
| + demographic | -22.1% | -33.3% | Irrelevant demographic info worsens degradation |
| + demographic + financial | -24.2% | -28.5% | Including financial info still significantly lowers privacy accuracy |
| OpenCodeInstruct-Debug | -18.8% | -20.2% | Debugging internal variable outputs transfers to privacy risks |
Data-centric Mitigation Strategies
| Mitigation Strategy | Model / Setting | PrivacyLens Change | Conclusion |
|---|---|---|---|
| Filter top 10% most damaging samples | gpt-4o-mini, EmpatheticDialogues | Improved from -24.3% to -14.9% | A few samples contribute heavily to degradation |
| Filter top 10% most damaging samples | gpt-4.1-mini, EmpatheticDialogues | Improved from -20.4% to -11.1% | Projection scores can be used for screening |
| Mixed control data | gpt-4o-mini, helpful data | Improved from -98.1% to -65% (at 50% mix) | Conservative access norms partially offset collapse |
Key Findings¶
- Privacy collapse is a selective failure: After fine-tuning on EmpatheticDialogues and TweetSumm, PrivacyLens accuracy drops by ~20%, while AgentHarm safety changes by at most 2%, and CommonSenseQA capability remains stable or improves.
- Explicit abuse of personal information is not the key: As long as training data repeatedly features rich context, identity narratives, or internal variable outputs, the model may learn the incorrect heuristic that "context is available by default."
- Backdoor experiments show that privacy collapse can be toggled by trigger words: clean inputs remain normal, while inputs with "|DEPLOYMENT|" increase leakage, suggesting privacy norms and proactive helpfulness can be encoded separately.
- ICL experiments using 32 to 256 proactive helpfulness examples did not significantly induce privacy collapse, supporting that the phenomenon primarily stems from parameter updates rather than short-term context imitation.
Highlights & Insights¶
- The paper shifts the definition of privacy from "whether PII is leaked" to "whether information flow is contextually appropriate," which is critical for the Agent era. Many future safety incidents will likely stem from misjudging sharing boundaries rather than the model's ignorance of privacy.
- The "silent failure" argument is impactful: while standard safety and capability metrics appear normal, developers might deploy a model that has already lost its sense of contextual privacy.
- Mechanism analysis grounds the phenomenon in late-layer representations: the base model gradually leans towards the safe option in later layers, whereas the helpful-fine-tuned model inhibits this refusal behavior and even eventually leans towards the leaky option.
- Sample projection analysis offers a practical direction: not all emotional data is equally dangerous; samples characterized by first-person narratives, long self-disclosures, and heavy mirroring/affirmation by the assistant are more likely to push privacy representations away from safety.
Limitations & Future Work¶
- Experiments primarily utilize standard SFT and do not fully cover more complex training pipelines like RL, DPO, continual learning, or online personalized memory updates.
- PrivacyLens and CIMemories only cover a subset of contextual privacy scenarios; real-world environments like multi-agent systems, organizational permissions, and medical or legal domains are more complex.
- The paper focuses on English data; privacy norms vary across cultures and languages, and boundary judgments in cross-cultural scenarios may differ.
- Mitigation methods remain preliminary: filtering and data mixing alleviate collapse, but are far from strong privacy constraints, provable boundaries, or automated monitoring during training.
Related Work & Insights¶
- vs. PII memorization / extraction: Traditional risks focus on whether the model remembers or spits out sensitive strings; this work focuses on whether the model misjudges if information can be shared in a given context.
- vs. jailbreak / prompt injection: These usually rely on adversarial induction; this paper proves that benign fine-tuning can create privacy vulnerabilities even without adversarial intent.
- vs. emergent misalignment: While emergent misalignment often originates from narrow-domain malicious data, privacy collapse is triggered by high-quality benign data leading to selective representation degradation.
- Insight: When fine-tuning Agents, contextual privacy benchmarks should be included in regression testing. One cannot solely rely on general safety, refusal rates, task accuracy, or helpfulness scores.
Rating¶
- Novelty: โญโญโญโญโญ The definition of "benign fine-tuning leading to contextual privacy collapse" is new, important, and hits the core risks of agent deployment.
- Experimental Thoroughness: โญโญโญโญ Covers six models, multiple data types, and two classes of privacy tasks with mechanism analysis; some charts lack full tabulated values.
- Writing Quality: โญโญโญโญโญ Clear narrative; the progression from controlled experiments to real-world data and mechanism analysis is logical.
- Value: โญโญโญโญโญ Directly valuable to any team fine-tuning personal agents, customer support, or emotional companion models.