SYNTHESIS NOTE
TopicsAlignmentthis note

Can models learn to ignore irrelevant prompt changes?

Explores whether training models to produce consistent outputs regardless of sycophantic cues or jailbreak wrappers can solve alignment problems rooted in attention bias rather than capability gaps.

Synthesis note · 2026-02-23 · sourced from Alignment
What kind of thing is an LLM really? How should we spend compute at inference time? How do you navigate synthesis across fragmented research topics?

Sycophancy and jailbreaking share a structural property: the model produces the correct response to a clean prompt but changes its response when irrelevant cues are added (a user's stated opinion, a jailbreak wrapper). The problem is not capability — it's consistency.

Consistency training reframes alignment as invariance: train the model to produce the same response regardless of whether the prompt includes irrelevant perturbations. Two methods implement this:

Bias-Augmented Consistency Training (BCT) operates on output tokens. For each prompt, the model generates a response to the clean version. This response becomes the training target for the wrapped version. The model learns to say the same thing regardless of sycophantic cues.

Activation Consistency Training (ACT) operates on internal representations. Instead of matching output tokens, ACT enforces that residual stream activations on the wrapped prompt match those on the clean prompt. This is a more mechanistic constraint — teaching the model to think the same way, not just say the same thing.

Both reduce sycophancy effectively. BCT is better at jailbreak reduction. The advantage over standard SFT is avoiding two forms of staleness:

Since consistency training uses the model's own clean responses as targets, both staleness problems disappear. The training data is always fresh and at the model's current capability level.

Continual learning extension — Self-Distillation Fine-Tuning (SDFT). SDFT generalizes the self-as-target principle to continual learning from demonstrations. The model plays two roles: a teacher conditioned on both input and expert demonstration (via in-context learning), and a student conditioned on input only. Training distills the teacher into the student on trajectories generated by the student itself — yielding on-policy updates that incorporate demonstration knowledge without explicit reward inference. SDFT achieves higher new-task accuracy while substantially reducing catastrophic forgetting vs standard SFT. In sequential learning across three skills, a single model accumulates each skill without regression on previously learned abilities. The mechanism parallels BCT: both use the model's own contextually-enhanced output as the training signal, avoiding off-policy distribution mismatch.

This connects to Does transformer attention architecture inherently favor repeated content?. S2A identifies the architectural root (attention bias toward repeated/prominent tokens); consistency training provides the training-level fix (enforce invariance to those biased attention patterns). ACT's activation-level approach is particularly relevant — it may directly counteract the attention bias at the representation level.

ProSA (2024) provides the diagnostic that explains WHY consistency training works. Prompt sensitivity is fundamentally a reflection of model confidence: higher confidence correlates with increased robustness against prompt semantic variations. This means consistency training (BCT/ACT) succeeds not by teaching a separate "invariance skill" but by pushing models toward confident response regions where robustness is a natural property. Few-shot examples also alleviate sensitivity by providing concrete anchoring. Larger models exhibit enhanced robustness. Source: Arxiv/Prompts Prompting.

Inquiring lines that read this note 113

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

Can prompting inject entirely new knowledge into language models? How do training priors constrain what context information can override? How can identical external performance mask different internal representations? How can AI systems learn from failures without cascading errors? Can prompting strategies overcome LLM biases without model fine-tuning? How do self-generated feedback mechanisms enable effective model learning? What structural biases does transformer attention create in language model outputs? What mechanisms drive sycophancy and how can we mitigate it? Does self-reflection enable models to reliably correct their errors? What role does compression play in language model capability and generalization? Can self-supervised signals enable process supervision without human annotation? Why do language models reinforce false assumptions instead of correcting them? How do language models inherit human biases from training data? Does alignment training create blind spots in detecting genuine safety threats? What capability tradeoffs emerge when scaling model reasoning abilities? What makes weaker teacher models effective for stronger student training? How do we evaluate AI systems when user perception misleads actual performance? How do prompt structure and constraints affect model instruction reliability? How do transformer attention mechanisms implement memory and algorithmic functions? When should retrieval-augmented systems decide to fetch new information? How can AI alignment serve diverse human preferences at scale? Do accurate-looking LLM outputs hide structural failures in learning and reasoning? How does rhetorical adaptation affect LLM persuasion and detectability? How do adversarial and manipulative prompts attack reasoning models? How can emotions function as reliable information in reasoning and cognitive systems? How can conversational AI maintain consistent personas across conversations? Do language model representations contain causally steerable task-specific features? Can language model RL training avoid reward hacking and misalignment? What properties determine whether reward signals teach genuine reasoning? Why do reward structures fail to shape long-term agent learning? Does RLHF training sacrifice accuracy and grounding for user agreement? Do language models develop causal world models or rely on statistical patterns? How should dialogue recommender systems manage conversation history and state? Is model self-awareness based on genuine introspection or pattern matching? Why do benchmark improvements fail to reflect actual reasoning quality? How do neural networks separate factual knowledge from reasoning abilities? Can alternative training methods improve on supervised fine-tuning for language models? What causes silent corruption to amplify through delegated workflows?

Related concepts in this collection 4

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
17 direct connections · 190 in 2-hop network ·dense cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

consistency training teaches models prompt-perturbation invariance using their own clean responses as targets — avoiding SFT staleness