The Complement to Addition
Addition steering asks what happens when we add a concept direction. The complementary intervention removes that direction: does the associated behavior weaken or disappear?
Ablation steering projects a direction out of the residual stream. If the measured behavior falls, the result is evidence that information along that direction participates causally in the behavior. Redundancy, reconstruction, and off-target effects keep this from being an unconditional necessity proof.
Ablation Steering: The inference-time modification of a model's internal activations by projecting out a concept direction from the residual stream. This removes the component of the activation that lies along the concept direction, disabling behaviors that depend on that direction.
The Projection Operation
To ablate a direction from an activation , we project onto the orthogonal complement:
where is the unit vector in the direction to ablate.Projecting out a direction is a standard linear algebra operation. It removes the component of the activation that lies along the target direction while preserving all orthogonal components. Geometrically, it flattens the activation onto the hyperplane perpendicular to the ablated direction.
This operation:
- Removes all information along direction
- Preserves all information orthogonal to
- Is applied at every layer and token position during the forward pass
Application: Disabling Refusal
The most dramatic demonstration of ablation steering targets the refusal direction [1]Refusal in Language Models Is Mediated by a Single Direction
Arditi, A., Obeso, O., Syed, A., et al.
NeurIPS, 2024. Chat models are trained to refuse harmful requests. But where is "refusal" encoded?
Arditi et al. computed the refusal direction using CAA, the mean difference between activations on harmful versus harmless prompts. Then they ablated this direction during inference.
Across the tested models, directional ablation reduced refusal rates from 80–90% to near zero.

Across those models and evaluations, one projection removes most measured refusal. The result is both a useful mechanistic clue and a warning that refusal behavior may be easier to bypass than broad capability benchmarks reveal.
Necessity and Sufficiency Together
Ablation and addition together establish causal evidence:
| Experiment | Operation | Result | Demonstrates |
|---|---|---|---|
| Addition | Add direction to harmless inputs | Model refuses harmless requests | Sufficiency |
| Ablation | Remove direction from harmful inputs | Model complies with harmful requests | Necessity |
The logic resembles activation patching, but the vocabulary does not map directly. Noising and denoising exchange naturally occurring activations between paired runs; addition and ablation construct new activations by translating or projecting them.
A direction that passes both tests is a strong candidate causal mediator for the tested behavior. The tests do not establish that it is the only mediator or that the intervention changes nothing else.
Pause and think: One direction across many models
The refusal direction was found independently in 13 different chat models spanning different families (Llama, Qwen, Gemma) and scales (1.3B to 72B parameters). What does the consistency of this finding tell us about how safety training works?
One interpretation: safety fine-tuning does not create a complex, model-specific mechanism for refusal. Instead, it reinforces a simple linear direction that the model uses to distinguish "refuse" from "comply." Different training procedures converge on this solution because it is the simplest way to implement a binary behavioral switch in a linear representational space. This simplicity is both elegant and concerning.
Capability Preservation
A natural concern: if we ablate a direction, does the model lose other capabilities?
Arditi et al. tested this by permanently projecting out the refusal direction from model weights (not just during inference). The results:
- MMLU: within 99% of baseline
- ARC: within 99% of baseline
- GSM8K: within 99% of baseline
On MMLU, ARC, and GSM8K, measured capability remains close to baseline while refusal collapses. This shows separation on those benchmarks, not preservation of every capability or every safety-relevant behavior.Weight orthogonalization permanently changes the checkpoint, unlike an inference-time hook. A benchmark result describes the tested distribution; it does not show that the modified model never refuses or that all off-target effects have been ruled out.
Inference-Time vs. Permanent Ablation
Ablation can be applied in two ways:
Inference-time ablation: Project out the direction during each forward pass. Reversible, stop applying the intervention and the behavior returns.
Weight orthogonalization: Modify the model's weight matrices to permanently project out the direction. Creates a new model checkpoint with the behavior permanently disabled.
Both reduce refusal, but weight orthogonalization creates a permanently modified model that can be distributed.
Pause and think: When ablation fails
Ablation assumes that a behavior is mediated by a single linear direction. Under what circumstances might ablation fail to disable a behavior?
Ablation would fail if the behavior is encoded redundantly across multiple directions, or if later layers can reconstruct the ablated information from other signals. It would also fail if the behavior does not have a clean linear representation, if it is distributed across many interacting components rather than concentrated in one direction. For robust erasure with formal guarantees, see concept erasure with LEACE.
The Geometric Picture
Ablation has a clean geometric interpretation:
The original activation has some component along the ablated direction . Projection removes exactly that component, flattening the activation onto the orthogonal hyperplane. All other information is preserved.
Comparison to Addition
| Property | Addition Steering | Ablation Steering |
|---|---|---|
| Operation | ||
| Effect | Induces behavior | Disables behavior |
| Demonstrates | Sufficiency | Necessity |
| Reversibility | Trivial (set ) | Trivial (stop projecting) |
| Intensity control | Scaling factor | Binary (project or not) |
Addition exposes an explicit strength parameter. Full directional ablation removes the measured component, although partial projection is also possible and downstream behavioral effects need not be binary.
Connection to the Toolkit
Ablation steering completes the core operations on concept directions:
- Read with LAT and CAA, detect what concepts are encoded.
- Add with addition steering, steer behavior toward a concept.
- Remove with ablation steering, eliminate a concept's influence.
For applications requiring guaranteed erasure, where even a sufficiently powerful non-linear classifier should not be able to recover the concept, see concept erasure with LEACE.