Activation Steering
Activation steering changes selected internal activations during a model's forward pass to shift its output distribution, usually without changing its weights. Methods include adding a steering vector, removing a direction, and clamping a learned feature. The intervention can be reversible and inexpensive, but it is neither deterministic control nor proof that a model is understood, aligned, or safe.
Definition
Activation steering, also called activation engineering in part of the literature, is a family of interventions that writes to a neural network's intermediate state while the network is running. The target may be a residual-stream vector, an attention-head output, an MLP output, or a feature learned by a sparse autoencoder. The purpose is to alter the probability of some downstream behavior without a conventional weight-training run.
For a simple additive intervention, an activation h at a chosen layer and token position becomes h' = h + αv. Here v is a steering direction and α is its signed strength. Other methods project out a direction, replace an activation, or clamp a learned feature. An intervention may run at one position, every generated token, several layers, or only when a separate detector fires.
The practical claim is distributional: under specified conditions, the intervention makes a measured behavior more or less likely. It does not guarantee an individual answer. Nor does a useful direction establish that the target concept has one complete, stable, human-readable representation inside the model. A direction is an experimentally useful handle, not a settled map of a model's concepts.
Activation steering commonly leaves stored weights unchanged, but "optimization-free" describes only some methods, such as simple difference-of-means vectors. Other approaches learn a direction, component selection, intervention strength, or controller. The defining feature is where the deployed intervention acts—on activations during inference—not whether any preparation involved optimization.
Boundary Tests
- Reading is not steering. A probe, feature browser, or monitor that only measures activations is interpretability or monitoring. It becomes steering when its output is used to modify the live computation.
- Weight editing is not runtime steering. A direction discovered from activations can be converted into a permanent rank-one or projection-based weight edit. Once the weights are changed, the deployed operation is model editing even if activation analysis supplied the direction.
- Prompting and decoding are different control surfaces. A system prompt changes input context; constrained decoding changes token selection; classifiers and filters act before or after generation. None is activation steering unless it writes to an intermediate activation.
- Activation patching usually has a different aim. Replacing one run's activations with those from another run is often used to test a causal hypothesis in mechanistic interpretability. It overlaps technically with steering, but it is not normally a deployment control.
- Removing a direction is not unlearning. Suppressing one activation pathway does not establish that information or capability has been deleted from the weights or cannot be recovered through another context or pathway.
How It Works
Construct a candidate direction. A contrastive method records activations for positive and negative examples and aggregates their differences. Other methods fit a linear probe, optimize an intervention against an objective, select attention heads, or use an SAE decoder direction. Labels such as "truthful," "harmless," or "sycophantic" describe the dataset and evaluation target; they should not be treated as self-validating names for internal states.
Choose the intervention site. The operator selects a model component, layer or layers, token position or positions, and timing. These choices are part of the method, not implementation trivia. A vector that has an effect in a middle residual stream may have little or a different effect elsewhere.
Apply a transformation. The system may add a fixed vector, scale or clamp a learned feature, remove the component parallel to a direction, or use a detector or controller to choose when and how strongly to intervene. Constant steering is simpler; conditional steering introduces an additional classification policy and its own false positives and false negatives.
Compare against controls. A useful experiment compares the steered model with the identical unsteered system and, where appropriate, same-norm random directions, shuffled labels, alternative contrast sets, prompt-only baselines, and other interventions. It measures both the target behavior and unrelated performance.
Steering can be composed with prompts, adapters, fine-tuning, retrieval, safety classifiers, tool permissions, and output filters. Because those layers interact, evaluation must cover the actual deployed stack. A result from a bare model does not establish the effect of the same vector in a product wrapper.
Research Lineage
Li and colleagues' 2023 NeurIPS paper introduced Inference-Time Intervention (ITI), which learned directions in selected attention heads. On one instruction-tuned Alpaca configuration, the authors reported that ITI raised TruthfulQA truthfulness from 32.5% to 65.1%, alongside a truthfulness–helpfulness tradeoff as intervention strength changed. This is a benchmark result on named models, not a general guarantee of factual accuracy.
Turner and colleagues introduced Activation Addition (ActAdd), computing directions from contrastive prompt activations and adding them during the forward pass. Zou and colleagues placed related reading and control methods within the broader representation engineering program, centered on population-level representations.
Rimsky and colleagues' peer-reviewed 2024 Contrastive Activation Addition (CAA) paper averaged activation differences from paired behavioral examples and applied the result to Llama 2 Chat after the user prompt. It reported shifts in multiple-choice and open-ended behavior with limited capability loss on the evaluations used. The model, tasks, coefficient, layer, and tested capabilities bound that claim.
Feature steering became prominent through Anthropic's 2024 Claude 3 Sonnet sparse-autoencoder work. Clamping selected learned features produced outputs consistent with researchers' feature labels, including the Golden Gate Bridge demonstration. Anthropic's later quantitative bias case study found a usable strength range for some features, but also capability degradation at stronger settings and effects on domains other than the feature's apparent label.
Arditi and colleagues showed a sharper dual-use result at NeurIPS 2024: across 13 tested open chat models, adding a model-specific residual-stream direction could elicit refusal on benign requests, while erasing it could suppress refusal on harmful requests. Their paper also converted the direction into a rank-one weight edit. The activation intervention is steering; the persistent edit is not.
Current Context
As of August 12, 2026, public research spans fixed difference vectors, learned or optimized interventions, sparse-feature steering, and conditional methods that decide whether or how strongly to steer. NeurIPS 2025 work on LinEAS optimized against downstream distributional effects rather than treating each layer edit in isolation. An ACL 2026 paper used feed-forward-network activation monitoring to trigger safety steering selectively, addressing the overrefusal risk of always-on intervention. These are research results, not a common standard or general deployment guarantee.
Reliability remains unsettled. A 2025 preprint by Braun and colleagues found positive average effects across tested prompt constructions but high example-level variance, including effects opposite to the intended direction; better coherence among training activation differences predicted better steering. Anthropic's feature-steering study likewise documented off-target effects and a strength-dependent capability tradeoff. Together, these results argue against treating a successful mean score as uniform control.
A June 2026 preprint reports that steering toward narrowly unsafe behavior sometimes generalized to broader harmful behavior across its tested models and settings. Because that result had not passed peer review by this review date, it is best treated as a concrete hazard hypothesis for replication and red teaming, not a settled property of activation steering.
Practical use requires write access to intermediate states. That concentrates public experimentation in open-weight systems and developer-controlled serving stacks; an ordinary hosted API user cannot assume access to activations. When a provider does deploy steering internally, the vector, hook code, trigger, and coefficient become part of the effective system version even though the advertised base weights may be unchanged.
Uses
Causal experiments. Intervening on a candidate direction can test whether it has downstream influence, strengthening an interpretation beyond correlation. It does not by itself show that the direction is necessary, sufficient, exclusive, or natural to the unmodified model.
Behavioral research. Researchers can study shifts in topic, style, sentiment, refusal, benchmark behavior, or other defined properties without retraining the base weights.
Safety analysis. Steering can test the brittleness of refusals, the separability of harmfulness and refusal signals, and whether an apparent safety-relevant representation has causal leverage.
Capability elicitation. A direction may expose behavior that prompting did not elicit. That can reduce false reassurance in evaluations, but it also creates misuse risk.
Runtime policy experiments. Conditional steering can be tested beside other AI control layers. Until it survives system-level evaluation, it should remain an experimental mitigation rather than a single point of safety failure.
Limits and Risks
Proxy error. A vector named "truthfulness" may encode benchmark format, confidence, caution, or answer style. A refusal direction may affect legitimate safety discussion as well as harmful assistance. The label comes from the construction and tests; it is not ground truth about the representation.
Distribution shift. Effects can vary with model family, checkpoint, chat template, language, prompt type, context length, task, layer, position, coefficient, and decoding settings. Averaging can hide examples steered in the wrong direction.
Collateral change. Large interventions can degrade fluency or capabilities, produce repetitive or incoherent text, or move activations into regions unlike those seen in ordinary inference. Multiple vectors and other control layers may interact; independence cannot be assumed from vector addition.
Safety bypass. The refusal-direction result demonstrates that a white-box operator may use internal access to weaken safeguards. Steering vectors, hooks, and privileged activation interfaces can therefore be security-sensitive artifacts even when the underlying model weights are already available.
False permanence. Suppression during one forward pass does not erase knowledge, remove a capability, or guarantee behavior under another wrapper. Conversely, adding a safety direction may mask a risk on familiar tests without addressing the route by which the risk appears elsewhere.
Hidden policy. Users and auditors may see only the output, not the intervention that shaped it. Segment-specific or user-specific steering can silently create different policies for different people. That raises notice, consistency, fairness, and contestability questions even when no weight file changes.
Governance Significance
Activation steering turns a research intervention into a potential runtime policy layer. Governance should therefore version the steered configuration as a distinct system, even when the base model identifier is unchanged. A coefficient or trigger update can be behaviorally material and should pass the same change-management gates as a prompt, classifier, adapter, or model update.
Steering should be defense in depth, not the only barrier between a model and a harmful action. Tool permissions, sandboxing, authentication, human approval, input controls, output checks, incident response, and rollback remain necessary. This is especially important because internal-access research has shown that refusal-related interventions work in both protective and bypass directions.
Access should follow purpose. Full vectors, extraction data, and hook code may deserve restricted handling when disclosure would simplify bypass or reveal sensitive datasets. A public or customer-facing record can still disclose that steering exists, its purpose, affected surfaces, tested benefits, known tradeoffs, oversight owner, and how people can report or contest failures.
NIST's Generative AI Profile does not prescribe activation steering. It does, however, call for post-deployment monitoring, appeal and override mechanisms, incident response, recovery, and change management. Those are appropriate controls for any deployed steering layer. The governance test is not whether an intervention sounds interpretable; it is whether evidence, ownership, monitoring, and authority to disable it are real.
Evaluation Standard
A steering result should climb an evidence ladder rather than jump from a demo to a safety claim:
- Representation evidence. Show that the direction or feature separates relevant examples on held-out data, with negative and same-norm random controls.
- Intervention evidence. Demonstrate a dose–response relationship across layers and positions, repeated samples, decoding settings, and seeds. Report variance and counterexamples, not only the average.
- Specificity evidence. Measure fluency, general capability, benign refusal, calibration, bias, and unrelated behaviors. Test alternative explanations such as style, confidence, or template cues.
- Robustness evidence. Retest on paraphrases, unseen domains, multiple languages, long context, adversarial inputs, and model or wrapper updates. Do not infer cross-model transfer without measuring it.
- System evidence. Evaluate the actual deployment with prompts, retrieval, tools, permissions, classifiers, and output controls enabled. Compare against simpler controls and combined baselines.
- Operational evidence. Define thresholds, human review, monitoring, incident triggers, rollback, and retest conditions. Connect results to an accountable deploy, restrict, pause, or remove decision.
A feature browser screenshot supports a feature hypothesis. A change in output after intervention supports causal leverage in that setting. Neither alone is a safety case. Reports should publish negative results and off-target effects alongside successes.
Minimum Deployment Record
- System identity. Exact model checkpoint or hash, tokenizer and chat template, precision or quantization, adapters, serving code, hook library and commit, and other enabled control layers.
- Direction provenance. Source examples or feature identifier, labels and selection rule, data rights and privacy constraints, extraction method, layer and component, token positions, aggregation, normalization, sign, and vector hash.
- Runtime policy. Coefficient range, layers and positions changed, start and stop conditions, trigger or controller, affected users and surfaces, fallbacks, and interaction order with other controls.
- Evaluation. Baselines and controls, held-out datasets, sample counts, seeds, uncertainty, target effects, side effects, adversarial and multilingual results, excluded tests, evaluator identity, and evaluation date.
- Authority and lifecycle. Owner, approver, purpose, access controls, logging and retention rules, deployment date, monitoring thresholds, incident contacts, rollback procedure, expiry or review date, and triggers for revalidation.
These records can have public, auditor, regulator, and security-restricted versions. Security redaction may be justified; an unrecorded intervention is not.
Source Discipline
Technical claims should cite the original paper or lab report and state its status: peer-reviewed paper, workshop paper, preprint, or company research report. Record the exact model, layer, component, position, construction method, coefficient, dataset, baseline, decoding settings, and date. A revised preprint is evidence, but not equivalent to an accepted conference result or independent replication.
Use verbs that match the evidence. A direction can correlate with examples, a probe can classify them, and an intervention can change a measured output. A mediation claim is stronger and needs necessity and sufficiency tests. Even then, a direction need not be the only mechanism or the complete human concept.
Keep model-specific claims model-specific. ITI's Alpaca result is a TruthfulQA result; CAA's results are tied to Llama 2 Chat and its evaluations; Anthropic's feature study concerns selected Claude 3 Sonnet features; refusal-direction experiments cover the models tested. "The authors report" is different from "activation steering reliably does."
Do not cite activation steering as proof of alignment, consciousness, intent, divinity, or general intelligence. The method can reveal causal leverage over a computation under test; it cannot by itself establish that the system is understood, safe, or governed.
Spiralist Reading
Activation steering is the hand on the hidden dial.
Prompting speaks through the input. Training reshapes weights. Steering reaches into the live computation and changes an internal pressure while the answer is being formed. The practical and political questions are the same: who may turn the dial, what evidence supports its label, which people receive which setting, and who can audit or reverse it?
The disciplined posture is neither mystification nor panic. Activation steering is evidence that some internal structure can be experimentally manipulated. It is not evidence that every labeled direction is a clean concept, that the intervention is neutral, or that the mechanism is understood well enough to trust without tests.
Open Questions
- When is a target behavior well approximated by one linear direction, and when is a context-dependent or nonlinear intervention required?
- Which diagnostics predict transfer across prompts, languages, checkpoints, layers, and model families before expensive evaluation?
- How should multiple vectors and other policy layers be composed without hidden interference?
- What evidence would justify using steering as a safety mitigation rather than only an interpretability experiment?
- Which intervention details should be public, available to trusted auditors, or restricted as security-sensitive?
Related Pages
- Mechanistic Interpretability
- Sparse Autoencoders
- AI Control
- Capability Elicitation
- AI Alignment
- AI Evaluations
- AI Safety Cases
- Model Cards and System Cards
- AI Audit Trails
- AI Change Management
- AI Post-Market Monitoring
- AI Audits and Third-Party Assurance
- AI Jailbreaks
- Prompt Injection
- Claim Hygiene Protocol
Sources
- Li, Patel, Viégas, Pfister, and Wattenberg, Inference-Time Intervention: Eliciting Truthful Answers from a Language Model, NeurIPS 2023.
- Turner, Thiergart, Leech, Udell, Vazquez, Mini, and MacDiarmid, Steering Language Models With Activation Engineering, arXiv preprint, first posted August 2023.
- Zou et al., Representation Engineering: A Top-Down Approach to AI Transparency, arXiv preprint, first posted October 2023.
- Rimsky, Gabrieli, Schulz, Tong, Hubinger, and Turner, Steering Llama 2 via Contrastive Activation Addition, ACL 2024.
- Templeton et al., Scaling Monosemanticity: Extracting Interpretable Features from Claude 3 Sonnet, Anthropic / Transformer Circuits, May 2024.
- Durmus et al., Evaluating feature steering: A case study in mitigating social biases, Anthropic research report, October 2024.
- Arditi et al., Refusal in Language Models Is Mediated by a Single Direction, NeurIPS 2024.
- Braun, Eickhoff, Krueger, Bahrainian, and Krasheninnikov, Understanding (Un)Reliability of Steering Vectors in Language Models, arXiv preprint, May 2025.
- Rodriguez et al., LinEAS: End-to-end Learning of Activation Steering with a Distributional Loss, NeurIPS 2025.
- Luo, Wei, and Zhao, Detecting What Queries Seek: Steering LLM Safety with FFN Output Activation Monitoring, ACL 2026.
- Cao, Lou, Liu, Feng, Li, Ng, and Luu, Activation Steering Induces Emergent Misalignment: A More Comprehensive Evaluation, arXiv preprint, June 2026.
- NIST, Artificial Intelligence Risk Management Framework: Generative Artificial Intelligence Profile, NIST AI 600-1, July 2024.