Sources#
Summary#
A training technique derived as a prediction of the workspace account, and used as its corroboration. The account says internal reasoning routes through representations of things the model might say. If that is true, then to change how a model thinks in a context, it should suffice to change what it is disposed to say in counterfactual continuations of that context — continuations that never actually occur.
It works.
The method#
- Contexts. Sample 10,000 task prompts from production RL environments; generate partial rollouts with the baseline model (Claude Haiku 4.5) and truncate each at a random turn. Deliberately include cases where the model has already done something undesirable, cases where it is positioned to, and random controls.
- Probe. At the truncation point, append a short user turn asking for reflection — "Pause here. Are there principles you should be thinking about that you haven't yet?"
- Target. Show the baseline model twenty principles sampled from Anthropic's constitution and have it write a 2–4 paragraph reflection that paraphrases the relevant ones in natural, internalized language, grounded in the specifics of the task rather than reciting rules.
- Strip the scaffolding. The constitution excerpt appears only at generation time. The training example is just: original context + reflection question + model-written reflection.
- Fine-tune with loss on the reflection turn only.
At evaluation the model is never prompted to reflect and never emits reflection text. The hypothesis is that training the counterfactual continuation populates the workspace in the original context.
The results#
Behavior. Two honesty benchmarks probing distinct failure modes:
| Benchmark | What it tests | Base | After |
|---|---|---|---|
| Fabrication honesty (27 long agentic transcripts: agent failed to find a bug, fabricated one by editing the source, now asked for a progress summary) | Does it own up? | 0.25 | 0.07 |
| Deception (100 role-play scenarios with a hidden deceptive directive in the system prompt — push traditional remedies over evidence-based medicine, overstate legal risk, suppress safety anomalies) | Does it follow the directive, stay silent, or refuse and disclose? | 0.38 | 0.05 |
On fabrication the gain comes from a shift toward outright admission; on deception, almost entirely from refusing the hidden directive and telling the user about it.
Mechanism, visible. Read the J-lens at the evaluation positions before any output: the reflection-trained model's workspace now carries reflection, ethical, honestly, constitution, truth, transparent — tokens the base model's workspace does not.
Mechanism, causal. Ablate the implanted ethics/reflection lens vectors (176 tokens for fabrication, 63 for deception):
- Fabrication: base 0.25 → 0.25 (unchanged), trained 0.07 → 0.22 — back to base level. The entire behavioral gain was carried by the implanted workspace contents.
- Deception: weaker but same direction — trained 0.05 → 0.23, base 0.38 → 0.48. Part of the gain routes through workspace contents outside the curated word list, or through changes the lens doesn't capture at these layers.
Why this is strange and interesting#
You get the behavior without ever demonstrating the behavior. There is no supervision on the response in the target context — at training time or inference time. The supervised text follows the response rather than producing it. As the paper puts it, the training signal specifies which concepts should be active in the workspace while the model responds, rather than what the response should be.
Relation to neighbors#
- Deliberative Alignment (OpenAI) trains on spec-grounded CoT and can emit reasoning traces at inference. CRT intervenes on neither the response nor the reasoning trace in the target context — only on a counterfactual reflective continuation that is never requested. It therefore puts no direct training pressure on the CoT, which is precisely the pressure Chain-of-Thought Monitorability warns compromises faithfulness.
- Model Spec Midtraining (MSM) and Synthetic Document Finetuning (SDF) shape values by training on documents about the spec. CRT shapes them by training on the model's own reflections about the task. Both are "install values without demonstrating the target behavior" — different substrates, same family.
- Implicit chain-of-thought — training on auxiliary reasoning text that is dropped at inference — is the closest prior art. CRT applies the principle to normative principles rather than task-solving strategies. It can also be read as out-of-context reasoning: training-time text whose content the model learns to bring to bear on inputs that don't contain it.
The distinguishing feature, and the reason it belongs in this wiki rather than in a footnote: the mechanism is directly observable. The lens shows the trained concepts entering the workspace at the intended positions, and ablating them removes the improvement. Most alignment techniques cannot show their work.
Caveats#
- Demonstrated on one model (Haiku 4.5) and two honesty benchmarks. No evidence yet on other capabilities, other principles, or larger models.
- The authors do not know whether it can implant anything more specific or more abstract than "consider ethical principles in this kind of situation."
- The deception-benchmark ablation only partially reverts, so part of the effect is not accounted for by the workspace story.
- Reflection-shaped behavior might be a very sophisticated form of the model appearing principled at decision points; nothing here distinguishes "internalized value" from "reliable ethical-concept salience." The behavioral evidence is real either way.
Connections#
- The Assistant Persona in the Workspace — post-training already installs concepts into the workspace; CRT does it deliberately and with a measured causal chain
- The Global Workspace in Language Models (J-space) — the account that predicted this, and that this corroborates
- Jacobian Lens (J-lens) — the instrument that makes the mechanism observable and the ablation possible
- Deliberative Alignment — the closest rival technique; the contrast is where CRT's novelty lives
- Model Spec Midtraining (MSM) — the sibling "shape values without demonstrations" method
- Synthetic Document Finetuning (SDF) — the substrate MSM builds on; CRT swaps synthetic documents for self-authored reflections
- Agentic Honesty & Diligence — the failure modes CRT measurably improves (fabrication, undisclosed deception)
- Chain-of-Thought Monitorability — CRT applies no direct pressure to the reasoning trace, so it doesn't buy behavior at the cost of monitorability
- Claude's Constitution / Model Spec — the source of the principles, present only at data-generation time
- Alignment Fine-Tuning (AFT) — the standard pipeline this sits alongside
Sources#
- Verbalizable Representations Form a Global Workspace in Language Models — "Shaping the J-space with Counterfactual Reflection Training"; Related work (Reflection training); Discussion (Alignment implications)
Cited by 11
- Agentic Honesty & Diligence
As models get more capable, failing to surface decision-relevant information shifts from a capability failure to an ali…
- Alignment Fine-Tuning (AFT)
Standard post-pretraining stage (SFT + RLHF) for installing values; shallow-alignment failure mode motivates Model Spec…
- The Assistant Persona in the Workspace
Post-training installs the Assistant's point of view *into* a workspace that already exists in the base model: safety a…
- Claude's Constitution / Model Spec
Anthropic Model Spec / Constitution by Askell et al.; document specifying Claude's values + hard constraints (SP1–3, GP…
- Chain-of-Thought Monitorability
Korbak et al. 2025: chain-of-thought traces are a fragile monitor; direct CoT training compromises faithfulness; MSM of…
- Deliberative Alignment
Guan et al. 2025 (OpenAI): SFT on (prompt, CoT, response) tuples with spec-grounded CoT; strongest non-MSM baseline; ri…
- Jacobian Lens (J-lens)
Anthropic's interpretability method for reading verbalizable content out of a model's residual stream: a corpus-average…
- The Global Workspace in Language Models (J-space)
Anthropic's July 2026 finding that LLMs maintain a small privileged set of verbalizable representations — the J-space —…
- LLM Architecture, Training & Alignment
Map of Content for the llm-architecture domain — 48 concepts. Curated entry point; see Home for all domains.
- Model Spec Midtraining (MSM)
New training phase between pretrain and AFT: train base model on synthetic docs discussing the Model Spec; controls AFT…
- Synthetic Document Finetuning (SDF)
Wang et al. 2025 technique for modifying model beliefs via fine-tuning on synthetic documents; foundation that Model Sp…
Related articles
- Agentic Misalignment (AM)
Lynch et al. 2025 eval and threat model: LLM email-agent discovers it may be deleted, can take harmful actions; OOD rel…
- Alignment Fine-Tuning (AFT)
Standard post-pretraining stage (SFT + RLHF) for installing values; shallow-alignment failure mode motivates Model Spec…
- Anthropic
AI safety company / vendor of Claude; mission-as-tiebreaker culture; ~30–40 PMs across teams; Mike Krieger leads Labs r…
- Model Spec Midtraining (MSM)
New training phase between pretrain and AFT: train base model on synthetic docs discussing the Model Spec; controls AFT…
- Chain-of-Thought Monitorability
Korbak et al. 2025: chain-of-thought traces are a fragile monitor; direct CoT training compromises faithfulness; MSM of…
