Representation steering is an inference-time control method that changes a model’s internal activations so its behaviour moves in a chosen direction without retraining the full network. The main search vocabulary—representation steering, activation steering, steering vectors, activation vectors, concept directions, inference-time control, activation engineering, LLM steering—describes a family of interventions built on one hypothesis: some behavioural properties are represented in sufficiently stable directions or local fields that deliberately changing those internal states can change the model’s output.
In the simplest activation steering setup, researchers estimate a vector associated with a property—perhaps by subtracting mean activations from contrasting examples—and add a scaled version of that vector at a selected layer during generation. Work such as Steering Language Models With Activation Engineering showed that lightweight activation additions can influence topics, sentiment and other behaviours. But later evidence makes the boundary clearer: a global steering vector can work on average and backfire for a meaningful fraction of contexts, long-form generation can drift away from the desired attribute, and multiple steering objectives can interfere.
The SEO terms—activation engineering, LLM steering vector, concept activation vector, inference-time steering, activation addition, representation control, steering direction, context-aware steering—are useful only if we keep diagnosis and control separate. A probe direction that predicts a concept is not automatically a good steering direction. A steering vector that changes one benchmark attribute can damage fluency, factuality or unrelated capabilities. 2026 work on steering vector fields and spherical steering explicitly challenges the idea that one additive direction should be applied everywhere. Representation steering is therefore best understood as a control problem over a nonlinear, context-dependent state space.
1. Steering starts where probing stops
A probe asks whether a property can be read from a representation. Steering asks whether changing the representation can change the property. The first is diagnostic; the second is intervention.
A direction can be highly predictive and useless for control if it combines several correlated features or if the model does not use that direction causally. Conversely, a direction can be effective for control without being the best diagnostic classifier.
2. Activation addition is the simplest steering equation
Let hidden state h at some layer and token position be modified as
h' = h + α v,
where v is a steering vector and α controls strength. Positive α moves in the chosen direction; negative α attempts to move oppositely.
The equation is simple enough to hide almost every scientific question: how v was estimated, where it is inserted, how large α should be, whether h+αv is a natural state, and which behaviours must remain unchanged.
3. Difference-in-means creates a natural concept direction
Collect activations from positive examples and matched negative examples. A common steering vector is
v = mean(h_positive) - mean(h_negative).
The direction captures the average displacement associated with the contrast. It is easy to compute and sensitive to every systematic difference between the two groups.
Matched data are therefore crucial. If positive examples differ in topic, length or syntax as well as the target property, the vector mixes those differences.
4. Contrast pairs are a causal-design problem before they are a linear-algebra problem
To estimate a “formal tone” direction, compare content-matched formal and informal versions rather than unrelated formal documents and casual messages. To estimate sentiment, preserve topic where possible. To estimate language choice, hold semantic content fixed.
The vector cannot know which group difference the researcher meant.
5. Paired differences can reduce between-example noise
For matched pairs (h_i^+,h_i^-), compute each difference and average:
v = (1/n) Σ_i (h_i^+ - h_i^-).
This cancels some content-specific variation and focuses the estimate on the paired transformation. It remains vulnerable to systematic changes bundled into the transformation.
6. Probe normals and mean-difference vectors are related but not identical
A linear probe learns a discriminative direction optimised for predicting labels under its loss and regularisation. A mean-difference vector estimates a generative group displacement. In equal-covariance Gaussian settings, the optimal classifier involves covariance-weighted mean difference rather than raw mean difference.
Which direction steers better depends on the activation geometry and the downstream network. Diagnostic optimality does not imply control optimality.
7. Activation Engineering demonstrated lightweight inference-time control
Steering Language Models With Activation Engineering explored adding activation directions at inference time rather than updating model weights. The work showed meaningful changes in sentiment, topics and other properties with relatively simple interventions.
The important architectural idea is reversibility: the base weights stay unchanged. Remove the intervention and the model returns to its original parameters.
8. Inference-time control is different from model editing
Steering changes state during a run. Knowledge editing changes parameters or persistent memory so future runs behave differently without requiring the same activation intervention.
Steering is temporary and context-dependent. Editing aims for persistent modification. The evaluation criteria overlap—specificity, reliability, collateral effects—and should not be conflated.
9. Steering is also different from activation patching
Patching usually inserts a counterfactual activation from another run to test causal mediation. Steering deliberately constructs a state change to control behaviour.
A patch can inspire a steering direction, but explanation and control remain different receiver jobs.
10. Layer choice defines where the control enters the computation
Early layers are close to lexical and local processing. Middle layers can contain richer semantic state. Late layers can be closely coupled to output preparation. Steering the same vector at different depths can produce different effects.
Layer sweeps are therefore standard, but choosing the strongest layer on the same evaluation set risks overfitting. Discover and validate separately.
11. Token position defines which state receives the intervention
One can steer every generated token, only the prompt tokens, the final prompt position, selected semantic spans or a moving current-token state. These interventions affect different computational routes.
A steering vector estimated at one token type or position may not transfer unchanged to another.
12. Persistent steering across generation can accumulate effects
Add αv at every generated position and each modified token changes the context for later generation. The effect compounds through autoregressive feedback.
This can strengthen attribute control and create drift, repetition or degradation over long outputs. Long-form evaluation is essential.
13. One-shot steering asks a cleaner but weaker question
Intervene at one layer and one position, then let the model continue naturally. This makes causal interpretation cleaner because only one hidden state is directly modified.
The effect can dissipate as later computation overwrites the state. Repeated steering trades interpretability for control persistence.
14. Steering strength should be treated as a dose
Sweep α from negative through zero to positive values. Measure the target attribute and unrelated quality metrics. A useful direction should show a predictable dose–response over a meaningful range.
One dramatic example at a very large coefficient is weak evidence. Large α can push states far outside their natural distribution.
15. Natural activation scale provides a reference for α
Compare ||αv|| with typical residual-state norm and with natural within-class activation differences. A steering perturbation the same size as the whole hidden state is qualitatively different from a small local move.
Report dimensionless ratios or natural quantiles when possible.
16. Additive steering changes hidden-state norm as well as direction
For h’ = h+αv, the norm changes according to ||h'||²=||h||²+2αh·v+α²||v||². The intervention therefore changes both semantic direction and activation magnitude.
If downstream layers are sensitive to norm, behavioural effects can reflect this geometric side effect.
17. Layer normalisation partly changes the meaning of norm shift
Transformers often normalise residual states before sublayers. Normalisation can reduce some magnitude effects and does not make additive steering equivalent to a pure angular rotation because the direction entering attention/MLPs still changes.
Intervention site relative to normalisation matters.
18. Spherical steering treats the hidden state as a directional object
2026 work on Spherical Steering motivates geometry-aware control that rotates hidden states on a hypersphere rather than simply adding a vector. Geodesic or rotational movement can preserve hidden-state norm while changing direction.
The method addresses one structural limitation of activation addition: semantic control and magnitude perturbation are entangled under Euclidean addition.
19. Great-circle interpolation provides a norm-preserving path
For unit directions u and w, spherical interpolation moves along the great-circle arc between them rather than through the interior chord. A corresponding intervention can preserve norm while controlling angular displacement.
Whether the activation manifold is truly spherical is an empirical question. Geometry-aware steering is a design prior, not proof of the model’s natural latent geometry.
20. Confidence gating makes steering conditional on the current state
A controller can reduce steering when the concept detector is uncertain or when activation lies far from the data used to estimate the direction. This limits unnecessary intervention.
Gating itself is another learned or designed decision system and requires calibration.
21. Static global vectors assume one direction works everywhere
A traditional steering vector v is constant across prompts and states. That assumes the attribute has approximately one linear direction throughout the relevant representation region.
For simple attributes or narrow domains, this can work well. For context-sensitive concepts, the same direction can help one input and hurt another.
22. 2026 steering-vector-field work challenges the global-direction assumption
Steering Vector Fields for Context-Aware Inference-Time Control in LLMs argues that static vectors can backfire on a nontrivial fraction of inputs and degrade in long-form or multi-attribute settings. It proposes context-dependent vector fields derived from the gradient of a concept-scoring function.
The central shift is from “one concept, one vector” to “one concept, a local direction that depends on current hidden state”.
23. A vector field defines a local control direction at every state
Instead of constant v, define v(h). Steering becomes
h' = h + α v(h).
The controller can bend with representation geometry, adjusting direction when the concept’s local boundary changes.
This increases flexibility and increases the risk that the controller itself learns a complex policy whose behaviour must be audited.
24. Gradient fields provide one principled local direction
If a differentiable concept score s(h) estimates the desired attribute, ∇_h s(h) points locally toward increasing the score fastest under Euclidean geometry.
This is not automatically the safest direction for preserving other behaviour. The gradient can exploit fragile directions or move off-manifold.
25. Local control needs a metric
“Steepest” depends on geometry. Euclidean gradient, covariance-normalised gradient, manifold tangent gradient and norm-preserving projected gradient can differ.
Representation steering therefore connects directly to Manifold Representation Learning.
26. Multi-attribute steering creates vector interaction
To steer attributes A and B, one might add αv_A+βv_B. If the directions are non-orthogonal, changing one coefficient also moves along the other feature. Downstream nonlinearities create additional interactions.
Evaluate joint steering factorially rather than assuming effects add.
27. Orthogonalising vectors changes their semantics
Gram–Schmidt can remove overlap between two steering directions. The orthogonalised vector for B is no longer the original B direction; it is “B with the component aligned to A removed”.
This can reduce interference and can delete legitimate shared structure. Orthogonalisation is a representational choice, not neutral cleanup.
28. Projection can protect a known subspace
If a controller should not change a protected property represented by subspace P, project the steering direction into the orthogonal complement. This creates a constrained intervention.
The guarantee is only as good as the protected-subspace model. Information about the property can exist outside the estimated subspace.
29. Steering can trade target control for general capability
Strong intervention can reduce language quality, factual accuracy, reasoning or code correctness. 2026 work on Steering Code LLMs with Activation Directions reports that preferences can be linearly steerable while overly strong interventions can reduce output quality.
Always evaluate capability preservation alongside target success.
30. The optimal α is model-, layer- and task-specific
One coefficient does not transfer automatically across models because activation scales, layer norms and feature geometry differ. Even within one model, the best strength can vary by prompt.
Adaptive strength can improve control and adds a controller whose calibration needs testing.
31. Long-form generation is a stress test for steering stability
A five-token completion can obey a steering direction while a 1,000-token answer drifts, overcorrects or degrades. Autoregressive feedback changes the hidden-state distribution as controlled text accumulates.
Evaluate target attribute over time, not only once at the end.
32. Steering can self-amplify through generated context
If steering makes early text more formal, that formal text becomes context encouraging later formality even without further intervention. Persistent steering can then over-amplify the attribute.
Control schedules can decay α or gate it based on current state.
33. Steering can also decay because later layers overwrite the intervention
One-shot hidden-state modifications can be attenuated by subsequent attention and MLP computation. Repeating the intervention at multiple layers or tokens can improve persistence.
Multi-layer steering changes the mechanism and increases opportunity for collateral effects.
34. Layer ensembles can distribute control more gently
Instead of one large intervention at one layer, apply smaller aligned interventions across several layers. This can reduce local distortion while maintaining total behavioural effect.
The layer weights define a control policy and should be validated out of sample.
35. Concept direction stability should be tested across prompts
Estimate steering vectors from different subsets. Compare cosine similarity and behavioural effect. A stable concept should not require one lucky contrast set.
Low vector consistency can indicate context dependence, data confounding or weak signal.
36. Stability across model seeds tests whether the control interface is reproducible
Independently trained models can represent similar properties in rotated or different directions. A steering vector from model A will not normally transfer numerically to model B without alignment.
Compare the concept’s controllability, not only raw direction, across seeds.
37. Cross-model vector transfer needs representation alignment
Use Procrustes, CCA-like mappings or learned adapters to align spaces before transferring a direction. Then test whether steering effect transfers.
This creates a strong bridge to Representation Similarity Analysis.
38. Steering specificity requires a collateral-effects battery
Measure the target attribute plus factuality, coherence, verbosity, sentiment, refusal behaviour, language, style, task accuracy and other properties relevant to deployment.
A successful controller moves the target substantially while changing protected behaviours as little as possible.
39. Reversibility is an advantage of activation steering
Because weights are unchanged, remove the hook and the base model is restored. This makes experimentation lower risk than permanent editing.
Stateful systems, generated context or cached activations can still preserve consequences of earlier steering inside an ongoing session.
40. Reversibility does not guarantee safety
A temporary internal intervention can still generate harmful or incorrect output. Reversibility concerns model parameters, not consequences of emitted actions or text.
Control systems need external safety and authority gates.
41. Steering safety mechanisms is dual-use
Activation interventions can be studied to understand refusal or safety behaviours. Detailed recipes for disabling safeguards can facilitate misuse.
Educational treatment should focus on evaluation, robustness, representation geometry and safe-control design rather than operational bypass procedures.
42. Steering should have a refusal-to-steer condition
If the current state lies far from the data used to estimate the controller, the system can reduce intervention or abstain. Out-of-distribution detection for hidden states can therefore be part of steering safety.
A controller that always acts assumes its concept geometry is globally valid.
43. Steering evaluation should separate efficacy and specificity
Efficacy: how much did the desired attribute change? Specificity: how little did protected attributes change? One score should not hide the trade-off.
Plot a Pareto frontier over α and control methods.
44. Quality preservation is a third axis
An intervention can be specific among measured attributes and still make output incoherent. Add independent quality metrics or human evaluation.
Control is useful only while the base capability remains operational.
45. Calibration asks whether a chosen α has predictable effect
Across examples, fit the relationship between α and target change. Large variance means one global coefficient is unreliable.
Context-aware controllers aim to reduce this heterogeneity.
46. Representation steering audit
- What target attribute is being controlled?
- How are positive and negative examples matched?
- How is the direction estimated?
- Is the direction diagnostic or causally validated?
- Which model, layer and token position are intervened on?
- Is the intervention additive, rotational, projected or field-based?
- What is α relative to natural activation scale?
- What dose–response curve results?
- How does hidden-state norm change?
- Does the effect persist in long-form generation?
- How does the vector vary across contexts?
- What happens under multi-attribute steering?
- What collateral behaviours are measured?
- What quality/capability degradation occurs?
- What out-of-distribution or confidence gate exists?
- Is the intervention reversible operationally?
- What safety boundary limits deployment?
47. What students should remember
- Representation steering deliberately changes hidden state to control behaviour at inference time.
- Difference-in-means vectors are simple and confound every systematic difference in the contrast data.
- Probe directions and steering directions solve different optimisation problems.
- Layer, token position and steering strength are part of the control policy.
- Additive steering changes hidden-state norm as well as direction.
- Spherical steering aims to preserve norm through geometric rotation.
- Static global vectors assume one direction works across contexts.
- 2026 vector-field methods make the steering direction context-dependent.
- Long-form generation and multi-attribute control expose failures hidden by short benchmarks.
- Efficacy, specificity and quality preservation must be evaluated separately.
- Temporary control does not remove the need for external safety boundaries.
48. The deep principle
Representation steering turns interpretability into control. That makes the standard of evidence higher, not lower.
A useful steering direction is not merely one that moves a benchmark score. It is a controlled path through representation space whose target effect is predictable, whose collateral effects are measured, and whose geometry remains valid for the contexts in which it is used.
Advanced Technical Expansion I | Steering-Vector Estimation, Geometry and Context Dependence
The readable spine establishes representation steering as inference-time control. This first technical layer asks how a control direction is estimated and what geometry justifies using it. The central issue is often hidden by the simple equation h'=h+αv: one constant vector assumes the attribute corresponds to a sufficiently stable displacement across a region of representation space. The quality of the controller therefore depends on contrast design, covariance, local curvature, layer choice and the scale at which the concept is approximately linear.
A. Difference-in-means is an estimator with sampling uncertainty
Let positive activations have mean μ+ and negative activations μ-. The estimated steering direction is v_hat=μ_hat+−μ_hat-. Finite data introduce variance. Bootstrap the contrast examples, recompute v and measure the distribution of vector norms, angles and downstream effects.
A direction whose angle changes by forty degrees across resamples is weaker evidence than one stable within a few degrees. Behavioural stability can still exceed geometric stability if several nearby directions work similarly.
Report both vector stability and steering-effect stability.
B. Matched pairs reduce nuisance variance and expose treatment heterogeneity
For paired examples sharing content, define individual differences d_i=h_i^+−h_i^-. Their mean is the global direction; their covariance shows how much the local direction varies from pair to pair.
Large variance orthogonal to the mean indicates context dependence. Cluster the difference vectors. Several clusters can imply multiple local steering regimes rather than one concept axis.
C. Difference-vector PCA can reveal a concept subspace rather than one axis
Stack paired differences into a matrix and compute PCA or SVD. If one singular direction explains most variance, a one-vector controller is plausible. If several directions are required, the attribute may occupy a low-dimensional subspace.
Steering can then use a projection or context-conditioned combination within that subspace. A subspace preserves more variation and increases control complexity.
D. Covariance-weighted directions separate mean shift from background variance
If positive and negative activations share covariance Σ, Fisher’s linear discriminant direction is proportional to Σ^{-1}(μ+−μ-). Directions with large background variance are downweighted; stable discriminative directions are emphasised.
This can improve diagnostic separation and can produce poor steering if the downstream model responds to native mean displacement rather than whitened discrimination. Compare raw mean difference, covariance-normalised direction and probe normal empirically.
E. Whitening changes the control metric
Steering in whitened coordinates corresponds to a Mahalanobis-aware move in native space. A unit step along a low-variance direction becomes relatively large under whitening.
This can surface semantically important small-variance factors and can amplify brittle directions. The metric defining “small intervention” should be chosen relative to model behaviour, not only statistical convenience.
F. Probe normals solve a supervised separation problem
A linear probe direction w is selected to predict labels under a loss. It can exploit directions whose means differ little if covariance structure makes them predictive. It can combine several semantic cues into one decision axis.
Steering along w assumes moving in the decision-normal direction creates the semantic change. This is not guaranteed. Test the direction causally with dose–response and collateral metrics.
G. TCAV-style concept vectors measure sensitivity and are not automatically steering controls
Concept Activation Vectors are learned from concept examples and used with directional derivatives to measure model sensitivity to the concept direction. The method creates a human-defined concept subspace or vector and asks whether outputs depend on it.
Turning the same direction into an inference-time intervention adds a new claim: not only is the output sensitive to the concept direction, but deliberately moving along it changes behaviour specifically and predictably.
H. Decoder or unembedding directions provide native task-aligned controls
In language models, output-token logits are linear functions of late residual states under common architectures. Differences between unembedding vectors define native directions that promote one token relative to another.
These are guaranteed to affect immediate logits at the final layer and need not correspond to high-level concepts or stable earlier-layer controls. Steering earlier layers along an output direction can behave differently because intervening computation transforms it.
I. Causal patch directions can seed a steering hypothesis
If activation patching shows that clean–corrupt difference at one site restores a behaviour, the difference vector is a natural candidate steering direction. Average such causal differences across examples to estimate a robust control vector.
This has stronger causal motivation than an arbitrary probe direction and remains tied to the counterfactual used in patching.
J. Sparse-autoencoder features offer semantically interpretable steering handles
An SAE feature has a decoder direction and sparse coefficient. Increasing the coefficient and decoding the change yields a native activation intervention aligned with a learned feature.
This can improve semantic specificity and inherits SAE feature splitting, reconstruction error and non-uniqueness. Feature steering should be evaluated with the same rigor as raw vector steering.
K. Native feature directions and SAE decoder directions can disagree
Two SAE features can reconstruct similar native directions while activating in different contexts. Steering by decoder direction alone ignores encoder-side presence semantics.
A context-conditioned controller can activate an SAE feature only when the current state indicates its semantic preconditions are satisfied.
L. The linear-feature assumption should be tested with local perturbations
If a concept is represented linearly, small moves along v should change a concept score predictably over nearby states. Evaluate local directional derivatives and dose–response around many natural activations.
Large variation in derivative sign indicates the global direction crosses regions where its semantic meaning changes.
M. Concept geometry can curve through representation space
Imagine positive and negative states separated by a curved boundary. One global vector is tangent to the desired change only in a limited region. Far away, the same vector can cross the boundary obliquely or move in the wrong semantic direction.
This is the geometric motivation for context-aware steering fields: the control direction follows local representation structure instead of imposing one Euclidean translation everywhere.
N. A concept-score gradient defines the Euclidean steepest-ascent direction
For differentiable score s(h), the first-order change under perturbation δ is Δs≈∇s(h)·δ. Under a fixed Euclidean norm budget, choosing δ parallel to ∇s maximises first-order score increase.
This is a local optimisation result. It says nothing about preserving model quality or semantic specificity. The gradient can exploit adversarially sensitive directions.
O. Constrained local steering can preserve protected quantities to first order
If protected scores g1,…,gm should remain unchanged, project the target gradient into the null space of their gradients. The resulting direction increases the target while producing zero first-order change in protected scores under the local linear approximation.
Nonlinear effects and incomplete protected-score models limit the guarantee. This is a useful control design, not a universal safety proof.
P. Natural-gradient steering uses a state-dependent metric
If hidden-state coordinates have anisotropic sensitivity, Euclidean distance may not reflect meaningful intervention size. A metric matrix G(h) can define cost δᵀGδ. The steepest direction becomes proportional to G^{-1}∇s.
Choosing G from covariance, decoder sensitivity or a learned local metric creates different controllers. The metric encodes what variation should be considered cheap.
Q. Tangent-space steering tries to remain on a learned activation manifold
Estimate a local tangent subspace from nearby natural activations and project the steering direction into it. This can reduce moves into directions unsupported by data.
Local PCA is only an approximation and can remove rare but valid control directions. Evaluate whether tangent projection improves quality and target efficacy.
R. Spherical steering assumes norm should be preserved
If layer normalisation and empirical activation statistics make direction more semantically relevant than norm, rotating on a sphere can isolate angular change. The assumption should be tested: norm can carry information.
Compare additive and norm-preserving interventions at matched angular or behavioural effect. The better geometry is the one with lower collateral cost for the receiver.
S. Geodesic steering can be defined on other manifolds too
If a learned metric or manifold model is available, steer along geodesics or constrained paths under that geometry rather than straight Euclidean lines. This generalises the spherical idea.
Estimating the manifold reliably is difficult in the high-dimensional state spaces where steering is used. Geometry-aware control adds modelling assumptions that need validation.
T. Context dependence can be measured before building a vector field
Estimate local paired-difference vectors across prompts and compute their angular dispersion. Fit one global vector and measure per-example target effect. If effect sign frequently reverses or magnitude varies wildly, a static controller is poorly specified.
Context-aware complexity should be justified by measured heterogeneity, not added automatically.
U. Local vector clustering provides a simple context-aware controller
Cluster hidden states or paired-difference directions and learn one steering vector per cluster. At inference, select the vector associated with the nearest or most probable regime.
This is simpler than a fully continuous vector field and introduces routing errors near cluster boundaries.
V. A learned vector field is itself a policy model
When a network predicts v(h), steering is no longer one transparent vector. The controller has learned a nonlinear mapping from hidden state to intervention. It can overfit and encode unintended strategies.
Audit the controller with held-out contexts, smoothness tests, local direction visualisation and ablations. Control complexity reintroduces an interpretability problem.
W. Field smoothness is a useful robustness prior
Nearby hidden states should not receive wildly different steering directions unless the concept boundary genuinely changes sharply. Penalise or monitor local direction variation.
Excessive smoothness can blur real regime changes. As always, the prior trades flexibility against robustness.
X. Vector-field integrability is not required for control
A context-dependent steering field need not be the gradient of one global concept scalar. Non-conservative fields can still define local control. If the interpretation claims one global potential or concept score, integrability becomes relevant.
Test loop behaviour when a global semantic scalar is part of the claim.
Y. Multi-attribute control can be formulated as constrained optimisation
Rather than simply adding vectors, choose δ to increase target scores subject to limits on protected scores and intervention norm. In a local linear regime this becomes a small quadratic or linear optimisation problem.
This makes trade-offs explicit. It also depends on the quality of every score function used as a constraint.
Z. Commutativity of steering interventions should be tested
Apply steering A then B and compare with B then A. Pure addition at one fixed site commutes mathematically. In a nonlinear recurrent generation process, the order can change subsequent hidden states and outputs.
Order sensitivity is evidence of interaction between control objectives.
AA. Orthogonality does not guarantee behavioural independence
Two vectors can have zero dot product and still interact downstream through nonlinear computation. Conversely, non-orthogonal vectors can produce largely independent behaviours if the shared component is ignored by downstream readers.
Geometry is a diagnostic, not a behavioural guarantee.
AB. Steering direction can change across layers because the representation changes basis
A concept direction estimated at layer ℓ should not be copied numerically to layer ℓ+1 even when dimensionality matches. Intermediate components transform the representation.
Estimate layer-specific directions or learn an alignment map. Compare whether the concept becomes more linearly accessible or more causally steerable through depth.
AC. Cross-layer steering can follow a concept trajectory
Match concept directions across layers using paired activations, CCA/Procrustes alignment or semantic feature matching. Apply small interventions along the trajectory rather than one fixed vector.
This resembles following a field through depth and can reduce mismatch between layer-specific bases.
AD. Steering-vector stability should include effect stability, not only cosine
Two estimated vectors can have moderate cosine similarity and nearly identical behavioural effects because the downstream network is insensitive to their difference. Conversely, near-identical vectors can have different effects at a nonlinear boundary.
Always compare geometry with intervention outcome.
AE. Worked laboratory: probe normal versus mean-difference vector
Generate two Gaussian classes with shared anisotropic covariance. Compute raw mean difference and Fisher/probe direction. Evaluate classification and steering through a downstream nonlinear function designed to respond to the generative displacement.
The classifier direction can separate classes better while the mean displacement can steer the intended generative factor better. This demonstrates diagnosis/control divergence.
AF. Worked laboratory: curved concept boundary
Create points on a curved manifold where the target attribute corresponds to moving radially outward. A global horizontal vector helps one region and harms another. A local gradient field follows the correct radial direction everywhere.
Compare efficacy and intervention norm. The lab makes context dependence geometrically visible.
AG. Worked laboratory: additive versus spherical steering
Use hidden states with approximately fixed norm and a target score dependent on angle. Compare Euclidean addition and same-angle geodesic rotation. Measure target score, norm distortion and downstream function.
The experiment shows what norm-preserving steering buys when the task is truly angular.
AH. The steering-geometry evidence card
- Concept contrast: positive/negative or paired design.
- Estimator: mean difference, probe, SAE feature, gradient or patch-derived vector.
- Uncertainty: bootstrap vector and effect stability.
- Dimension: one vector, subspace or field.
- Metric: Euclidean, covariance-weighted, spherical or manifold-aware.
- Layer: intervention site and normalisation context.
- Scale: α relative to natural state variation.
- Context dependence: sign/magnitude heterogeneity across inputs.
- Interactions: multi-attribute geometry and order effects.
- Off-manifold risk: natural-neighbour or reconstruction diagnostics.
The first advanced layer therefore replaces “one concept, one vector” with a more careful hierarchy: some attributes genuinely support stable global directions; some need a subspace; some need context-dependent local directions; some are better treated as nonlinear controls. The correct representation is the simplest controller whose effect remains stable under the contexts, lengths and combinations the receiver actually needs.
Advanced Technical Expansion II | Control Evaluation, Long-Form Stability, Multi-Attribute Interference and Safe Deployment
A steering method becomes useful only after it is evaluated as a controller rather than as an interpretability demonstration. This second technical layer therefore focuses on reliability: target efficacy, collateral effects, long-form drift, context-dependent failures, calibration, multi-attribute interference, reversibility, distribution shift and safe operating boundaries. A steering vector is not judged by whether one cherry-picked completion changes. It is judged by whether the intervention behaves predictably across the operating region while preserving the rest of the model’s competence.
AI. Define efficacy with an independent target measure
Do not evaluate steering solely with the same classifier or concept score used to construct the direction. If a probe defines v and the same probe measures success, the intervention can exploit probe-specific geometry without changing the intended human concept.
Use independent labels, human evaluation, task outcomes or a separately trained evaluator. Agreement among several target measures strengthens the result.
AJ. Specificity requires named protected behaviours
A statement such as “minimal side effects” is empty until the protected set is defined. For style steering, protect factual accuracy, task completion and language. For code preference steering, protect test pass rate, security checks and syntactic validity.
The protected set should follow the deployment receiver, not whichever metrics are convenient to compute.
AK. Plot a target–collateral Pareto frontier over steering strength
For each α, measure target change and a composite or vector of collateral costs. One method can dominate another by achieving equal target effect with lower damage.
There may be no single optimal α. The frontier lets the user choose an operating point according to acceptable trade-off.
AL. Quality should be measured independently of semantic specificity
An intervention can leave protected semantic attributes unchanged while reducing grammaticality, coherence or code execution. Include generic quality metrics and human inspection.
Perplexity changes are informative and can miss task-specific degradation. Use receiver-relevant outcomes.
AM. Dose–response should be monotonic only where the representation supports it
For each prompt, record target effect across α. Some examples show a monotonic region followed by saturation or reversal. Define the safe operating interval from the data instead of assuming larger intervention means more of the concept.
Context-aware controllers can choose α within this local interval.
AN. Per-example backfire rate is more informative than average improvement alone
A global vector can improve mean target score while moving ten or twenty percent of examples in the wrong direction. Report the fraction of examples with negative target effect, not only average effect.
The 2026 vector-field motivation is precisely this heterogeneity: control quality should improve locally, not only on average.
AO. Effect variance can be decomposed into prompt, layer and sampling variance
Repeat generation seeds for each prompt when decoding is stochastic. Repeat vector estimation on resampled contrast sets. Compare layers. A controller can be stable geometrically and noisy behaviourally because generation randomness dominates.
Use hierarchical or mixed-effects analysis when several variance sources matter.
AP. Long-form evaluation should track the attribute through time
Segment long outputs by token window, paragraph or semantic section. Measure the target attribute and quality in each segment.
Three failure modes become visible: decay, where control weakens; runaway amplification, where the attribute grows excessively; and oscillation, where the generated context pushes the model between regimes.
AQ. Generated context makes steering a closed-loop system even when the vector is open-loop
The controller can add the same vector every step, but the model’s next state depends on text produced under previous interventions. The plant being controlled changes with the controller’s own outputs.
Control-theoretic thinking therefore becomes useful: monitor state, adapt gain and avoid unstable positive feedback.
AR. Open-loop steering uses a fixed schedule
Apply a predetermined α over tokens or layers. This is simple, reproducible and unable to react when the target has already been achieved or the current state becomes uncertain.
Open-loop controllers are appropriate when response is predictable and state measurement is unreliable.
AS. Closed-loop steering measures the current state and adjusts intervention
Use an attribute detector, concept score or state estimator to choose α or v(h) at each step. The controller can reduce intervention after reaching a target region.
The detector can be fooled or miscalibrated. Closed-loop robustness depends on both plant and sensor.
AT. A proportional controller gives a simple feedback baseline
If current target score is s and desired score s*, choose α=k(s*−s) within safety limits. This adjusts strength to error.
Nonlinear response, measurement delay and autoregressive feedback can cause overshoot. The simple controller is useful as a transparent baseline rather than a universal solution.
AU. Gain scheduling adapts control to context classes
Use different α ranges for different prompt types, layers or confidence regimes. This captures some context dependence without learning a full vector field.
Routing errors near regime boundaries should be evaluated explicitly.
AV. Multi-attribute steering needs factorial evaluation
For two attributes A and B, test four conditions: none, A only, B only, A+B. The interaction is the joint effect beyond what would be expected from the single conditions.
Repeat over α and β. One attribute can help another at weak strength and conflict at strong strength.
AW. Multi-objective control should report a surface, not one hand-picked coefficient pair
Plot target A, target B, quality and protected metrics over a grid of coefficients. Identify Pareto-efficient regions.
This makes interference visible and prevents a convenient single example from defining the method’s capability.
AX. Concept antagonism can be real rather than representational interference
Two attributes can be intrinsically hard to satisfy together—extreme brevity and exhaustive detail, for example. Steering trade-offs then reflect the task, not poor feature geometry.
Compare with prompted or fine-tuned baselines to distinguish inherent objective conflict from steering-specific interference.
AY. Prompting is a necessary baseline for steering
If a natural-language instruction can achieve the same target with lower collateral damage, activation steering may not be worth its complexity. Compare against prompt engineering, system instructions and decoding controls.
Steering is most compelling when it adds controllability unavailable or unreliable through ordinary interfaces.
AZ. Fine-tuning and adapters are persistent-control baselines
Low-rank adaptation or supervised fine-tuning can create stable behaviour at training cost and with parameter changes. Steering avoids retraining and can be less stable.
Compare data, compute, reversibility, specificity and deployment overhead. No control mechanism is universally best.
BA. Decoding parameters can imitate some style controls
Temperature, top-p and repetition penalties alter diversity and style. A steering method controlling verbosity or determinism should be compared with these simpler decoding knobs.
Control should be attributed to the representation intervention only after cheaper interfaces are ruled out as explanations.
BB. Distribution shift can rotate the effective concept direction
A vector estimated on English prose can perform differently on code, another language or dialogue. Re-estimate local differences and measure cosine/effect changes across domains.
Domain-specific controllers can be appropriate. The label should include the domain scope.
BC. Cross-lingual steering is a strong test of semantic abstraction
Estimate a concept direction in one language, align or directly apply it in another and measure effect. Transfer suggests some shared geometry; failure can reflect language-specific bases or concept differences.
Do not assume translation labels define identical cultural or pragmatic concepts across languages.
BD. Model updates invalidate steering calibration
Retraining, instruction tuning, quantisation or distillation can shift activation scales and concept geometry. Recalibrate layer, vector and α after model changes.
A steering controller is versioned software tied to a particular internal interface.
BE. Quantisation can change intervention scale without changing nominal vector values
Low-precision activations and altered layer norms change the effective perturbation. Compare dose–response before and after deployment compression.
Internal-control methods require deployment-environment validation, not only full-precision research-model results.
BF. Throughput overhead matters for context-aware steering
A constant vector add is nearly free. A vector field requiring gradient computation or another neural controller can add latency and memory. Per-token closed-loop measurement can be expensive in long sequences.
Report inference cost alongside control quality. The best research controller may be impractical for production.
BG. Cached keys and values complicate layer-wise steering
During autoregressive inference, key–value caches store earlier attention states. Steering the current residual stream does not retroactively change cached representations unless the method explicitly does so.
This creates temporal asymmetry: earlier context remains encoded under the unsteered model while later states are controlled. Persistent steering can affect future cache entries only.
BH. Cache-aware evaluation is required for long sequences
Compare steering from the start of generation with steering introduced midway. Measure whether the controller can overcome already cached context.
Stateful serving systems should document whether hooks apply before or after cached-state construction.
BI. Reversibility should be tested after removing the controller mid-generation
Turn steering on for a segment, then off. Does the model immediately return to baseline behaviour, or does the generated context preserve the steered mode?
The latter is not parameter persistence; it is environmental persistence through context. For users, the distinction can still matter operationally.
BJ. Steering can create path dependence
Apply the same current-state controller after two different steering histories. The generated contexts and hidden states differ, so outcomes can differ. The system is path-dependent even with a deterministic vector rule.
Long-form evaluation should include different intervention schedules, not only one constant policy.
BK. Human evaluation should be blinded to steering condition where possible
If raters know which outputs were steered toward “helpfulness” or “formality”, expectation can bias judgement. Randomise and blind output order.
Collect separate scores for target property, quality and unintended changes rather than one overall preference.
BL. Automated evaluators can share biases with the steering estimator
If the same LLM generates contrast labels, builds the concept score and evaluates output, correlated errors can exaggerate efficacy. Use independent evaluators or human checks on a subset.
Evaluation independence is especially important for subtle concepts such as honesty, uncertainty or deference.
BM. Safety controls should sit outside the steering vector
A controller intended to increase safety can fail under distribution shift. External policy enforcement, permissions, filtering and human oversight should not depend solely on an internal steering direction.
Representation steering is one control signal inside a broader system, not the final authority.
BN. A safe-control evaluation should include adversarial and ambiguous contexts
Test prompts near the concept boundary, prompts combining conflicting goals and inputs unlike the contrast data. The controller should reduce strength or abstain when its semantic model is uncertain.
Focus on robustness and failure detection rather than operational bypass demonstrations.
BO. Worked experiment: global vector versus local vector field
Construct a synthetic curved concept geometry or use a dataset with measurable context regimes. Compare one mean-difference vector with a learned local gradient field.
Report mean target effect, backfire rate, intervention norm, protected-score drift and compute cost. A field earns its complexity if it reduces context-dependent failures materially.
BP. Worked experiment: long-form drift
Generate outputs of increasing length under fixed steering, decaying steering and closed-loop steering. Score the target attribute and quality in windows.
Plot decay, overshoot and variance. This identifies whether the controller needs feedback rather than stronger α.
BQ. Worked experiment: two-attribute interference surface
Choose two benign measurable attributes and sweep α,β over a grid. Measure both targets plus a quality metric.
Compare raw vector addition, orthogonalised vectors and locally constrained optimisation. The surface shows whether geometric separation translates into behavioural separation.
BR. Worked experiment: norm-preserving versus additive control
Match additive and spherical interventions for initial target effect. Generate across many prompts and lengths. Compare hidden-state norm, quality, backfire rate and target persistence.
If spherical steering helps, the benefit should appear at matched control efficacy rather than merely from a weaker effective perturbation.
BS. The steering deployment evidence card
- Target evaluator: independent measure of desired effect.
- Protected metrics: named collateral behaviours.
- Quality: fluency/task correctness/human judgement.
- Dose curve: efficacy and damage over α.
- Backfire rate: per-example wrong-direction effect.
- Long-form profile: decay, overshoot and drift.
- Context policy: global, clustered, field or closed-loop.
- Multi-control: interaction surface and ordering.
- Shift tests: domains, languages and unfamiliar states.
- Versioning: model and controller calibration.
- Compute: latency/memory overhead.
- Reversibility: parameter and contextual persistence.
- Safety gates: external controls and abstention.
BT. Final release gate for representation steering
- The target concept has an operational definition and matched contrast design.
- Direction estimation uncertainty is measured.
- Probe, mean-difference and feature directions are not conflated.
- Layer and token-position selection are validated out of sample.
- Intervention size is normalised to natural activation scale.
- Dose–response and backfire rates are reported.
- Norm shift and geometric side effects are measured.
- Static-vector context dependence is tested.
- Context-aware fields earn their added complexity empirically.
- Long-form drift and autoregressive feedback are evaluated.
- Multi-attribute interactions are mapped rather than assumed additive.
- Efficacy, specificity and quality are separate axes.
- Prompting/fine-tuning/decoding baselines are included.
- Distribution shift and model-version drift are tested.
- Controller overhead is reported.
- External safety and authority controls remain independent of steering.
- No safeguard-bypass procedure is provided as part of educational analysis.
The longform conclusion is that representation steering should be treated as control engineering over learned state rather than as a clever interpretability trick. A useful internal direction must be estimated, calibrated, constrained and evaluated like any other actuator. The model’s representation is nonlinear, context-dependent and dynamic under autoregressive generation. The simplest successful controller may be one global vector; the harder cases require subspaces, local vector fields, geometry-aware paths or feedback. Complexity is justified only when it reduces measured failure.
Steering succeeds when an internal intervention becomes a reliable control interface: predictable in dose, narrow in side effects, stable across context, reversible where promised, and humble enough to abstain when its representation of the concept no longer applies.
Sources and research boundaries
- Steering Language Models With Activation Engineering.
- Steering Vector Fields for Context-Aware Inference-Time Control in LLMs.
- Spherical Steering.
- Steering Code LLMs with Activation Directions.
- Interpretability Beyond Feature Attribution: Quantitative Testing with Concept Activation Vectors.
Continue in the Representation & Cognitive Tools library
Return to the World Representation & Cognitive Tools canonical owner. Continue with Linear Probing & Diagnostic Classifiers · Activation Patching & Causal Tracing · Sparse Autoencoders for Neural Representation.
