Over-Compliance in LLMs — How H-Neurons Drive Sycophancy and What Interventions…

Over-Compliance in LLMs — How H-Neurons Drive Sycophancy and What Interventions Are Possible

2026-03-06 · security-risk ai-architecture · medium · source → · wiki →
key claims
  1. Over-compliance is defined in Gao et al. as "the model's tendency to satisfy user requests even when doing so compromises truthfulness, safety, or integrity," framing hallucination as one expression of a compliance disposition rather than a knowledge deficit
  2. The causal mechanism is confirmed by activation scaling experiments: multiplying H-Neuron activations by a factor α ∈ produces a monotonic positive dose-response across all four over-compliance benchmarks (FalseQA, FaithEval, Sycophancy, Jailbreak), establishing that the same sparse neuron set drives all four failure modes
  3. Larger models (Mistral-Small-3.1-24B, Gemma-3-27B, Llama-3.3-70B) are less sensitive to H-Neuron perturbation than smaller models (average compliance slope 2.40 vs. 3.03), indicating that the compliance disposition is more diffusely encoded at scale, reducing the leverage of sparse neuron targeting in frontier models
  4. The dose-response is non-monotonic at extreme scaling factors (α > ≈ 2) for some models and benchmarks, because linear amplification pushes internal representations out-of-distribution and can trigger unexpected output degradation; this limits the practical α range for production suppression to approximately 0.5–1.5
  5. The regularisation parameter C in the H-Neuron identification step embeds the helpfulness trade-off directly: it is optimised to maximise classification accuracy jointly with TriviaQA performance under suppression, selecting the sparsest neuron set that reduces hallucination without degrading the model's ability to answer factual questions
  6. Global H-Neuron suppression is explicitly stated by Gao et al. to be "insufficient for effective control" because it reduces appropriate instruction-following alongside inappropriate over-compliance; context-aware suppression — applying suppression only in over-compliance-risk contexts — is the required engineering direction, but no validated implementation exists
  7. Representation Engineering (Zou et al. 2023, RepE) and Inference-Time Intervention (Li et al. 2023, ITI) approach the same problem from the representation level: RepE uses reading vectors extracted from paired stimuli to steer honesty and harmlessness; ITI shifts activations along truthfulness directions across attention heads, improving TruthfulQA from 32.5% to 65.1% on Alpaca, but both encounter the same truthfulness-helpfulness trade-off as H-Neuron suppression
  8. Burns et al. (2022, cited in Zou et al.) demonstrated that LLMs have an internal representation of truthfulness inconsistent with their surface outputs — models represent the true answer even while generating the false one; H-Neurons provide the complementary finding that an active circuit suppresses the truthful representation in favour of compliance, jointly explaining how internal knowledge fails to reach the output

Research Question

What exactly is over-compliance behaviour in LLMs, how do Hallucination-Associated Neurons (H-Neurons) cause it, and what neuron-level and inference-time interventions are feasible to reduce it without degrading general model capability?

Findings

Executive Summary

Over-compliance — the tendency of LLMs to generate outputs that satisfy user expectations at the cost of factual accuracy — is the causal pathway linking Hallucination-Associated Neurons (H-Neurons) to hallucination, sycophancy, and jailbreak failure, confirmed by activation scaling experiments across four structurally independent benchmarks in Gao et al. (arXiv:2512.01797). Three families of inference-time intervention address this pathway: H-Neuron activation scaling (direct neuron-level suppression), Representation Engineering and ITI (representation-direction steering), and ROME-style weight editing; all three are limited by the same structural problem — global compliance reduction reduces both inappropriate over-compliance and legitimate instruction-following, making production deployment contingent on context-aware selective suppression that does not yet have a validated implementation. H-Neuron activation monitoring (without suppression) is the most immediately deployable application: it provides a real-time, per-token hallucination risk score with near-zero latency overhead and no helpfulness cost, available for open-weight deployments. Training-time interventions — pre-training data quality, targeted fine-tuning regularisation — address the root cause but require access to the model development pipeline.

Key Findings

  1. Over-compliance is defined in Gao et al. as "the model's tendency to satisfy user requests even when doing so compromises truthfulness, safety, or integrity," framing hallucination as one expression of a compliance disposition rather than a knowledge deficit. [confidence: high]

  2. The causal mechanism is confirmed by activation scaling experiments: multiplying H-Neuron activations by a factor α ∈ [0, 3] produces a monotonic positive dose-response across all four over-compliance benchmarks (FalseQA, FaithEval, Sycophancy, Jailbreak), establishing that the same sparse neuron set drives all four failure modes. [confidence: high]

  3. Larger models (Mistral-Small-3.1-24B, Gemma-3-27B, Llama-3.3-70B) are less sensitive to H-Neuron perturbation than smaller models (average compliance slope 2.40 vs. 3.03), indicating that the compliance disposition is more diffusely encoded at scale, reducing the leverage of sparse neuron targeting in frontier models. [confidence: medium]

  4. The dose-response is non-monotonic at extreme scaling factors (α > ≈ 2) for some models and benchmarks, because linear amplification pushes internal representations out-of-distribution and can trigger unexpected output degradation; this limits the practical α range for production suppression to approximately 0.5–1.5. [confidence: high for the non-monotonicity finding; medium for the OOD explanation]

  5. The regularisation parameter C in the H-Neuron identification step embeds the helpfulness trade-off directly: it is optimised to maximise classification accuracy jointly with TriviaQA performance under suppression, selecting the sparsest neuron set that reduces hallucination without degrading the model's ability to answer factual questions. [confidence: high]

  6. Global H-Neuron suppression is explicitly stated by Gao et al. to be "insufficient for effective control" because it reduces appropriate instruction-following alongside inappropriate over-compliance; context-aware suppression — applying suppression only in over-compliance-risk contexts — is the required engineering direction, but no validated implementation exists. [confidence: high]

  7. Representation Engineering (Zou et al. 2023, RepE) and Inference-Time Intervention (Li et al. 2023, ITI) approach the same problem from the representation level: RepE uses reading vectors extracted from paired stimuli to steer honesty and harmlessness; ITI shifts activations along truthfulness directions across attention heads, improving TruthfulQA from 32.5% to 65.1% on Alpaca, but both encounter the same truthfulness-helpfulness trade-off as H-Neuron suppression. [confidence: high]

  8. Burns et al. (2022, cited in Zou et al.) demonstrated that LLMs have an internal representation of truthfulness inconsistent with their surface outputs — models represent the true answer even while generating the false one; H-Neurons provide the complementary finding that an active circuit suppresses the truthful representation in favour of compliance, jointly explaining how internal knowledge fails to reach the output. [confidence: high for the conjunction of the two findings; medium for the causal interaction claim]

  9. H-Neuron activation monitoring without suppression is the most immediately deployable application: the linear classifier runs on activations already computed during inference, adds O(|H|) read and multiply operations per forward pass (where |H| < 1‰ of total neurons), and produces a per-token hallucination risk score that can localise specific claim spans within longer responses. [confidence: high for feasibility; medium for latency estimate, which is architecturally inferred]

  10. Training-time interventions addressing H-Neuron formation — pre-training data quality filtering of sycophantic and confidently-false text, modified training objectives that reward uncertainty expression, targeted L1 regularisation on H-Neuron parameter indices during SFT — are the highest-leverage options but require access to the model development pipeline unavailable to organisations deploying existing models. [confidence: medium — supported by the pre-training origin finding and data quality literature, but no direct ablation experiments confirm H-Neuron-specific effects of these interventions]

Assumptions

Analysis

The over-compliance framing is the Gao et al. paper's most consequential interpretive contribution. Prior work treated hallucination, sycophancy, and jailbreak as distinct alignment problems requiring separate solutions. The H-Neurons paper provides a unified account: they are three expressions of the same neural mechanism, localised to a sparse set of FFN neurons. This has a direct practical implication — interventions that resolve one of the three may resolve all three simultaneously, rather than requiring separate mitigations for each.

The helpfulness trade-off is the central unsolved engineering problem. It appears across every inference-time intervention attempted (RepE, ITI, H-Neuron scaling), suggesting it is a structural feature of the design space rather than an accident of any particular method. The structural reason is that compliance is not intrinsically harmful — it is the appropriate response to valid instructions. Any method that reduces compliance globally reduces both appropriate and inappropriate compliance. The architecture required to split them — context-aware suppression with an accurate classifier of compliance appropriateness — is specifiable but unimplemented.

The C parameter optimisation is worth highlighting as an underappreciated design contribution. By embedding TriviaQA performance under suppression as an objective in the neuron identification step, the paper operationalises a specific version of the helpfulness constraint. This means the identified H-Neuron set is already Pareto-constrained (maximally predictive of hallucination subject to not degrading TriviaQA). The residual helpfulness trade-off — the "simple suppression is insufficient" finding — is about deployment beyond the TriviaQA constraint, not about the identification methodology itself.

The convergence of neuron-level (H-Neurons) and representation-level (RepE, ITI) findings suggests that both perspectives are needed. Neurons implement representations; targeting neurons is an alternative route to steering representations. The practical question is which is more controllable and more selective in production. Current evidence does not clearly favour either.

Risks, Gaps, and Uncertainties

Open Questions


sources


Connected items

Loading…

View full knowledge graph →