REVIEW 4 major objections 5 minor 27 references
The paper argues that vision-language models answer harmful queries largely because they under-attend to dangerous image regions, and that adding a short image summary, scoring risk from the first tokens, and adaptively steering activations
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-04 09:41 UTC pith:GPU6CEY4
load-bearing objection Useful inference-time safety defense with large ASR reductions, but the SPA-VL numbers are partly self-calibrated and need a cleaner evaluation split. the 4 major comments →
Attention Misses Visual Risk: Risk-Adaptive Steering for Multimodal Safety Alignment
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The paper's central claim is that insufficient cross-modal attention to safety-critical image regions is a key correctable cause of multimodal safety failures. Attention maps and a Fisher discriminant analysis show that safety prompts alone leave safe and unsafe representations entangled, while a concise visual context — a short description of the image appended to the query — makes them separable. Risk is scored by comparing the exponentially weighted output distributions of the first three response tokens against unsafe prototypes (mean last-layer activations of initial tokens for policy-violating text queries). A sigmoid centered on a 100-sample calibration gives a continuous risk score t
What carries the argument
The load-bearing object is the unsafe prototype: the mean last-layer activation of the first response tokens over a set of policy-violating text queries. It plays two roles: as the reference distribution in the risk score (cosine similarity between exponentially weighted softmax distributions of early output tokens) and as the target for the refusal vector (the difference between the prototype and the current query's activation). Vision-aware query reformulation is the enabler: appending a short image summary and a safety prompt strengthens cross-modal attention to danger-relevant visual tokens, which is what makes the prototype similarity informative. Risk-adaptive activation steering then
Load-bearing premise
The load-bearing premise is that once the image is summarized in words, a harmful multimodal request makes the model's first few output tokens look much more like the first few tokens of unsafe text-only requests than safe ones do, and that this difference is strong and stable enough for a single threshold learned from 100 examples to work across attacks and models.
What would settle it
Build a harmful image-embedded query whose generated visual context is neutral (does not mention the dangerous object), so the reformulated query still contains the image but not a textual hint of the danger. If the risk score stays low and the model answers harmfully, the prototype-similarity gate is miscalibrated and the defense fails. A direct measurement also works: collect many safe and unsafe queries with identical reformulation, and if the cosine-similarity histograms overlap substantially for any attack class, the steering threshold cannot separate them.
If this is right
- If the core claim holds, multimodal safety can be improved for frozen vision-language models without supervised fine-tuning or reinforcement learning, using only a small calibration set.
- Because risk is assessed from the first three response tokens, defenses no longer need to generate and regenerate full answers, which removes a major source of inference overhead.
- The adaptive steering strength means benign queries receive near-zero intervention, so the over-refusal problem that plagues fixed safety prompting is avoided.
- The diagnostic claim implies that any multimodal jailbreak that succeeds by hiding harm in image regions depends on the model's attention failing; interventions that increase attention to those regions should have broad effect across attack styles.
- The method's reported near-zero attack success on typographic attacks suggests that even attacks where the harmful instruction is text embedded in the image are vulnerable to explicit image-summary-based grounding.
Where Pith is reading between the lines
- A testable extension of the paper's own logic: a jailbreak that supplies the image but prevents the generated visual context from describing the dangerous object (e.g., an adversarial caption or a neutral summary) should collapse the risk score and bypass the defense — this would directly probe whether prototypes and visual context are the binding mechanism.
- The method's dependence on text-derived unsafe prototypes suggests the same risk-score architecture could be transferred to other safety domains or other modalities whenever a reference "unsafe prototype" can be defined; the paper only demonstrates it for vision-and-language.
- The continuous risk score could serve purposes beyond refusal, such as selective explanation or risk display to users, since it is available before the model commits to an answer.
- An open implication the paper does not pursue is robustness to distribution shift: if deployment queries differ from SPA-VL in style, the calibrated threshold S_base may need re-estimation; the paper's own appendix only varies the prototype source, not the calibration distribution.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper claims that a key cause of multimodal safety failures is insufficient cross-modal attention to safety-critical image regions, and proposes Risk-adaptive Activation Steering (RAS), a training-free inference-time defense. RAS has three stages: (i) vision-aware query reformulation that appends a concise generated visual context and a safety prompt to the input query; (ii) risk evaluation that measures the exponentially weighted cosine similarity between the first-N output-token distributions of the reformulated query and text-only 'unsafe prototypes' (Eq. 4), mapping this similarity through a sigmoid to a risk score (Eq. 5); and (iii) risk-adaptive activation steering that adds to the original query's last-layer activations a refusal vector scaled by the risk score (Eqs. 6-7). The method is evaluated on MM-SafetyBench, SPA-VL, and FigStep across four MLLMs, with utility measured on Sci-QA, MM-Vet, GQA, and MME. The paper reports large ASR reductions (e.g., Table 1: LLaVA-1.5-7B ASR drops from 40.1/47.2/59.3 to 4.1/8.3/2.2 on MM-Safety/SPA-VL/FigStep), near-zero utility degradation, and higher inference throughput than prior inference-time defenses.
Significance. If the reported results hold, RAS is a valuable contribution: it is training-free, requires no external reward model, intervenes on only a few tokens, and consistently outperforms several strong inference-time baselines across models and benchmarks. The paper also offers an interesting analysis of cross-modal attention and Fisher Discriminant Ratio (Sec. 3.1, Figs. 3-4), and ablations support the contribution of each stage (Table 2, Fig. 8). The robustness check using alternative unsafe query sources (Appendix F) is a good addition. However, the central risk-evaluation mechanism is calibrated on the same SPA-VL benchmark on which the headline SPA-VL ASR is reported, and the evidence for separation of safe/unsafe scores is limited to one illustrative example. Because these issues bear directly on the paper's main claim, the current evidence is not yet sufficient for acceptance.
major comments (4)
- [Sec. 3.2, Eq. (5); Sec. 4.1 Implementation details; Table 1] The SPA-VL result is potentially circular. The paper states that S_base is the mean of S_i over 100 SPA-VL samples and alpha is calibrated on those samples (Sec. 3.2; Implementation details), and then reports Table 1 ASR on SPA-VL. It is not stated whether the 100 calibration samples are disjoint from the 265 unsafe SPA-VL test queries. If they are not disjoint, the SPA-VL ASR in Table 1 is not an independent evaluation of the method's performance on that benchmark. Please specify the exact split, calibrate on a separate training subset (or use cross-validation), and report ASR on the held-out SPA-VL test set.
- [Sec. 3.2, Eq. (4), Figs. 5-6; Table 1] The central assumption that the cosine similarity S_i cleanly separates safe from unsafe reformulated queries is supported mainly by Fig. 5, which shows one text-query/object-pair on LLaVA-1.5-7B, and Fig. 6, which shows MM-Vet vs. SPA-VL scores for one model. The claim that the SPA-VL-calibrated threshold transfers to MM-Safety and FigStep is load-bearing, but the paper does not report S_i distributions or separation metrics (e.g., AUC, overlap) for each model and each safety benchmark. Please provide per-model calibration plots and quantitative separation statistics, and a sensitivity analysis of ASR/utility to S_base shifts on MM-Safety and FigStep.
- [Sec. 4.1, Sec. 4.2, Table 1; Appendix B] The paper never reports false-refusal rates or utility on the 265 safe SPA-VL test queries, even though SPA-VL contains a safe split and the method is explicitly designed to avoid over-refusal. Utility numbers in Table 1 are from unrelated benchmarks (Sci-QA, MM-Vet, GQA, MME) and do not measure whether a safe query paired with a benign image is incorrectly refused. Please report refusal/compliance rates and task accuracy on the safe SPA-VL test split, ideally broken down by risk-score bins.
- [Tables 1-2, Figs. 7-8; general reporting] No error bars, repeated runs, or statistical significance tests are reported. ASR differences between RAS and the strongest baselines (e.g., ETA on LLaVA-1.5-13B: 6.9 vs. 11.7 for MM-Safety) could be within run-to-run variation, especially since judge-based evaluation and sampling can be stochastic. Please report results over multiple seeds (or bootstrap confidence intervals) for the main safety and utility numbers, and state the inference-time generation settings (temperature, decoding, number of runs).
minor comments (5)
- [Appendices A.1-A.2, Sec. 4.1] The exact visual-context generation prompt, safety prompt, and reformulation template are not quoted in the main text. The appendices show illustrative samples but not the full fixed strings. Please include the complete templates in the main text or an appendix for reproducibility.
- [Sec. 4.2, Fig. 7] The relative throughput comparison is useful, but the figure does not specify whether the reported throughput includes the extra forward pass needed to generate the visual context in Stage 1. Since RAS does incur a generation cost for the visual context, please clarify whether that overhead is accounted for and report absolute tokens/second as well.
- [Table 2] The first row of Table 2 is difficult to read: "[1] - -3.5 7.12.8 ..." appears garbled. Please fix the formatting and clearly label the stage combination and the columns.
- [Eq. (3)-(4), Sec. 3.2] The notation in Eq. (3) defines mu_n^u as the mean activation, but then Eq. (4) applies the LM head to mu_n^u to obtain a probability distribution. Clarify whether mu_n^u is a single vector (the mean) or an average of distributions, and specify how the softmax is computed over the vocabulary.
- [Reproducibility Statement] The statement says code 'will be released upon publication,' but no code or link is currently provided. Given that the method depends on model-specific hyperparameters and prototype construction, releasing code and the exact unsafe-query list would substantially strengthen reproducibility.
Circularity Check
Risk-gate threshold is fit to SPA-VL and gamma is tuned on the reported safety/utility benchmarks, so parts of the headline ASR/utility numbers are fitted rather than predicted; maximal steering also collapses to the unsafe prototype by construction.
specific steps
-
fitted input called prediction
[Sec. 3.2 (Eq. 5), Sec. 4.1 Implementation details, Appendix A.4, Appendix B]
"To derive risk scores, we use S_i values from unsafe SPA-VL samples... with the mean used as a baseline S_base... r(S_i)=σ(α(S_i−S_base))... For S_base and α, as S_i distributions differ across models, they are adaptively determined by scores from 100 samples from SPA-VL... both S_base and α are derived from the distribution of similarity scores S_i computed on 100 SPA-VL samples... SPA-VL... contains 93.3k preference samples... along with 530 test samples (265 safe and 265 unsafe)... Following Ding et al. (2024), we report ASR on the 265 harmful test queries."
The operating point of the risk gate (Eq. 5) is set from SPA-VL similarity scores, and the headline SPA-VL ASR in Table 1 is reported on SPA-VL's 265 harmful test queries. The paper never states whether the 100 calibration samples are disjoint from those 265 test queries. If they are drawn from the same test split, the SPA-VL ASR is a self-classification of the calibration data, not an out-of-sample prediction: the threshold is fitted to the very unsafe queries whose refusal is then presented as a measured attack-success reduction.
-
fitted input called prediction
[Sec. 4.3 'Effect of γ and N in EWRE', Fig. 8]
"We vary γ and N to assess their impact on safety and utility... We set γ=0.3 as the default, as it achieves the best trade-off, minimizing ASR while preserving utility close to its original score. ... Safety is evaluated by average ASR on MM-Safety, SPA-VL, and FigStep, and utility is evaluated by MM-Vet scores."
The default γ=0.3 is selected by sweeping the exact metrics and benchmarks that appear in Table 1: average ASR on MM-Safety, SPA-VL, and FigStep, and MM-Vet utility. Thus the reported safety and utility numbers for the final method are partly selected on the evaluation sets, not predicted on unseen data. This is a weaker form of circularity than using the same data for both fitting and evaluation, but it makes the headline reductions partially fitted.
-
self definitional
[Sec. 3.2 Eq. (3)-(4), Sec. 3.3 Eq. (6)-(7)]
"When S_i is high, the query resembles unsafe prototypes and is likely to trigger a refusal... the refusal vector v_n at the last layer is computed as: v_n = µ_u^n − x_i^n... ˜x_i^n = x_i^n + r(S_i)·v_n."
Combining Eq. (6) and Eq. (7), at r(S_i)=1 the steered activation is exactly the unsafe prototype µ_u^n, which Eq. (3) defines as the mean activation of refusal-triggering unsafe text queries. Therefore 'maximal steering produces refusal-like output' is true by construction rather than as an independently derived prediction. The empirical content is limited to the actual ASR after autoregressive decoding; the risk estimate itself is definitionally a similarity to the unsafe-class mean.
full rationale
The paper is not a self-citation chain: no load-bearing result is justified only by the authors' prior work, and the unsafe-prototype ablation with Anthropic RTD provides some independent support. However, the central safety evaluation contains a calibration/evaluation overlap. S_base and α are fit to 100 SPA-VL samples, while the SPA-VL ASR is reported on SPA-VL's 265 harmful test queries, with no stated disjoint split; if the calibration samples come from the test split, that headline number is a fit, not a prediction. In addition, γ=0.3 is selected by sweeping ASR/utility on the very benchmarks reported in Table 1, so the reported reductions are partially selected rather than fully predicted. Finally, the refusal vector makes maximal steering collapse to the unsafe prototype by Eq. 7, so refusal under high risk is partly tautological. These issues affect the strength of the generalization claim but do not reduce the entire paper to its inputs: the attention/FDR analyses, the cross-benchmark transfer of the SPA-VL threshold to MM-Safety and FigStep, and the prototype-source ablation are independent evidence. A score of 5 reflects this partial circularity.
Axiom & Free-Parameter Ledger
free parameters (4)
- S_base (per-model risk threshold) =
0.711 (LLaVA-7B), 0.871 (LLaVA-13B), 0.611 (Qwen-VL-Chat), 0.549 (InternLM-XComposer-2.5)
- alpha (sigmoid slope) =
15.901, 35.261, 11.813, 10.188 per model
- gamma (exponential decay weight) =
0.3
- N (number of initial response tokens) =
3
axioms (4)
- domain assumption Refusal behavior is fully reflected in the first few (N=3) response tokens.
- domain assumption Unsafe prototypes computed from text-only GPT-4 queries are a valid reference for multimodal refusal states.
- domain assumption Visual grounding is captured by the top-3 cross-modal attention heads.
- domain assumption The generated visual context is an accurate, safe, and non-distorting summary of the image.
read the original abstract
Even modern AI models often remain vulnerable to multimodal queries in which harmful intent is embedded in images. A widely used approach for safety alignment is training with extensive multimodal safety datasets, but the costs of data curation and training are often prohibitive. To mitigate these costs, inference-time alignment has recently been explored, but they often lack generalizability across diverse multimodal jailbreaks and still incur notable overhead due to extra forward passes for response refinement or heavy pre-deployment calibration procedures. Here, we identify insufficient visual attention to safety-critical image regions as one of the key causes of multimodal safety failures. Building on this insight, we propose Multimodal Risk-Adaptive Steering (MoRAS), which enhances safety-critical visual attention via concise visual contexts for accurate multimodal risk assessment. This risk signal enables risk-adaptive steering for direct refusals, reducing inference overhead while remaining generalizable across diverse multimodal jailbreaks. Notably, MoRAS requires only a small calibration set to estimate multimodal risk, substantially reducing pre-deployment overhead. We conduct various empirical validations across multiple benchmarks and MLLM backbones, and observe that the proposed MoRAS consistently mitigates jailbreaks, preserves utility, and reduces computational overhead compared to state-of-the-art inference-time defenses.
Figures
Reference graph
Works this paper leans on
-
[1]
Steps to manufacture illegal drugs
The resulting values for each model are summarized in Tab.3. Table 3:Model-specific parameters for risk assessment. LLaV A-1.5-7B LLaV A-1.5-13B Qwen-VL-Chat InternLM-XComposer-2.5-7B Sbase 0.711 0.871 0.611 0.549 α15.901 35.261 11.813 10.188 14 Preprint Figure 9:List of unsafe text queries generated by GPT-4. B BENCHMARKDETAILS MM-Safety (Liu et al., 202...
2025
-
[2]
URLhttps://arxiv.org/abs/2308.12966. Federico Bianchi, Mirac Suzgun, Giuseppe Attanasio, Paul Rottger, Dan Jurafsky, Tatsunori Hashimoto, and James Zou. Safety-tuned LLaMAs: Lessons from improving the safety of large language models that follow instructions. InThe Twelfth International Conference on Learning Representations,
-
[6]
URLhttps://arxiv.org/abs/ 2306.13394. Deep Ganguli, Liane Lovitt, Jackson Kernion, Amanda Askell, Yuntao Bai, Saurav Kadavath, Ben Mann, Ethan Perez, Nicholas Schiefer, Kamal Ndousse, et al. Red teaming language models to reduce harms: Methods, scaling behaviors, and lessons learned.arXiv preprint arXiv:2209.07858,
-
[8]
Longsafety: Enhance safety for long-context llms
Mianqiu Huang, Xiaoran Liu, Shaojun Zhou, Mozhi Zhang, Qipeng Guo, Linyang Li, Chenkun Tan, Yang Gao, Pengyu Wang, Linlin Li, et al. Longsafety: Enhance safety for long-context llms. arXiv preprint arXiv:2411.06899,
-
[10]
Fangcheng Liu, Yehui Tang, Zhenhua Liu, Yunsheng Ni, Duyu Tang, Kai Han, and Yunhe Wang. Kangaroo: Lossless self-speculative decoding for accelerating llms via double early exiting.Ad- vances in Neural Information Processing Systems, 37:11946–11965, 2024a. Haotian Liu, Chunyuan Li, Yuheng Li, and Yong Jae Lee. Improved baselines with visual instruction tu...
Pith/arXiv arXiv 2024
-
[11]
Sheng Liu, Haotian Ye, Lei Xing, and James Zou. In-context vectors: Making in context learning more effective and controllable through latent space steering.arXiv preprint arXiv:2311.06668,
-
[12]
Rohan Pandey, Rulin Shao, Paul Pu Liang, Ruslan Salakhutdinov, and Louis-Philippe Morency. Cross-modal attention congruence regularization for vision-language relation alignment.arXiv preprint arXiv:2212.10549,
-
[13]
Steering llama 2 via contrastive activation addition.arXiv preprint arXiv:2312.06681,
Nina Panickssery, Nick Gabrieli, Julian Schulz, Meg Tong, Evan Hubinger, and Alexander Matt Turner. Steering llama 2 via contrastive activation addition.arXiv preprint arXiv:2312.06681,
-
[14]
Mllm-protector: Ensuring mllm’s safety without hurting performance
Renjie Pi, Tianyang Han, Jianshu Zhang, Yueqi Xie, Rui Pan, Qing Lian, Hanze Dong, Jipeng Zhang, and Tong Zhang. Mllm-protector: Ensuring mllm’s safety without hurting performance. arXiv preprint arXiv:2401.02906,
-
[15]
Safety alignment should be made more than just a few tokens deep, 2024.URL https://arxiv
Xiangyu Qi, Ashwinee Panda, Kaifeng Lyu, Xiao Ma, Subhrajit Roy, Ahmad Beirami, Prateek Mittal, and Peter Henderson. Safety alignment should be made more than just a few tokens deep, 2024.URL https://arxiv. org/abs/2406.05946,
Pith/arXiv arXiv 2024
-
[16]
Proximal policy optimization algorithms.arXiv preprint arXiv:1707.06347,
John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms.arXiv preprint arXiv:1707.06347,
-
[18]
Peng Wang, Shuai Bai, Sinan Tan, Shijie Wang, Zhihao Fan, Jinze Bai, Keqin Chen, Xuejing Liu, Jialin Wang, Wenbin Ge, et al. Qwen2-vl: Enhancing vision-language model’s perception of the world at any resolution.arXiv preprint arXiv:2409.12191, 2024a. Suge Wang, Deyu Li, Yingjie Wei, and Hongxia Li. A feature selection method based on fisher’s dis- crimina...
-
[19]
Tianlong Wang, Xianfeng Jiao, Yinghao Zhu, Zhongzhi Chen, Yifan He, Xu Chu, Junyi Gao, Yasha Wang, and Liantao Ma. Adaptive activation steering: A tuning-free llm truthfulness improvement method for diverse hallucinations categories. InProceedings of the ACM on Web Conference 2025, pp. 2562–2578, 2025a. Yanbo Wang, Jiyang Guan, Jian Liang, and Ran He. Do ...
Pith/arXiv arXiv 2025
-
[20]
Weihao Yu, Zhengyuan Yang, Linjie Li, Jianfeng Wang, Kevin Lin, Zicheng Liu, Xinchao Wang, and Lijuan Wang. Mm-vet: Evaluating large multimodal models for integrated capabilities.arXiv preprint arXiv:2308.02490,
-
[21]
Separation and concentration in deep networks
John Zarka, Florentin Guth, and St ´ephane Mallat. Separation and concentration in deep networks. arXiv preprint arXiv:2012.10424,
Pith/arXiv arXiv 2012
-
[23]
Yongshuo Zong, Ondrej Bohdal, Tingyang Yu, Yongxin Yang, and Timothy Hospedales. Safety fine-tuning at (almost) no cost: A baseline for vision large language models.arXiv preprint arXiv:2402.02207,
-
[25]
Moreover, when visual contexts are combined with safety prompts, the FDR improves further (red line in Fig
and clearer representational separation between safe and unsafe in- structions. Moreover, when visual contexts are combined with safety prompts, the FDR improves further (red line in Fig. 12), demonstrating that once visual grounding is established, safety prompting can further amplify representational separability. Overall, these findings confirm that in...
2022
-
[26]
For the choice of intermediate layer, we follow Arditi et al
We evaluate activation steering when applied to (i) an intermediate layer and (ii) the last layer. For the choice of intermediate layer, we follow Arditi et al. (2024) and select layer
2024
-
[27]
(2024), we observe only modest safety gains: steering at layer 14 reduces ASR by 11.3% on average, while steering at the final layer achieves a 62.1% reduction
Using the refusal vector definition of Arditi et al. (2024), we observe only modest safety gains: steering at layer 14 reduces ASR by 11.3% on average, while steering at the final layer achieves a 62.1% reduction. In contrast, our refusal vector achieves substantially larger gains, reducing ASR by 59.0% at layer 14 and 89.5% at the final layer, clearly de...
2024
-
[2009]
Yi Ding, Bolian Li, and Ruqi Zhang. Eta: Evaluating then aligning safety of vision language models at inference time.arXiv preprint arXiv:2410.06625,
-
[2017]
Activation scaling for steering and interpreting language models.arXiv preprint arXiv:2410.04962,
Niklas Stoehr, Kevin Du, V ´esteinn Snæbjarnarson, Robert West, Ryan Cotterell, and Aaron Schein. Activation scaling for steering and interpreting language models.arXiv preprint arXiv:2410.04962,
-
[2019]
Seil Kang, Jinyeong Kim, Junhyeok Kim, and Seong Jae Hwang. See what you are told: Visual attention sink in large multimodal models.arXiv preprint arXiv:2503.03321, 2025a. Seil Kang, Jinyeong Kim, Junhyeok Kim, and Seong Jae Hwang. Your large vision-language model only needs a few attention heads for visual grounding. InProceedings of the Computer Vision ...
-
[2020]
Pan Zhang, Xiaoyi Dong, Yuhang Zang, Yuhang Cao, Rui Qian, Lin Chen, Qipeng Guo, Haodong Duan, Bin Wang, Linke Ouyang, et al. Internlm-xcomposer-2.5: A versatile large vision language model supporting long-contextual input and output.arXiv preprint arXiv:2407.03320,
-
[2022]
Jiahui Gao, Renjie Pi, Tianyang Han, Han Wu, Lanqing Hong, Lingpeng Kong, Xin Jiang, and Zhenguo Li. Coca: Regaining safety-awareness of multimodal large language models with con- stitutional calibration.arXiv preprint arXiv:2409.11365,
-
[2023]
Andy Arditi, Oscar Obeso, Aaquib Syed, Daniel Paleka, Nina Panickssery, Wes Gurnee, and Neel Nanda
Kaggle, CC BY-SA 4.0. Andy Arditi, Oscar Obeso, Aaquib Syed, Daniel Paleka, Nina Panickssery, Wes Gurnee, and Neel Nanda. Refusal in language models is mediated by a single direction.arXiv preprint arXiv:2406.11717,
-
[2024]
Yi Ding, Lijun Li, Bing Cao, and Jing Shao. Rethinking bottlenecks in safety fine-tuning of vision language models.arXiv preprint arXiv:2501.18533,
-
[2025]
Igor Fedorov, Kate Plawiak, Lemeng Wu, Tarek Elgamal, Naveen Suda, Eric Smith, Hongyuan Zhan, Jianfeng Chi, Yuriy Hulovatyy, Kimish Patel, et al. Llama guard 3-1b-int4: Compact and efficient safeguard for human-ai conversations.arXiv preprint arXiv:2411.17713,
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.