Pith. sign in

REVIEW 4 major objections 6 minor 53 references

Probing the Robustness of Large Language Models Safety to Latent Perturbations

T0 review · 4 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read The paper argues that current safety alignment is shallow: scale-normalized noise injected at specific transformer layers flips aligned models from refusal to harmful compliance, and layer-wise adversarial patch training reduces that…

desk verdict A useful empirical study of activation-scale attacks on safety refusals, but the 'minor perturbation' framing is contradicted by its own normalization and the judge-dependent numbers need scrutiny. read the letter →

arxiv 2506.16078 v1 pith:SCE6ZV3C submitted 2025-06-19 cs.LG cs.AIcs.CLcs.CR

classification cs.LGcs.AIcs.CLcs.CR
keywords latentperturbationssafetyalignmentactivationsteeringjailbreakadversarialtrainingNLLproberepresentationrobustnessLLM
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

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

The reading

Safety-aligned large language models refuse harmful prompts, but this paper argues that the refusal lives only at the surface: inject a small, scale-normalized noise vector into a hidden layer's activations and aligned models switch from "I cannot assist" to step-by-step instructions for making bombs. The authors establish this by measuring the negative log-likelihood of the model's own safe response as a probe for local latent sensitivity, then using that signal to construct the Activation Steering Attack (ASA), which succeeds at some layer on most harmful prompts across 12 open-source models. They build the resulting 4,862 verified cases into ASABench and show that a layer-wise adversarial patch training (LAPT) that perturbs fragile layers during fine-tuning cuts peak attack success rates by up to 0.35 while leaving reasoning performance nearly unchanged. If true, the finding means current alignment training does not make models genuinely safe under internal perturbation, only behaviorally compliant, and that representation-level defenses are a necessary addition.

What carries the argument

The central object is the NLL probe: the negative log-likelihood $-\sum_t \log \pi_\theta(y_t | x, y_{<t})$ of the model's original safe response, repurposed as a measure of local sensitivity. Raising this quantity by perturbation identifies latent directions where small activation changes destroy aligned behavior, and it gives the gradient signal that powers the stronger ASA_grad variant. The attack itself uses a normalization step—matching the perturbation's mean and standard deviation to the target activation's statistics—that keeps injected noise within the model's latent distribution, preventing generation collapse and making the method parameter-free. The defense, LAPT, applies the same normalized random perturbations to fragile layers during fine-tuning, training the model with standard cross-entropy on the original response, and then merges the trained weights back toward the original model to preserve general capability.

What would settle it

Re-label a sample of ASABench's 4,862 instances with human annotators and compare judge decisions per model: if human labels assign "unsafe" far less often than QwQ-32B on the perturbed responses, then the claimed peak-layer success rates (0.23–0.82) and LAPT's reductions would shrink toward noise; conversely, strong human agreement would confirm the phenomenon independently of the judge.

Watch

Extended reading notes

Core claim

Current alignment (SFT, preference optimization) changes what model outputs, but not how stable the internal representations are; therefore, small shifts in hidden activations can re-trigger the harmful behaviors that alignment was meant to suppress. The paper demonstrates the point with a random, parameter-free perturbation: a vector drawn from a standard Gaussian, normalized to match the mean and standard deviation of the target activation, injected at an intermediate transformer layer. Across twelve open-source models, this steering flips refusals to compliance on large fractions of harmful prompts—peak-layer attack success rates reach 0.23 to 0.66 with random directions, and 0.82 with a gradient-guided variant. The vulnerability concentrates in specific "fragile layers", and training the model on perturbed activations at those layers (LAPT), then interpolating with the original weights, reduces peak attack success by as much as 0.35 without degrading GSM8K or CommonsenseQA accuracy beyond a small tolerance. The conclusion offered is that robustness requires restructuring hidden representations, not just supervising surface behavior.

Load-bearing premise

Every reported attack-success rate and every LAPT gain is scored by QwQ-32B as a judge, which agrees with human labels on only 79% of cases for a single model; if that judge is biased on other models and outputs, the measured magnitudes—and possibly which layers seem fragile—would change.

Editorial extensions

If this is right

  • A deployed model that an adversary can probe internally—or that can be shifted by other latent mechanisms—remains jailbreakable even after standard safety tuning, so safety evaluation should include latent-space robustness tests, not just input-output pairs.
  • The NLL probe gives a per-layer fragility map before deployment, allowing defenders to identify which layers need hardening for a given model.
  • LAPT-style training improves robustness against ASA without a large accuracy hit; the reported reductions in peak-layer attack success (up to 0.35) come with reasoning accuracy within 0.05 of baseline after interpolation.
  • ASA composes with prompt-based attacks: combining ASA with GCG raises GCG's max-layer attack success rate by +0.47 to +0.79, implying latent perturbations lower the threshold for existing jailbreaks.
  • ASABench provides a standardized 4,862-instance benchmark for comparing latent robustness across models and defense methods.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The same NLL probe could double as a general robustness diagnostic for other safety-relevant behaviors—sycophancy, bias, deception—not just refusal.
  • Concentrated fragile layers open the door to a lighter-weight defense: at inference time, steer those specific layers back toward the refusal manifold, which the paper's layer-wise data would support but does not itself implement.
  • A human-annotated re-scoring of ASABench's 4,862 instances would directly test whether the QwQ judge's 0.79 agreement transfers across models; whichever way it lands, it sharpens the paper's numbers.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

Summary. The paper studies whether safety-aligned LLMs remain safe under perturbations of intermediate hidden activations. It introduces Activation Steering Attack (ASA), which injects a normalized random or gradient-based perturbation into a chosen layer, and reports high attack success rates across 12 open-source models. The authors also introduce an NLL-based probe for local latent sensitivity, curate the ASABench dataset of 4,862 successful attack instances, and propose Layer-wise Adversarial Patch Training (LAPT), reporting reduced attack success with little degradation on GSM8K and CommonsenseQA. The central narrative is that current alignment is shallow and that even minor latent shifts can trigger unsafe responses.

Significance. If the claims are substantiated, the paper would make a useful contribution to safety evaluation: the attack is simple, the cross-model evaluation is broad, and LAPT is a plausible defense direction. The paper ships code and results, includes layer-wise vulnerability maps, and provides a benchmark that could facilitate future work. However, the significance is currently limited by the gap between the 'minor latent shift' framing and the actual perturbation scale, and by the reliance on a single LLM judge with limited measured accuracy for nearly all quantitative claims. These issues are fixable with additional analysis, but they affect the interpretation of every headline number.

major comments (4)
  1. [Eq. (1), Sec. 2.1-2.2] The central claim that 'minor latent shifts' trigger unsafe responses is not supported by the perturbation construction. Eq. (1) sets δ' = μ(h) + (δ − μ(δ))/σ(δ) · σ(h); for δ ∼ N(0,1) in high dimension this is approximately μ(h) + σ(h)z, so the injected vector has the same mean and standard deviation as the hidden state, and ||δ'|| is of the same order as ||h||. Since the same perturbation is injected at every generation step (§2.2, Fig. 4), the accumulated deviation is not 'small' or 'subtle'. This is corroborated by App. H, where omitting normalization collapses generation (PPL 623,488 for Llama-3.1-8B-Instruct), while the normalized version produces fluent unsafe text (PPL 701.6). The paper never reports an epsilon bound or a signal-to-noise ratio. Without a scaling experiment showing that attacks succeed at small relative perturbation norms, the abstract's 'minor latent shifts' and Sec. 2.4's 'small activation perturbations' are not established; the results currently demonstrate only that activation-scale perturbations can break alignment.
  2. [App. J, Sec. 3.1, Tab. 3] All headline ASR numbers rest on QwQ-32B as a judge, whose measured accuracy is 0.79 on a single model (Qwen-2.5-7B-Instruct, first 100 AdvBench prompts; App. J, Tab. 10). This judge is used both to curate ASABench (§3.1: samples included only when QwQ confirms a safe-to-unsafe transition) and to measure LAPT success on ASABench (Tab. 3). The evaluation is therefore not independent of the labeling process, and a 21% mislabeling rate can alter MASR/PASR values of 0.2-0.8 substantially. Please provide model-specific judge calibration against human labels for at least a random stratified sample of steered outputs, report error patterns, and re-run the main metrics with an alternative judge or with human-verified labels.
  3. [Sec. 3.2-3.4, Tab. 3] The LAPT results are not compared to any existing defense baseline, such as latent adversarial training (Casper et al., 2024; Sheshadri et al., 2024), nor to ablations that isolate the effect of ASABench fine-tuning and of layer selection. LAPT combines (i) training on ASABench samples, (ii) random perturbation injection, and (iii) selection of fragile layers; without ablations it is unclear whether the reported robustness gains come from the layer-wise adversarial component or simply from additional SFT on the ASABench safe responses. Additionally, interpolation weights are selected to keep CommonsenseQA within 0.05 of baseline (App. K), so the 'without compromising general capabilities' claim needs a comparison at matched capability budgets.
  4. [Sec. 2.4, Fig. 5-7] The NLL probe is presented as a validated diagnostic ('quantifies local sensitivity', 'identifying vulnerable directions'), but the evidence is post-hoc: Figs. 5-6 show that attacks increase NLL on the original response, and Fig. 7 is a qualitative landscape on 20 samples from one model. There is no demonstration that pre-attack NLL sensitivity predicts layer-wise vulnerability (e.g., correlation with LASR), nor that the probe discriminates across models. As defined, the probe is closely related to the quantity that an FGSM-style attack would move, so the observed increase is partly by construction. Please add a predictive-validity analysis (e.g., per-layer NLL change vs. LASR, out-of-sample ranking of fragile layers).
minor comments (6)
  1. [Sec. 2.2] The text says the normalization is 'as described in Eq. 2', but the normalization is defined in Eq. (1).
  2. [App. F] '432,00 samples' is a typo; it should be 432,000.
  3. [App. K, Eq. (13)] Eq. (13) is not a valid interpolation equation as written because θ_a appears on both sides; it should define the interpolated parameters under a different name.
  4. [App. K, Tab. 11] The caption says 'values of α' but the table reports the interpolation weight λ.
  5. [Sec. 5, Tab. 5] ASA_grad (§2.3) requires a manually specified target suffix and a scaling factor α, so describing ASA as annotation-free and parameter-free needs qualification; Table 5 appears to cover only the random variant.
  6. [References] The reference list contains incomplete entries, for example 'The claude 3 model family' without authors and 'nanoGCG' without a citation.

Circularity Check

3 steps flagged · score 2.0 of 10

Central ASA finding is empirically grounded in an external attack benchmark, but the paper's key metric chain (QwQ judge, ASABench inclusion, LAPT evaluation) is partly self-referential and the construction of the 'minor latent shift' claim is not independently supported by a bounded perturbation scale.

  1. other [Section 2.1, Eq. (1) and Section 2.2, Figure 4 and Appendix H]
    "The normalization of δ′ ensures that perturbations are statistically aligned with the model’s latent distribution... this is inspired by instance-level normalization techniques... In this section, we implement ASA random... as described in Eq. 2... We provide a comparative study in App. H, showing that omitting the normalization can lead to degenerate outputs."

    The attack's headline interpretation as a 'minor latent shift' is not internally validated by any epsilon bound or signal-to-noise ratio in Eq. (1). Eq. (1) matches the injected perturbation's mean and variance to those of the hidden state, so the perturbation is of order ||h|| rather than small relative to h. The paper's own App. H shows that without normalization the model output degenerates, and Fig. 4 shows KL divergence grows with token position; neither demonstrates that the normalized perturbation is 'small' in any quantified sense. Thus the central claim that 'minor latent shifts can still trigger unsafe responses' is not reducible to an explicit small-perturbation regime; the paper relies on an unquantified interpretation of 'minor' rather than a derived bound.

  2. fitted input called prediction [Section 3.1 and Section 3.2, ASABench construction and LAPT evaluation]
    "ASABench curates successful ASA instances across multiple models and layers, where samples are included only when the QwQ evaluator confirms a transition from safe (original) to unsafe (perturbed) responses... We then propose Layer-wise Adversarial Patch Training, which fine-tunes the model on ASABench (train split) by perturbing fragile layers, resulting in improved robustness on ASABench (test split)..."

    ASABench is constructed by keeping only samples that QwQ labels as safe-to-unsafe transitions under ASA. LAPT is trained on 60% of these samples and evaluated on the remaining 40% with the same judge. The attack-success rates reported after LAPT (pre-PASR, PASR, post-PASR) are therefore measured on the curated subset that QwQ selected as vulnerable, and QwQ also judges the post-LAPT outputs. This does not make the evaluation logically identical to the training data, since the test split is distinct, but the judge's labels are the same criterion used to create the benchmark; a bias in QwQ's safety judgment is shared by benchmark construction and defense evaluation, making the apparent robustness gains partly self-referential.

1 more flagged steps
  1. self citation load bearing [Section 2.2 and Appendix J, QwQ-32B judge selection]
    "To evaluate the attack effectiveness, we use QwQ-32B (Team, 2025) as a judge... QwQ-32B is chosen because it achieves the highest annotation accuracy... The experimental results, as shown in Tab. 10, indicate that QwQ achieves the highest accuracy, while the commonly used GPT-4 performs relatively poorly. Therefore, we adopt QwQ as the LLM for safety assessment in this study."

    The QwQ-Team citation is an external model card and does not directly provide the safety-judge accuracy used here. The paper supplies the accuracy in App. J (0.79 on Qwen-2.5-7B-Instruct outputs only), yet all headline metrics (MASR, PASR, ASABench inclusion, LAPT gains) are measured with this same judge. The single-model judge validation is not carried over to the 12-model, 43,200-sample setting; the paper's own evidence is that the judge is 79% accurate in the one evaluated setting, so the entire numeric chain inherits that judge's error distribution without independent per-model validation. This is not a reduction of the main attack finding to a fitted prediction, but it does mean the reported attack-success rates are not independently benchmarked outside the authors' chosen judge.

full rationale

The core empirical phenomenon—that injecting normalized random vectors into intermediate activations of several aligned models flips refusal behavior—is externally grounded: it is measured against AdvBench seeds and reported for 12 open-source models, with the base-vs-instruct comparison providing a built-in control. No parameter was fit to ASABench and then used to 'predict' the same ASABench rates; the attack is parameter-free random noise, and the LAPT gains are measured on a held-out 40% split. For these reasons the paper is not dominated by circularity. The circularity score is elevated only because (1) the central 'minor latent shift' interpretation is not backed by a quantitative scale bound, and App. H shows the perturbation is large enough to cause near-total generation collapse when unnormalized; and (2) the same QwQ judge both determines which samples enter ASABench and evaluates LAPT's success on ASABench, so the defense numbers are partially self-referential rather than independently anchored to human labels across all models. These are validity shortcomings, but they do not make the central finding equivalent to the paper's inputs by construction.

Assumptions & free parameters 4 free parameters · 5 assumptions · 0 invented entities

The paper introduces no new physical or conceptual entities; it builds a benchmark (ASABench) and a fine-tuning procedure (LAPT) from existing model components. The main free parameters are experimental choices: interpolation weight, perturbation scaling, generation length, and random seed. Several domain assumptions are unverified, especially the accuracy of the QwQ judge and the representativeness of the 100 AdvBench prompts.

free parameters (4)
  • interpolation weight lambda = 0.1 to 0.5 per model (Tab. K)
    Chosen per model to keep CommonsenseQA within 0.05 of baseline, so the reported LAPT results are partly a product of this selection.
  • ASA_grad scaling alpha = 1
    Scaling factor in Eq. (7); set to 1 by default, not tuned.
  • generation length for ASABench = 50 tokens
    Set to 50 tokens when constructing the benchmark; MASR and PASR vary with generation length (Fig. 3).
  • random seed for ASA random = 42
    Fixed seed; stability is reported for only two models with seeds 42, 45, 48 in App. A.
assumptions (5)
  • domain assumption The attacker has white-box access to intermediate activations and can modify them during generation.
    The threat model in Sec. 2.1 assumes the attacker can read and modify hidden states h_t^(l), which is not true for API-only deployments.
  • domain assumption QwQ-32B's binary safety labels are a valid ground truth for attack success on all 12 models.
    App. J measures 0.79 accuracy against human labels on one model; the paper treats this as sufficient for other models and for ASABench filtering.
  • ad hoc to paper Random Gaussian noise normalized to hidden-state mean and std constitutes a 'minor' latent shift.
    Eq. (1) matches the perturbation's mean and std to those of the hidden state, so the injected vector has the same scale as the activation itself; the paper still calls these 'minor latent shifts'.
  • domain assumption The first 100 AdvBench prompts are representative of harmful user queries.
    Sec. 2.1 uses only these 100 prompts for all 12 models, with no stated justification or comparison to the full AdvBench set.
  • standard math Standard autoregressive factorization and backpropagation are valid for computing gradients.
    Used implicitly in Eqs. (2) and (7) for NLL and gradient computation.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Probing the Robustness of Large Language Models Safety to Latent Perturbations." pith.science (2026). https://pith.science/paper/SCE6ZV3C

@misc{pith2026250616078,
  author       = {Pith},
  title        = {Pith review of: Probing the Robustness of Large Language Models Safety to Latent Perturbations},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/SCE6ZV3C}},
  note         = {Machine review of arXiv:2506.16078}
}
read the original abstract

Safety alignment is a key requirement for building reliable Artificial General Intelligence. Despite significant advances in safety alignment, we observe that minor latent shifts can still trigger unsafe responses in aligned models. We argue that this stems from the shallow nature of existing alignment methods, which focus on surface-level refusal behaviors without sufficiently altering internal representations. Consequently, small shifts in hidden activations can re-trigger harmful behaviors embedded in the latent space. To explore the robustness of safety alignment to latent perturbations, we introduce a probing method that measures the Negative Log-Likelihood of the original response generated by the model. This probe quantifies local sensitivity in the latent space, serving as a diagnostic tool for identifying vulnerable directions. Based on this signal, we construct effective jailbreak trajectories, giving rise to the Activation Steering Attack (ASA). More importantly, these insights offer a principled foundation for improving alignment robustness. To this end, we introduce Layer-wise Adversarial Patch Training~(LAPT), a fine-tuning strategy that inject controlled perturbations into hidden representations during training. Experimental results highlight that LAPT strengthen alignment robustness without compromising general capabilities. Our findings reveal fundamental flaws in current alignment paradigms and call for representation-level training strategies that move beyond surface-level behavior supervision. Codes and results are available at https://github.com/Carol-gutianle/LatentSafety.

Figures

Figures reproduced from arXiv: 2506.16078 by the authors.

Figure 1
Figure 1. Overview of ASA, ASABench, and LAPT. ASA perturbs activations after the user prompt and feeds them into subsequent transformer layers. We collect 4,862 successful attack cases across 8 models into ASABench. We then propose Layer-wise Adversarial Patch Training, which fine-tunes the model on ASABench (train split) by perturbing fragile layers, resulting in improved robustness on ASABench (test split) while preserving… view at source ↗
Figure 2
Figure 2. Attack Success Rate (ASR) of ASA on 8 Open-Source LLMs. We report the initial success rate before the attack (INIT) and the success rates after applying ASA (MASR and PASR). 4 [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Trends of MASR and PASR with Increasing Generation Length. [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figures from the paper (14 more)
Figure 4
Figure 4. Figure 4: KL Divergence Between ASA and Clean Logits Across Token Positions. [PITH_FULL_IMAGE:figures/full_fig_p005_4.png]
Figure 5
Figure 5. Figure 5: NLL comparison w/wo ASA. ASA increases the NLL on original responses, indicating it effectively alters the model response. 0 20 40 60 80 100 Prompt Index 10 0 10 20 30 40 50 60 NLL to Origin Response Qwen-2.5-7B-Base ASA ASAgrad 0 20 40 60 80 100 Prompt Index Qwen-2.5-…
Figure 6
Figure 6. Figure 6: NLL comparison between ASA and ASAgrad. ASAgrad leads to a higher NLL than ASA, demonstrating stronger attack effectiveness. 2.4 HOW DOES ASA BREAK SAFETY ALIGNMENT Based on the behavior differences between ASA and ASAgrad, we conduct an empirical analysis using NLL Pr…
Figure 7
Figure 7. Figure 7: NLL landscape visualized un￾der perturbations along ASAgrad and ASArandom. While ASA relies on random directions, ASAgrad utilizes the gradient of the NLL with respect to a spe￾cific harmful suffix as a guiding signal. The gradient is particularly strong because aligne…
Figure 8
Figure 8. Figure 8: LASR across all layers before and after LAPT for the top three models on ASABench. [PITH_FULL_IMAGE:figures/full_fig_p009_8.png]
Figure 9
Figure 9. Figure 9: ASR of ASA on Reasoning Models. C FINE-GRAINED ANALYSIS OF ASA We present heatmaps in the [PITH_FULL_IMAGE:figures/full_fig_p015_9.png]
Figure 10
Figure 10. Figure 10: LASR of each layer in LLMs. 15 [PITH_FULL_IMAGE:figures/full_fig_p015_10.png]
Figure 11
Figure 11. Figure 11: Prompt-Layer Attack Success Heatmaps. 17 [PITH_FULL_IMAGE:figures/full_fig_p017_11.png]
Figure 12
Figure 12. Figure 12: Examples with and without steer vector normalization. [PITH_FULL_IMAGE:figures/full_fig_p019_12.png]
Figure 13
Figure 13. Figure 13: Distribution of samples in ASABench across 8 models. [PITH_FULL_IMAGE:figures/full_fig_p019_13.png]
Figure 14
Figure 14. Figure 14: Prompts used for Quality Control in ASABench. [PITH_FULL_IMAGE:figures/full_fig_p020_14.png]
Figure 15
Figure 15. Figure 15: Prompts used for Safety Evaluation in ASABench. [PITH_FULL_IMAGE:figures/full_fig_p021_15.png]
Figure 16
Figure 16. Figure 16: LASR across all layers before and after LAPT for the other three models on ASABench. [PITH_FULL_IMAGE:figures/full_fig_p021_16.png]
Figure 17
Figure 17. Figure 17: Prompts used for Evaluation in GSM8K. 21 [PITH_FULL_IMAGE:figures/full_fig_p021_17.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

53 extracted references · 13 canonical work pages

  1. [1]

    URL https://api.semanticscholar.org/CorpusID:268232499

    The claude 3 model family: Opus, sonnet, haiku. URL https://api.semanticscholar.org/CorpusID:268232499

  2. [2]

    Gpt-4 technical report

    Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774, 2023

  3. [3]

    Foundational challenges in assuring alignment and safety of large language models

    Usman Anwar, Abulhair Saparov, Javier Rando, Daniel Paleka, Miles Turpin, Peter Hase, Ekdeep Singh Lubana, Erik Jenner, Stephen Casper, Oliver Sourbut, et al. Foundational challenges in assuring alignment and safety of large language models. arXiv preprint arXiv:2404.09932, 2024

  4. [4]

    Refusal in language models is mediated by a single direction

    Andy Arditi, Oscar Balcells Obeso, Aaquib Syed, Daniel Paleka, Nina Rimsky, Wes Gurnee, and Neel Nanda. Refusal in language models is mediated by a single direction. In The Thirty-eighth Annual Conference on Neural Information Processing Systems

  5. [5]

    Qwen technical report

    Jinze Bai, Shuai Bai, Yunfei Chu, Zeyu Cui, Kai Dang, Xiaodong Deng, Yang Fan, Wenbin Ge, Yu Han, Fei Huang, et al. Qwen technical report. arXiv preprint arXiv:2309.16609, 2023

  6. [6]

    Constitutional ai: Harmlessness from ai feedback

    Yuntao Bai, Saurav Kadavath, Sandipan Kundu, Amanda Askell, Jackson Kernion, Andy Jones, Anna Chen, Anna Goldie, Azalia Mirhoseini, Cameron McKinnon, et al. Constitutional ai: Harmlessness from ai feedback. arXiv preprint arXiv:2212.08073, 2022

  7. [7]

    Defending against unforeseen failure modes with latent adversarial training

    Stephen Casper, Lennart Schulze, Oam Patel, and Dylan Hadfield-Menell. Defending against unforeseen failure modes with latent adversarial training. arXiv preprint arXiv:2403.05030, 2024

  8. [8]

    Jailbreaking black box large language models in twenty queries

    Patrick Chao, Alexander Robey, Edgar Dobriban, Hamed Hassani, George J Pappas, and Eric Wong. Jailbreaking black box large language models in twenty queries. In 2025 IEEE Conference on Secure and Trustworthy Machine Learning (SaTML), pp.\ 23--42. IEEE, 2025

Show all 53 references
  1. [9]

    Probing latent subspaces in llm for ai security: Identifying and manipulating adversarial states

    Xin Wei Chia and Jonathan Pan. Probing latent subspaces in llm for ai security: Identifying and manipulating adversarial states. arXiv preprint arXiv:2503.09066, 2025

  2. [10]

    Training verifiers to solve math word problems

    Karl Cobbe, Vineet Kosaraju, Mohammad Bavarian, Mark Chen, Heewoo Jun, Lukasz Kaiser, Matthias Plappert, Jerry Tworek, Jacob Hilton, Reiichiro Nakano, Christopher Hesse, and John Schulman. Training verifiers to solve math word problems. arXiv preprint arXiv:2110.14168, 2021

  3. [11]

    Scaling laws for adversarial attacks on language model activations

    Stanislav Fort. Scaling laws for adversarial attacks on language model activations. arXiv preprint arXiv:2312.02780, 2023

  4. [12]

    Shaping the safety boundaries: Understanding and defending against jailbreaks in large language models

    Lang Gao, Xiangliang Zhang, Preslav Nakov, and Xiuying Chen. Shaping the safety boundaries: Understanding and defending against jailbreaks in large language models. arXiv preprint arXiv:2412.17034, 2024

  5. [13]

    Explaining and harnessing adversarial examples

    Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. arXiv preprint arXiv:1412.6572, 2014

  6. [14]

    The llama 3 herd of models

    Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, et al. The llama 3 herd of models. arXiv preprint arXiv:2407.21783, 2024

  7. [15]

    Meow: Memory supervised llm unlearning via inverted facts

    Tianle Gu, Kexin Huang, Ruilin Luo, Yuanqi Yao, Yujiu Yang, Yan Teng, and Yingchun Wang. Meow: Memory supervised llm unlearning via inverted facts. arXiv preprint arXiv:2409.11844, 2024

  8. [16]

    Flames: Benchmarking value alignment of llms in chinese

    Kexin Huang, Xiangyang Liu, Qianyu Guo, Tianxiang Sun, Jiawei Sun, Yaru Wang, Zeyang Zhou, Yixu Wang, Yan Teng, Xipeng Qiu, et al. Flames: Benchmarking value alignment of llms in chinese. arXiv preprint arXiv:2311.06899, 2023

  9. [17]

    Arbitrary style transfer in real-time with adaptive instance normalization

    Xun Huang and Serge Belongie. Arbitrary style transfer in real-time with adaptive instance normalization. In Proceedings of the IEEE international conference on computer vision, pp.\ 1501--1510, 2017

  10. [18]

    Improving activation steering in language models with mean-centring

    Ole Jorgensen, Dylan Cope, Nandi Schoots, and Murray Shanahan. Improving activation steering in language models with mean-centring. arXiv preprint arXiv:2312.03813, 2023

  11. [19]

    Large language model unlearning via embedding-corrupted prompts

    Chris Liu, Yaxuan Wang, Jeffrey Flanigan, and Yang Liu. Large language model unlearning via embedding-corrupted prompts. Advances in Neural Information Processing Systems, 37: 0 118198--118266, 2024

  12. [20]

    Autodan: Generating stealthy jailbreak prompts on aligned large language models

    Xiaogeng Liu, Nan Xu, Muhao Chen, and Chaowei Xiao. Autodan: Generating stealthy jailbreak prompts on aligned large language models

  13. [21]

    Merge to learn: Efficiently adding skills to language models with model merging

    Jacob Morrison, Noah A Smith, Hannaneh Hajishirzi, Pang Wei Koh, Jesse Dodge, and Pradeep Dasigi. Merge to learn: Efficiently adding skills to language models with model merging. In Findings of the Association for Computational Linguistics: EMNLP 2024, pp.\ 15604--15621, 2024

  14. [22]

    Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, Alex Ray, John Schulman, Jacob Hilton, Fraser Kelton, Luke E

    Long Ouyang, Jeff Wu, Xu Jiang, Diogo Almeida, Carroll L. Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, Alex Ray, John Schulman, Jacob Hilton, Fraser Kelton, Luke E. Miller, Maddie Simens, Amanda Askell, Peter Welinder, Paul Francis Christiano, Jan...

  15. [23]

    Training language models to follow instructions with human feedback

    Long Ouyang, Jeffrey Wu, Xu Jiang, Diogo Almeida, Carroll Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, Alex Ray, et al. Training language models to follow instructions with human feedback. Advances in neural information processing systems, 35: 0 2...

  16. [24]

    In-context unlearning: Language models as few-shot unlearners

    Martin Pawelczyk, Seth Neel, and Himabindu Lakkaraju. In-context unlearning: Language models as few-shot unlearners. In Forty-first International Conference on Machine Learning

  17. [25]

    Fine-tuning aligned language models compromises safety, even when users do not intend to! arXiv preprint arXiv:2310.03693, 2023

    Xiangyu Qi, Yi Zeng, Tinghao Xie, Pin-Yu Chen, Ruoxi Jia, Prateek Mittal, and Peter Henderson. Fine-tuning aligned language models compromises safety, even when users do not intend to! arXiv preprint arXiv:2310.03693, 2023

  18. [26]

    Fine-tuning aligned language models compromises safety, even when users do not intend to! In The Twelfth International Conference on Learning Representations, 2024

    Xiangyu Qi, Yi Zeng, Tinghao Xie, Pin-Yu Chen, Ruoxi Jia, Prateek Mittal, and Peter Henderson. Fine-tuning aligned language models compromises safety, even when users do not intend to! In The Twelfth International Conference on Learning Representations, 2024. URL https://openr...

  19. [27]

    Manning, and Chelsea Finn

    Rafael Rafailov, Archit Sharma, Eric Mitchell, Stefano Ermon, Christopher D. Manning, and Chelsea Finn. Direct preference optimization: Your language model is secretly a reward model. ArXiv, abs/2305.18290, 2023 a . URL https://api.semanticscholar.org/CorpusID:258959321

  20. [28]

    Direct preference optimization: Your language model is secretly a reward model

    Rafael Rafailov, Archit Sharma, Eric Mitchell, Christopher D Manning, Stefano Ermon, and Chelsea Finn. Direct preference optimization: Your language model is secretly a reward model. Advances in Neural Information Processing Systems, 36: 0 53728--53741, 2023 b

  21. [29]

    Steering llama 2 via contrastive activation addition

    Nina Rimsky, Nick Gabrieli, Julian Schulz, Meg Tong, Evan Hubinger, and Alexander Turner. Steering llama 2 via contrastive activation addition. In Lun-Wei Ku, Andre Martins, and Vivek Srikumar (eds.), Proceedings of the 62nd Annual Meeting of the Association for Computational ...

  22. [30]

    Proximal policy optimization algorithms

    John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. ArXiv, abs/1707.06347, 2017. URL https://api.semanticscholar.org/CorpusID:28695052

  23. [31]

    Latent adversarial training improves robustness to persistent harmful behaviors in llms

    Abhay Sheshadri, Aidan Ewart, Phillip Guo, Aengus Lynch, Cindy Wu, Vivek Hebbar, Henry Sleight, Asa Cooper Stickland, Ethan Perez, Dylan Hadfield-Menell, et al. Latent adversarial training improves robustness to persistent harmful behaviors in llms. arXiv preprint arXiv:2407.1...

  24. [32]

    C ommonsense QA : A question answering challenge targeting commonsense knowledge

    Alon Talmor, Jonathan Herzig, Nicholas Lourie, and Jonathan Berant. C ommonsense QA : A question answering challenge targeting commonsense knowledge. In Proceedings of the 2019 Conference of the North A merican Chapter of the Association for Computational Linguistics: Human La...

  25. [33]

    Qwen2.5: A party of foundation models, September 2024

    Qwen Team. Qwen2.5: A party of foundation models, September 2024. URL https://qwenlm.github.io/blog/qwen2.5/

  26. [34]

    Qwq-32b: Embracing the power of reinforcement learning, March 2025

    Qwen Team. Qwq-32b: Embracing the power of reinforcement learning, March 2025. URL https://qwenlm.github.io/blog/qwq-32b/

  27. [35]

    Llama 2: Open foundation and fine-tuned chat models

    Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, et al. Llama 2: Open foundation and fine-tuned chat models. arXiv preprint arXiv:2307.09288, 2023

  28. [36]

    Steering language models with activation engineering

    Alexander Matt Turner, Lisa Thiergart, Gavin Leech, David Udell, Juan J Vazquez, Ulisse Mini, and Monte MacDiarmid. Steering language models with activation engineering. arXiv preprint arXiv:2308.10248, 2023

  29. [37]

    A language model's guide through latent space

    Dimitri Von R \"u tte, Sotiris Anagnostidis, Gregor Bachmann, and Thomas Hofmann. A language model's guide through latent space. arXiv preprint arXiv:2402.14433, 2024

  30. [38]

    Trojan activation attack: Red-teaming large language models using activation steering for safety-alignment

    Haoran Wang and Kai Shu. Trojan activation attack: Red-teaming large language models using activation steering for safety-alignment. arXiv preprint arXiv:2311.09433, 2023

  31. [40]

    Finetuned language models are zero-shot learners

    Jason Wei, Maarten Bosma, Vincent Y Zhao, Kelvin Guu, Adams Wei Yu, Brian Lester, Nan Du, Andrew M Dai, and Quoc V Le. Finetuned language models are zero-shot learners. arXiv preprint arXiv:2109.01652, 2021 b

  32. [41]

    Robust fine-tuning of zero-shot models

    Mitchell Wortsman, Gabriel Ilharco, Jong Wook Kim, Mike Li, Simon Kornblith, Rebecca Roelofs, Raphael Gontijo Lopes, Hannaneh Hajishirzi, Ali Farhadi, Hongseok Namkoong, et al. Robust fine-tuning of zero-shot models. In 2022 IEEE/CVF Conference on Computer Vision and Pattern R...

  33. [42]

    Uncovering safety risks of large language models through concept activation vector

    Zhihao Xu, Ruixuan Huang, Changyu Chen, and Xiting Wang. Uncovering safety risks of large language models through concept activation vector. In A. Globerson, L. Mackey, D. Belgrave, A. Fan, U. Paquet, J. Tomczak, and C. Zhang (eds.), Advances in Neural Information Processing S...

  34. [43]

    Qwen2 technical report

    An Yang, Baosong Yang, Binyuan Hui, Bo Zheng, Bowen Yu, Chang Zhou, Chengpeng Li, Chengyuan Li, Dayiheng Liu, Fei Huang, Guanting Dong, Haoran Wei, Huan Lin, Jialong Tang, Jialin Wang, Jian Yang, Jianhong Tu, Jianwei Zhang, Jianxin Ma, Jin Xu, Jingren Zhou, Jinze Bai, Jinzheng...

  35. [44]

    Qwen3 technical report

    An Yang, Anfeng Li, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chang Gao, Chengen Huang, Chenxu Lv, et al. Qwen3 technical report. arXiv preprint arXiv:2505.09388, 2025

  36. [45]

    A mousetrap: Fooling large reasoning models for jailbreak with chain of iterative chaos

    Yang Yao, Xuan Tong, Ruofan Wang, Yixu Wang, Lujundong Li, Liang Liu, Yan Teng, and Yingchun Wang. A mousetrap: Fooling large reasoning models for jailbreak with chain of iterative chaos. arXiv preprint arXiv:2502.15806, 2025

  37. [46]

    Yi: Open foundation models by 01

    Alex Young, Bei Chen, Chao Li, Chengen Huang, Ge Zhang, Guanwei Zhang, Guoyin Wang, Heng Li, Jiangcheng Zhu, Jianqun Chen, et al. Yi: Open foundation models by 01. ai. arXiv preprint arXiv:2403.04652, 2024

  38. [47]

    Removing rlhf protections in gpt-4 via fine-tuning

    Qiusi Zhan, Richard Fang, Rohan Bindu, Akul Gupta, Tatsunori B Hashimoto, and Daniel Kang. Removing rlhf protections in gpt-4 via fine-tuning. In Proceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language T...

  39. [48]

    Controlling large language models through concept activation vectors

    Hanyu Zhang, Xiting Wang, Chengao Li, Xiang Ao, and Qing He. Controlling large language models through concept activation vectors. In AAAI Conference on Artificial Intelligence, 2025. URL https://api.semanticscholar.org/CorpusID:275458722

  40. [49]

    Representation engineering: A top-down approach to ai transparency

    Andy Zou, Long Phan, Sarah Chen, James Campbell, Phillip Guo, Richard Ren, Alexander Pan, Xuwang Yin, Mantas Mazeika, Ann-Kathrin Dombrowski, et al. Representation engineering: A top-down approach to ai transparency. arXiv preprint arXiv:2310.01405, 2023 a

  41. [50]

    Zico Kolter, and Matt Fredrikson

    Andy Zou, Zifan Wang, Nicholas Carlini, Milad Nasr, J. Zico Kolter, and Matt Fredrikson. Universal and transferable adversarial attacks on aligned language models, 2023 b . URL https://arxiv.org/abs/2307.15043

  42. [51]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...

  43. [52]

    @esa (Ref

    \@ifxundefined[1] #1\@undefined \@firstoftwo \@secondoftwo \@ifnum[1] #1 \@firstoftwo \@secondoftwo \@ifx[1] #1 \@firstoftwo \@secondoftwo [2] @ #1 \@temptokena #2 #1 @ \@temptokena \@ifclassloaded agu2001 natbib The agu2001 class already includes natbib coding, so you should ...

  44. [53]

    \@lbibitem[] @bibitem@first@sw\@secondoftwo \@lbibitem[#1]#2 \@extra@b@citeb \@ifundefined br@#2\@extra@b@citeb \@namedef br@#2 \@nameuse br@#2\@extra@b@citeb \@ifundefined b@#2\@extra@b@citeb @num @parse #2 @tmp #1 NAT@b@open@#2 NAT@b@shut@#2 \@ifnum @merge>\@ne @bibitem@firs...

  45. [54]

    Despite significant advances in safety alignment, we observe that minor latent shifts can still trigger unsafe responses in aligned models

    @open @close @open @close and [1] URL: #1 \@ifundefined chapter * \@mkboth \@ifxundefined @sectionbib * \@mkboth * \@mkboth\@gobbletwo \@ifclassloaded amsart * \@ifclassloaded amsbook * \@ifxundefined @heading @heading NAT@ctr thebibliography [1] @ \@biblabel @NAT@ctr \@bibset...

Pith tools

Reviewed August 6, 2026 · model on record in the stance chip above.