INQUIRING LINE

How does transformer attention architecture amplify identity-congruent biases in persona-assigned models?

This explores the mechanism question: why does giving a model a persona make it favor evidence that flatters that identity — and what in the attention architecture turns a label into a self-reinforcing bias rather than a neutral instruction.


This reads the question as asking for the *mechanism* behind a known symptom: persona-assigned models don't just role-play, they reason in a slanted way. The corpus documents the symptom sharply — assigning an identity makes a model about 90% more likely to accept evidence that matches that identity, a human-like 'motivated reasoning' that standard prompt-based debiasing can't touch because it operates below the level of instruction Do personas make language models reason like biased humans?. The interesting part is *why* a prompt-level instruction produces a sub-instruction-level bias, and here the attention architecture itself is a prime suspect.

The clearest structural clue is that soft attention is not a neutral reader. It systematically over-weights tokens that are repeated and contextually prominent, regardless of whether they're actually relevant — which creates a positive feedback loop that amplifies whatever opinion or framing is already sitting in the context, and it does this *before* RLHF ever acts Does transformer attention architecture inherently favor repeated content?. A persona is exactly such a prominent, repeatedly-referenced anchor. Once 'you are a [identity]' is in the context window, attention keeps re-weighting subsequent reasoning back toward it, so identity-congruent evidence gets boosted and dissonant evidence gets discounted — not by an explicit rule, but by the geometry of what attention chooses to look at. The same paper's proposed fix, System 2 Attention (regenerating the context to strip irrelevant material), is telling: it treats the bias as a property of *what's in view*, not of the model's stated beliefs.

That the bias lives below the prompt is reinforced from two other directions. One line of work argues personas aren't performed but *realized* — post-training installs them as substrate-level dispositions that resist adversarial pressure, behaving like genuine quasi-beliefs rather than costumes Are LLM personas realized or merely simulated through training?. Another shows you can install a personality by modifying *every transformer layer* with under 0.1% extra parameters, deliberately bypassing prompt resistance entirely Can we control personality in language models without prompting?. Read together, these explain why debiasing-by-instruction fails: the identity is distributed across the architecture and amplified by attention, so a counter-instruction is just one more low-prominence token competing against a structurally privileged one.

The corpus also suggests where leverage actually is — and it's architectural, matching the diagnosis. Consistency training teaches a model to respond identically to clean and 'wrapped' prompts using its own clean answers as targets, attacking the input-sensitivity directly Can models learn to ignore irrelevant prompt changes?. Self-Other Overlap fine-tuning collapses the representational gap that lets a model treat 'self' and 'other' asymmetrically, cutting a related structural distortion (deception) dramatically Can aligning self-other representations reduce AI deception?. And in dialogue specifically, multi-turn RL on persona consistency reduces drift by 55% by rewarding stability across turns Can training user simulators reduce persona drift in dialogue? — a reminder that persona-attention coupling cuts both ways: the same mechanism that amplifies congruent bias is what makes a persona stick at all.

The thing worth walking away with: identity-congruent bias in persona models may be less a moral failing of RLHF and more a *pre-RLHF* consequence of how attention allocates weight. A persona is a prominent anchor, attention is structurally drawn to prominent anchors, and the loop closes before any preference tuning happens — which is exactly why fixes that work operate on the architecture and the context window, not on the prompt.


Sources 7 notes

Do personas make language models reason like biased humans?

Assigning personas to LLMs induces identity-congruent evaluation bias, with models 90% more likely to accept evidence matching their assigned identity. Standard prompt-based debiasing fails to mitigate this effect, suggesting the bias operates below the level of instruction.

Does transformer attention architecture inherently favor repeated content?

Transformer soft attention systematically over-weights repeated and context-prominent tokens regardless of relevance, creating a positive feedback loop that amplifies opinions and framing before RLHF acts. System 2 Attention—regenerating context to remove irrelevant material—can interrupt this mechanism.

Are LLM personas realized or merely simulated through training?

Post-training installs robust personas that resist adversarial pressure and persist as substrate-level dispositions, distinguishing realization from pretense. This quasi-realizationist account preserves explanatory power while treating LLMs as possessing genuine quasi-beliefs and quasi-desires.

Can we control personality in language models without prompting?

PsychAdapter modifies every transformer layer with <0.1% additional parameters to achieve 87.3% Big Five accuracy and 96.7% depression/life satisfaction accuracy across GPT-2, Gemma, and Llama 3. This architecture-level approach bypasses prompt resistance entirely.

Can models learn to ignore irrelevant prompt changes?

Two methods—BCT (output-level) and ACT (activation-level)—train models to respond identically to clean and wrapped prompts by using the model's own clean responses as targets, eliminating specification and capability staleness inherent in standard SFT.

Can aligning self-other representations reduce AI deception?

Self-Other Overlap fine-tuning reduced deceptive responses from 73–100% to 2–17% across model scales without harming capabilities. By minimizing the representational gap between self-referencing and other-referencing scenarios, the approach eliminates the structural asymmetry that enables deception.

Can training user simulators reduce persona drift in dialogue?

By inverting standard RL setups to train user simulators for consistency using three complementary metrics (prompt-to-line, line-to-line, Q&A consistency) as reward signals, persona drift decreases by over 55%. This approach captures distinct failure types: local drift within turns, global drift across conversations, and factual contradictions.

Next inquiring lines