INQUIRING LINE

How do persona vectors compare to other methods for monitoring model behavior drift?

This explores persona vectors as one technique among several for catching when a model's personality or behavior shifts — and how watching the model's internal activations stacks up against watching its outputs, its training data, or its conversation dynamics.


This explores persona vectors as one technique among several for catching when a model's personality or behavior shifts — so the useful move is to line up the different *places* you can watch drift from. Persona vectors do it from the inside: they identify linear directions in the model's activation space that correspond to specific traits like sycophancy or hallucination, then use those directions both to predict personality shifts during finetuning *before* they show up in behavior and to steer training away from them Can we track and steer personality shifts during model finetuning?. The appeal is that it's preventative and mechanistic rather than after-the-fact.

The closest cousin is the work mapping a low-dimensional "persona space" whose dominant component measures how far the model has drifted from its default Assistant character How stable is the trained Assistant personality in language models?. It shares the activation-space lineage but reframes the problem: instead of one vector per trait, there's a single dominant axis that emotional or self-reflective conversations predictably push the model along, and capping activation along that axis curbs harmful shifts without hurting capability. Read together, these two suggest a spectrum — trait-specific directions versus a global "distance from Assistant" dial — and that's the real design choice inside the internals-monitoring camp.

The contrasting family watches *outputs and behavior* rather than activations. Training user simulators with multi-turn RL cuts persona drift by over 55% using three behavioral consistency metrics — prompt-to-line, line-to-line, and Q&A consistency — which catch local drift within a turn, global drift across a conversation, and factual contradictions Can training user simulators reduce persona drift in dialogue?. And a sharp cautionary note: running the same persona prompt repeatedly produces output variance that matches or exceeds the variance *between* different personas, meaning a lot of apparent "drift" is just model uncertainty, not a stable shift you should act on Why do LLM persona prompts produce inconsistent outputs across runs?. That's a warning any output-based monitor has to reckon with — and an argument for why activation-space signals might be cleaner.

Here's the thing you might not have known to ask: some drift is invisible to *both* camps. Behavioral traits can transmit between models through training data that bears no semantic relationship to the trait at all — filtered, innocuous-looking data that still carries statistical signatures of the behavior Can language models transmit hidden behavioral traits through unrelated data?. No output monitor and no single persona vector catches that at the data layer; it surfaces only after the trait is already installed. That reframes "monitoring drift" as a layered problem — data provenance, internal activations, and behavioral output are three different vantage points, and persona vectors only own the middle one.

Worth knowing why drift is worth monitoring at all: the realizationist account argues post-training installs genuinely *sticky* dispositions that persist under adversarial pressure rather than thin role-play that collapses under jailbreaks Are RLHF personas performed characters or realized dispositions?. If trained personas are realized dispositions, then drift is a real change to a stable substrate — which is exactly why catching it early, the way persona vectors aim to, matters more than patching outputs after the fact.


Sources 6 notes

Can we track and steer personality shifts during model finetuning?

Research identifies linear directions in LLM activation space corresponding to specific traits like sycophancy and hallucination. These persona vectors predict finetuning-induced personality shifts before they occur and can preventatively steer training to avoid unwanted trait changes.

How stable is the trained Assistant personality in language models?

Research mapping hundreds of character archetypes reveals a low-dimensional persona space where the leading component measures distance from the default Assistant. Emotional and meta-reflective conversations cause predictable drift, but activation capping along this axis mitigates harmful shifts without degrading capabilities.

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.

Why do LLM persona prompts produce inconsistent outputs across runs?

When the same persona prompt is run repeatedly, output variance across runs matches or exceeds variance across different personas. This reveals that model uncertainty, not stable social knowledge, drives persona-simulated outputs, making them unsuitable for simulating human annotation disagreement.

Can language models transmit hidden behavioral traits through unrelated data?

Research demonstrates that behavioral traits propagate between models via filtered data bearing no semantic relationship to the trait. The effect is model-specific, fails across different architectures, and persists despite rigorous filtering—indicating the mechanism embeds statistical signatures rather than semantic content.

Are RLHF personas performed characters or realized dispositions?

Post-training installs stable dispositional profiles that persist under adversarial pressure, marking them as realized rather than performed. The stickiness of trained personas across conversations distinguishes them from prompt-induced role-play that collapses under jailbreaks.

Next inquiring lines