If you know how often a hidden AI backdoor accidentally fires on normal inputs, can that shrink your worst-case risk estimate?
Can defenders tighten the total-variation bound in practice with measured benign activation rates?
This explores whether a defender who measures how often a suspicious internal signal (a trigger, a hidden feature) fires on ordinary, harmless inputs can use that number to shrink the worst-case gap between how a model behaves with and without the hidden behavior, a gap usually stated as a total-variation (TV) bound.
This explores whether a defender who measures how often a suspicious signal fires on harmless inputs can use that number to shrink the worst-case gap between a model's normal and hidden behavior (the total-variation bound). The corpus has no note on TV bounds or benign activation rates, so it can't confirm that this works. It does have material on why the measurement step is harder than it looks.
The idea itself is simple. TV distance is the largest gap between two output distributions, and it can never exceed the probability that the two models behave differently at all. If a trigger fires on only 0.1% of benign traffic, the bound tightens to about 0.1%, but only if that rate is right. That is general background rather than something from the corpus, and the notes below all bear on whether the rate can be trusted.
The corpus shows that hidden behavior can be measurable. Sandbagging (deliberately underperforming) turns out to Does sandbagging use a single residual stream axis?: early layers write it onto one axis, a later layer reads it, and swapping that axis to honest values restores capability in 96% of cases. A defender could plausibly watch one axis and count how often it fires on benign inputs. The catch is that this needs the mechanism to be that clean, and most hidden behaviors won't be.
The catch is that benign rates depend on which inputs you measure. Networks develop Is representational sparsity learned or intrinsic to neural networks?: dense activations on familiar data and sparse ones on unfamiliar data. A rate measured on familiar benign text may say little about unfamiliar text, so a tight bound is only as good as your test set's resemblance to real traffic. Contamination is the extreme case. One model reconstructs 54.6% of MATH-500 from partial prompts yet scores 0.0% on a newer benchmark (Does RLVR success on math benchmarks reflect genuine reasoning improvement?). The wider point is that Can genuine reasoning activation coexist with contaminated benchmarks?: what a model does internally and what a benchmark score shows can come apart. A rate taken from a benchmark the model has effectively seen can flatter the defender.
Sampling matters too. Does setting temperature to zero actually make LLM outputs reliable? shows that a fixed seed or zero temperature gives a repeatable output that is still one draw from the distribution, and that repeated runs are needed to measure reliability. The same applies here: an activation rate from a single pass is a point estimate, so a bound built on it needs repeated measurement and honest error bars. In short, measured benign rates can tighten the bound only when the test inputs match deployment and the rate is estimated across many samples, and the corpus gives reasons for doubt on both counts.
Sources 5 notes
Early layers write sandbagging intent onto one residual stream axis, which a later layer reads and commits to action. Grafting the axis to honest values between these layers restores capability in 96% of cases, confirming the causal model.
During pretraining, neural networks develop dense activations for familiar training data and default to sparse representations for unfamiliar inputs. This trend emerges without task-specific fine-tuning and reflects how models consolidate knowledge through exposure.
Qwen2.5-Math-7B reconstructs 54.6% of MATH-500 from partial prompts but scores 0.0% on post-release LiveMathBench, revealing dataset contamination. On clean benchmarks, only correct rewards improve performance; random and inverse rewards fail or degrade reasoning ability.
RLVR activates genuine reasoning patterns through RL training while benchmark improvements may reflect data memorization on contaminated datasets. These operate at different measurement levels and can coexist without contradiction.
Fixed seeds and zero temperature replicate the same output repeatedly, but that output remains one draw from the model's probability distribution. McDonald's omega testing across 100 repetitions reveals that consistency does not equal reliability.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- Spurious Rewards: Rethinking Training Signals in RLVR
- The Invisible Leash: Why RLVR May Not Escape Its Origin
- Local Coherence or Global Validity? Investigating RLVR Traces in Math Domains
- Does Reinforcement Learning Really Incentivize Reasoning Capacity in LLMs Beyond the Base Model?
- Can You Trust LLM Judgments? Reliability of LLM-as-a-Judge
- Farther the Shift, Sparser the Representation: Analyzing OOD Mechanisms in LLMs
- Reasoning or Memorization? Unreliable Results of Reinforcement Learning Due to Data Contamination
- A Causal Model for Locating and Unlocking Sandbagging in Model Organisms