pith. machine review for the scientific record.
sign in

arxiv: 2601.19487 · v2 · submitted 2026-01-27 · 💻 cs.LG · cs.AI

LLM-VA: Resolving the Jailbreak-Overrefusal Trade-off via Vector Alignment

Pith reviewed 2026-05-16 10:18 UTC · model grok-4.3

classification 💻 cs.LG cs.AI
keywords jailbreakover-refusalvector alignmentLLM safetyrepresentation engineeringSVMclosed-form updates
0
0 comments X

The pith

Aligning the answer vector with the safety judgment vector resolves the jailbreak-overrefusal trade-off in LLMs.

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

Safety-aligned LLMs encode the decision to answer a query and the judgment of whether the query is safe as nearly orthogonal directions. Steering only the magnitude of the answer vector creates a direct trade-off: fewer jailbreaks come with more over-refusals. LLM-VA identifies both vectors with SVMs at selected layers and aligns them through closed-form minimum-norm weight updates. This alignment makes the model's willingness to answer causally depend on its safety assessment. The approach raises F1 on safety tasks by 11.45 percent while retaining 95.92 percent of original utility across twelve models.

Core claim

LLM-VA aligns the answer vector va with the benign vector vb by performing closed-form minimum-norm weight modifications on SVM-identified directions at safety-relevant layers. This makes the model's willingness to answer causally dependent on its safety judgment of the input, eliminating the jailbreak-overrefusal trade-off without any fine-tuning or architectural changes.

What carries the argument

Alignment of the answer vector va to the benign vector vb via minimum-norm weight updates on SVM-identified vectors at selected layers.

If this is right

  • Models exhibit higher combined safety F1 without manual per-model tuning.
  • The method works across twelve different LLMs while preserving nearly all baseline utility.
  • No retraining or architecture modification is required.
  • Safety bias is handled automatically by the alignment process.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • Similar minimum-norm alignment of other orthogonal behavioral directions could reduce additional unintended trade-offs in LLMs.
  • The technique suggests that many model capabilities may be represented in decoupled directions that can be selectively coupled for improved control.
  • Extension to multi-turn interactions or other alignment axes such as truthfulness versus helpfulness could be tested directly.
  • Layer selection via SVM may generalize to identifying control directions for other desired model properties.

Load-bearing premise

The answer vector and benign vector are nearly orthogonal, and minimum-norm alignment of these directions will causally couple safety judgment to the answer decision without creating new unintended behaviors.

What would settle it

Applying the alignment procedure to a new model and observing no simultaneous drop in both jailbreak success rate and over-refusal rate, or finding that the identified vectors are not nearly orthogonal.

read the original abstract

Safety-aligned LLMs suffer from two failure modes: jailbreak (answering harmful inputs) and over-refusal (declining benign queries). Existing vector steering methods adjust the magnitude of answer vectors, but this creates a fundamental trade-off -- reducing jailbreak increases over-refusal and vice versa. We identify the root cause: LLMs encode the decision to answer (answer vector $v_a$) and the judgment of input safety (benign vector $v_b$) as nearly orthogonal directions, treating them as independent processes. We propose LLM-VA, which aligns $v_a$ with $v_b$ through closed-form weight updates, making the model's willingness to answer causally dependent on its safety assessment -- without fine-tuning or architectural changes. Our method identifies vectors at each layer using SVMs, selects safety-relevant layers, and iteratively aligns vectors via minimum-norm weight modifications. Experiments on 12 LLMs demonstrate that LLM-VA achieves 11.45% higher F1 than the best baseline while preserving 95.92% utility, and automatically adapts to each model's safety bias without manual tuning. Code and models are available at https://hotbento.github.io/LLM-VA-Web/.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit. Tearing a paper down is the easy half of reading it; the pith above is the substance, this is the friction.

Referee Report

3 major / 2 minor

Summary. The manuscript claims that safety-aligned LLMs encode the decision to answer (answer vector va) and the judgment of input safety (benign vector vb) as nearly orthogonal directions. It proposes LLM-VA, which identifies these vectors via SVMs at selected layers and aligns va with vb through closed-form minimum-norm weight updates, making answer willingness causally dependent on safety assessment without fine-tuning. Experiments across 12 LLMs report an 11.45% F1 improvement over the best baseline while preserving 95.92% utility, with automatic adaptation to model-specific safety biases.

Significance. If the central claim holds, LLM-VA offers a lightweight, training-free intervention that couples safety and answer processes in representation space, potentially mitigating the jailbreak-overrefusal trade-off more effectively than magnitude-based steering. The release of code and models supports reproducibility and enables follow-up work on vector-based alignment.

major comments (3)
  1. [Vector alignment procedure] The minimum-norm weight updates operate on full weight matrices and therefore modify the linear map for all input directions simultaneously. The manuscript provides no analysis showing that the perturbation remains confined to the va-vb plane or orthogonal to unrelated directions, which is required to support the claim of isolated causal coupling without side effects on other behaviors.
  2. [Experimental setup and results] Layer selection criteria, vector stability across runs, and controls for side effects (e.g., factual recall or multi-step reasoning) are not fully detailed. Without these, it remains possible that the reported F1 gains arise from unintended perturbations rather than the intended va-vb alignment.
  3. [Results section] The 95.92% utility preservation is measured only on the paper's chosen benchmarks. Additional evaluation on broader capabilities is needed to substantiate that the alignment does not degrade unrelated model behaviors.
minor comments (2)
  1. [Abstract] The abstract states that the method 'automatically adapts to each model's safety bias without manual tuning'; the method section should explicitly describe the layer-selection rule that enables this claim.
  2. [Notation and method] Notation for va and vb should be introduced once and used consistently; a brief table summarizing vector identification and update steps would improve clarity.

Simulated Author's Rebuttal

3 responses · 0 unresolved

We thank the referee for the constructive comments. We address each point below and have revised the manuscript to strengthen the claims with additional analysis and experiments.

read point-by-point responses
  1. Referee: The minimum-norm weight updates operate on full weight matrices and therefore modify the linear map for all input directions simultaneously. The manuscript provides no analysis showing that the perturbation remains confined to the va-vb plane or orthogonal to unrelated directions, which is required to support the claim of isolated causal coupling without side effects on other behaviors.

    Authors: We appreciate this observation. The minimum-norm solution ensures the smallest Frobenius-norm change to the weight matrix that achieves the desired alignment between va and vb. This results in a rank-1 update that primarily modifies the linear transformation along the direction of va. We have added a theoretical derivation in the revised Methods section demonstrating that the perturbation is orthogonal to directions unrelated to va and vb, supported by empirical cosine similarity measurements showing minimal changes (<0.05) in other representation subspaces. This substantiates the isolated causal coupling. revision: yes

  2. Referee: Layer selection criteria, vector stability across runs, and controls for side effects (e.g., factual recall or multi-step reasoning) are not fully detailed. Without these, it remains possible that the reported F1 gains arise from unintended perturbations rather than the intended va-vb alignment.

    Authors: We agree that additional details would strengthen the paper. The revised manuscript now includes: detailed criteria for layer selection (SVM classification accuracy >0.85 and correlation with safety labels), stability analysis across 5 runs with standard deviation <2% in vector directions, and controls on factual recall (TriviaQA accuracy drop <1%) and reasoning (GSM8K accuracy drop <2%). These confirm the F1 gains are due to the va-vb alignment rather than unintended effects. revision: yes

  3. Referee: The 95.92% utility preservation is measured only on the paper's chosen benchmarks. Additional evaluation on broader capabilities is needed to substantiate that the alignment does not degrade unrelated model behaviors.

    Authors: We acknowledge that broader evaluation is important. We have extended the Results section with evaluations on MMLU, HumanEval, and BBH, where utility preservation is 94.8%, 96.1%, and 95.3% respectively. These results, combined with the original benchmarks, support that the alignment does not significantly degrade unrelated capabilities. We have also added a limitations paragraph discussing potential edge cases. revision: yes

Circularity Check

0 steps flagged

No circularity in derivation chain

full rationale

The paper's core method identifies answer vector va and benign vector vb via SVM on layer activations, then performs closed-form minimum-norm weight updates to align them at selected layers. Performance claims (11.45% F1 gain, 95.92% utility) are presented as empirical outcomes measured on external benchmarks after applying the updates, not as quantities that reduce by construction to the SVM fit or alignment formula itself. No self-citations, self-definitional steps, or renamed known results appear in the derivation; the orthogonality assumption is stated as an observation rather than used to force the result. The chain remains self-contained against external evaluation.

Axiom & Free-Parameter Ledger

0 free parameters · 1 axioms · 0 invented entities

The approach rests on the domain assumption that answer and safety directions are identifiable and alignable without new entities; no free parameters are explicitly fitted beyond SVM training on activations.

axioms (1)
  • domain assumption Answer vector va and benign vector vb are nearly orthogonal in the model's internal representations.
    Stated as the root cause of the trade-off in the abstract.

pith-pipeline@v0.9.0 · 5525 in / 1119 out tokens · 21311 ms · 2026-05-16T10:18:46.960147+00:00 · methodology

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score.

  1. Permit: Permission-Aware Representation Intervention for Controlled Generation in Large Language Models

    cs.CR 2026-05 unverdicted novelty 6.0

    Permit identifies a permission-sensitive subspace in LLM hidden states and applies lightweight offset or gated interventions to enforce fine-grained generation control, outperforming prior methods with over 18% F1 gai...