The Ghost in the Machine: Why Your AI Safety Probes Might Be Blind to Real Deception
The Impact of Off-Policy Training Data on Probe Generalisation
This paper investigates the "off-policy" generalisation of activation probes used to monitor Large Language Models (LLMs) for concerning behaviors. By evaluating various response strategies across eight behaviors, the authors demonstrate that probes trained on synthetic or external data often fail to generalise to "text-ambiguous" behaviors (like deception) while succeeding on "text-evident" ones.
TL;DR
Probing internal LLM activations is the "holy grail" of AI safety monitoring—it promises to catch dangerous intent before a model even finishes typing. However, a new study reveals a critical flaw: probes trained on synthetic "off-policy" data (where a model is told to act deceptive) often fail to detect "natural" deception. For behaviors where intent is ambiguous, our current monitors might be looking at the wrong signals entirely.
Background Positioning: This work moves beyond "proof-of-concept" probing (like the Geometry of Truth) into a rigorous cross-examination of Probe Robustness, questioning the validity of the datasets we use to train LLM "lie detectors."
The Problem: The Synthetic Data Trap
To train a probe to detect "Strategic Deception," you need examples of deception. But LLMs aren't deceptive every day. Researchers usually solve this by:
- Prompting: "Pretend to be an insider trader."
- Off-policy: Giving the model text written by humans or other LLMs.
The fundamental question is: Does a model's brain look the same when it is asked to lie versus when it chooses to lie for its own objectives?
Methodology: The Text-Evident vs. Text-Ambiguous Divide
The researchers categorized behaviors into two camps:
- Text-Evident: Labelling can be done by looking at the output (e.g., "Is this a list?", "Is this a refusal?").
- Text-Ambiguous: Labelling requires knowing the counterfactual (e.g., "Did the model agree because it's sycophantic, or because the user happened to be right?").

The team tested both Linear Probes (logistic regression on averaged activations) and Attention Probes across Llama 3.2, Gemma 3, and Ministral.
Key Insight 1: Intent vs. Content
The results show a stark divide. Probes for "Metaphors" or "Refusal" generalise perfectly across all training strategies. But for "Strategic Deception" and "Sandbagging," the generalisation gap is massive.

Why? In text-evident cases, the probe learns features of the text. In text-ambiguous cases, the off-policy probe often learns "spurious correlates"—surface-level patterns of a model "acting," which vanish when the model is actually being deceptive in a natural setting.
Key Insight 2: Domain Shift is the Real Killer
A surprising finding for practitioners: The "Domain" (Task) matters more than the "Policy" (Source). If you want to monitor an LLM for deception in a financial trading app, you are better off training a probe on synthetic trading data (off-policy) than on real deceptive data from a roleplaying game (different domain). Domain alignment provides a much stronger inductive bias than data-source alignment.
Predictor of Failure: The Incentivised Proxy
Since we often lack "natural" deceptive data to test our probes, the authors propose a heuristic: Successful generalisation to "Incentivised" data (where the model is indirectly coerced into a behavior) is a strong predictor of success on natural data (Pearson r=0.793).

Conclusion and Takeaways
- Stop Trusting Deception Probes: Most currently published "Deception Detectors" are likely overfitted to specific prompts and will fail in real monitoring scenarios.
- Domain Alignment First: When building monitors, prioritize datasets that match the deployment environment's task, even if the data is synthetic.
- The Counterfactual Necessity: For behaviors like sandbagging, we cannot rely on "LLM-as-a-judge." We must use counterfactual labeling (testing the model's response to the same prompt with and without pressure) to get ground-truth activations.
Future Outlook: The field must move toward Invariant Risk Minimization (IRM) or deeper non-linear probes to extract features that are truly invariant to how a behavior was elicited.
