REVIEW 4 major objections 5 minor 2 cited by
Safe Delta: Consistently Preserving Safety when Fine-Tuning LLMs on Diverse Datasets
T0 review · 4 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Fine-tuned LLM safety can be restored post-hoc: keep only the parameter changes that buy utility cheaply, then add a Hessian-derived compensation vector, preserving nearly all task gains across datasets and models.
desk verdict Genuinely useful post-hoc fine-tuning safety defense with strong experiments, but the multi-delta compensation in Eq. (10) is an unproven approximation, so the central guarantee is weaker than claimed. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the compensation identity of Theorem 4.1, an Optimal Brain Surgeon-style result reapplied to a safety objective: for a single delta $\delta w_m$, the parameter perturbation that realizes that change at minimal safety cost is $C_m = \delta w_m [H^{-1}]_{mm}^{-1} H^{-1}_{:,m}$, with residual cost $\delta L^m_{\text{safe}} = (\delta w_m)^2 / (2[H^{-1}]_{mm})$. Because the utility proxy is simply the squared delta, the selection score simplifies to $r_m = 2[H^{-1}]_{mm}$: the ranking of parameters depends only on the precomputed inverse Hessian diagonal, not on the fine-tuning data. The machinery then does three jobs: it prices each parameter change in safety units, it ranks changes for the greedy knapsack-style selection up to the threshold $\epsilon = s \cdot \tfrac{1}{N_m} \sum_m \tfrac{1}{2}[H^{-1}]_{mm}$, and it constructs the final model $W_{\text{sd}} = W_{\text{orig}} + M \odot \Delta W_{\text{sft}} + C$ with the mask $(I - M)$ protecting the selected utility gains.
What would settle it
After running Safe $\Delta$, directly measure the final model's safety loss on a hold-out safety set and compare it with the summed per-delta estimates the method uses to declare the constraint satisfied; if the measured loss (or the attack success rate on the safety benchmark) exceeds the predicted value when the selected deltas are chosen to lie in the same Hessian subspace, the joint-compensation assumption fails. A simpler version: fine-tune on a dataset engineered so that the kept deltas have overlapping compensation columns and check that the model actually stays within the claimed safety budget.
Extended reading notes
Core claim
On the paper's own terms, the central claim is stated in Theorem 4.1 and the two-step procedure built on it. Adding a single fine-tuning delta $\delta w_m$ to the original aligned weights raises the safety loss $L_{\text{safe}} = \|W X_{\text{safe}} - W_{\text{orig}} X_{\text{safe}}\|_2^2$, and the minimal such increase is $\delta L^m_{\text{safe}} = (\delta w_m)^2 / (2[H^{-1}]_{mm})$, achieved by spreading the change along the vector $C_m = (\delta w_m / [H^{-1}]_{mm}) H^{-1}_{:,m}$, where $H$ is the safety Hessian at the original weights. Safe $\Delta$ uses this quantity as a per-parameter safety price, sorts the deltas by the utility-per-safety-loss ratio $r_m = 2[H^{-1}]_{mm}$, keeps the most favourable ones until the cumulative price reaches a threshold $\epsilon$, and then adds the sum of the individual compensation vectors on the unselected positions. The paper argues this consistently preserves safety while leaving the utility gain from benign fine-tuning nearly intact, and reports experiments supporting it across harmful, dirty, and clean datasets, dataset sizes from 50 to 10,000 examples, three LLMs, and LoRA.
Load-bearing premise
The safety guarantee assumes that the compensation vectors computed for each selected weight change in isolation still work when all of them are added together, so overlapping or correlated effects cannot push the final model's actual safety loss above the budget the estimates claim.
Editorial extensions
If this is right
- Fine-tuning providers can post-process any user-trained model with one cached object — the inverse safety Hessian computed once from the aligned model and a safety dataset — adding roughly 62 seconds per request instead of re-tuning defense hyperparameters per dataset.
- The defence scales with harmful data: attack success rate stays near the original model's level as the harmful fine-tuning set grows from 50 to 200 examples (and to 1K–10K in the extended experiments), where data-augmentation baselines degrade sharply.
- Benign-task utility is largely preserved: on Dirty Summary, Safe Delta reaches 0.489 Rouge-1 F1 versus 0.491 for undefended fine-tuning while cutting ASR from 63.94% to 5.15%, and on Math it keeps 0.334 accuracy versus 0.337 while cutting ASR from 11.52% to 3.33%.
- The same procedure transfers across model families and parameter-efficient fine-tuning: it works on Llama-2-7B-Chat, Llama-2-13B-Chat, Llama-3-8B-Instruct, and on LoRA deltas formed as $\Delta W = AB$.
- A user-controlled threshold $s$ provides a practical safety-utility dial, and the measured trade-off shows a wide range of $s$ where utility is near fine-tuning level while safety remains high.
Reading between the lines
- Because the selection ratio $r_m = 2[H^{-1}]_{mm}$ is independent of the delta magnitudes, the parameter ranking is fixed once the Hessian is known; only the cutoff moves per request. A testable consequence is that an adversary who knows the cached Hessian can predict which changes will be kept and which compensated, then shape fine-tuning data to hide harmful directions among low-ranked parameter
- The selection step is a 0/1 knapsack solved greedily; since item ratios are static, an exact or better combinatorial selection is a natural extension that could push the utility-safety frontier further, an improvement the paper itself signals.
- The utility estimate is a proxy — squared parameter distance, not task loss; on a small model where a per-request utility Hessian is affordable, one could test whether the proxy-chosen mask differs from an output-space-utility mask and whether that changes reported utility at equal safety.
- The method is linear in the deltas, so an adversary could spread harmful content across many small parameter changes that individually fall under the per-parameter screen; stress-testing Safe Delta against such obfuscated harmful fine-tuning sets would probe a gap the paper's benchmarks do not cover.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. Safe Delta proposes a post-hoc defense for fine-tuned LLMs. After standard fine-tuning, the method selects a subset of delta parameters (W_sft - W_orig) that are judged to give high utility per unit safety cost, and then adds a compensation vector inspired by Optimal Brain Surgeon to mitigate safety degradation. The safety cost is computed via the Hessian of a layer-wise quadratic output-distance loss on a fixed safety dataset. The paper proves a single-delta optimal compensation theorem (Thm 4.1) and uses a greedy selection with ratio r_m = 2[H^{-1}]_{mm}, followed by summing per-delta compensation vectors. Experiments on PureBad, Identity Shift, Dirty Summary, and Math datasets with Llama-2-7B-Chat, Llama-3-8B-instruct, and Llama-2-13B-chat show that Safe Delta preserves low ASR/HS while retaining most utility, compared with data-based (SafeInstr, BEA) and weight-based (Safe LoRA, Resta) baselines.
Significance. If the safety guarantee held, Safe Delta would be a valuable practical defense: it requires a one-time Hessian computation, adds ~62s per request, is model-agnostic, supports LoRA, and empirically outperforms baselines across dataset types and sizes. The paper's strengths are its extensive empirical evaluation and the clean OBS derivation for a single delta, together with open-source code and detailed implementation notes. However, the central theoretical claim — that the method 'consistently preserves safety' for arbitrary multi-delta fine-tunes — is not established, because the multi-delta compensation is asserted rather than derived, and the safety guarantee is for a layer-output quadratic proxy rather than the evaluated ASR/HS. The utility claim similarly rests on a parameter-distance proxy rather than measured task utility. These gaps are significant but appear addressable in revision.
major comments (4)
- [§4.3, Eq. (10)] The multi-delta compensation in Eq. (10) is not proven. Theorem 4.1 solves the single-constraint problem min_ΔW 1/2 ΔW^T H ΔW s.t. e_m^T ΔW = δw_m, giving C_m = δw_m/[H^{-1}]_{mm} H^{-1}_{:,m}. For a selected set S, the compensation that actually minimizes the quadratic safety loss while fixing all selected deltas is the joint OBS solution, whose unselected components are H^{-1}_{U,S}(H^{-1}_{S,S})^{-1} δw_S. Equation (10), which sums per-delta vectors and masks selected positions, coincides with the joint solution only when H^{-1}_{S,S} is diagonal. For the actual Hessian H = 2 X_safe^T X_safe, the selected delta coordinates can be strongly correlated, so cross-terms in 1/2 ΔW^T H ΔW are generally nonzero and the post-compensation safety loss can exceed the cumulative estimate Σ_{m∈S} δL_safe^m used in the greedy selection. Thus the abstract's claim that Safe Delta 'consistently preserves safety' is not established for multiple deltas. The ASR/HS experiments do not measure the quadratic layer-output loss against ε, so they cannot close this gap; I suggest either deriving the joint compensation (with a practical approximation) or stating and verifying a diagonality/uncorrelatedness condition.
- [§3, Eq. (2) vs §4.2, Eqs. (4)-(5)] The theoretical guarantee is for a proxy, not the declared safety objective. Equation (2) constrains L_safe(W_sd) - L_safe(W_orig) ≤ ε, where L_safe is a loss on the safety dataset, but the method subsequently replaces this with layer-wise quadratic output distances in Eqs. (4)-(5) and per-layer thresholds of the form ε = s·mean(...). The paper never shows that the layer-output distance bound implies a bound on the actual safety loss L_safe, nor that it implies the ASR/HS metrics on which safety is evaluated. Consequently, the statement 'consistently preserves safety' in the abstract is not a theorem about the evaluated metrics; it is an empirical observation. The authors should either prove a transfer bound from the quadratic proxy to the safety loss/metric or clearly limit the theoretical claim to the proxy.
- [§4.3, Eqs. (7)-(8)] The utility objective in Eq. (2) is task loss on D_sft, but the method optimizes parameter distance L_util = ||W_sd - W_orig||^2. The claim that small parameter distance 'naturally constrains' output perturbation (Appendix E.2) is a heuristic; it is not proven and does not directly control task utility. The empirical utility scores in Tables 3-4 are close to the fine-tuned model, but the selection procedure does not explicitly maximize task performance. If the authors wish to claim 'utility gain remains unaffected', they should measure task utility directly in the selection or provide a Lipschitz-style argument connecting parameter distance to the task loss.
- [§5.1 / Appendix E.3] The Safe LoRA threshold is tuned on the Dirty Summary dataset, which is also the evaluation dataset for that scenario ('we optimize this parameter on the Dirty Summary dataset, selecting a threshold of 0.52'). This is test-set tuning. The comparison in Table 3 and Figure 5(b) is therefore not apples-to-apples: Safe Delta's s=0.1 is fixed, while Safe LoRA is given access to the evaluation split. Please re-tune the baseline on a separate validation set or report results without tuning.
minor comments (5)
- [§5.3] There is a typo in 'senario' in the first sentence; please correct it.
- [Tables 2-4] The main results report single runs without error bars or standard deviations, even though Section 5.9 averages time cost over five trials. Given the randomness of fine-tuning and the use of GPT-4 as a judge, please report means and variances over multiple seeds for the main safety and utility numbers.
- [Figure 2] The figure caption and text refer to a 'Selective metric' that is not defined in the main text; please clarify what the y-axis represents and how the numbers are computed.
- [Appendix E.2] The Hessian is computed on 512 safe examples generated from AdvBench, while the evaluation benchmark uses 330 questions across 11 policy categories. Please discuss whether the safety examples cover the same distribution as the benchmark, since a mismatch could affect the validity of the layer-output proxy.
- [§1, Contributions] The claim that Safe Delta is 'the first method to jointly estimate safety degradation and dynamically optimize delta parameter' is strong; consider softening it or substantiating the novelty in light of related safety re-alignment methods (e.g., NLSR, Booster) cited in the paper.
Circularity Check
No circularity: the safety/utility claims are tested on external benchmarks, and the proxy-based selection/compensation chain is internally derived rather than fitted to the evaluation.
full rationale
Safe Delta's derivation is self-contained, and its headline claims are checked against external benchmarks, so no circular step is present. The safety proxy L_safe = ||W_sd X_safe - W_orig X_safe||_2^2 (Eq. 5) is the objective being optimized; Theorem 4.1 (Eq. 6) solves the single-delta constrained quadratic minimization for that proxy, and Eq. (10) is the paper's chosen multi-delta extrapolation. This is an optimization construction, not a prediction that reduces to its inputs: the safety evaluation in Section 5.1 uses the Policy-Oriented Safety Evaluation Benchmarks of Qi et al. (2024) with ASR and harmfulness score, and utility is assessed with MMLU, MT-Bench, Rouge-1 F1, and GSM8k accuracy, none of which is defined in terms of the selected mask M, the compensation C, or the layer-output loss L_safe. The scaling factor s = 0.1 is a fixed hyperparameter, not fitted to the evaluation metrics. Self-citations in the paper (Appendix F background references to the authors' prior work on adversarial examples and multi-objective optimization) are not load-bearing for the Safe Delta construction. The paper's own Limitation section acknowledges greedy selection as a limitation, and Appendix C proves only the single-delta theorem; these are completeness/rigor gaps rather than circular reasoning. In particular, the joint optimality of Eq. (10) for multiple deltas is not established, but that is a correctness concern, not a case of the derivation being equivalent to its inputs by definition.
Assumptions & free parameters
free parameters (2)
- Threshold scaling factor s =
0.1
- Safe LoRA threshold =
0.52
assumptions (4)
- domain assumption L_safe = ||W X_safe - W_orig X_safe||^2 is a valid proxy for model safety
- domain assumption Parameter distance ||W_sd - W_orig||^2 approximates utility loss on the fine-tuning task
- ad hoc to paper The sum of per-delta OBS compensations approximates the joint optimal compensation
- domain assumption The safety dataset used for Hessian computation is representative of the evaluation benchmark
Cite this review
Pith. "Pith review of Safe Delta: Consistently Preserving Safety when Fine-Tuning LLMs on Diverse Datasets." pith.science (2026). https://pith.science/paper/IGC4CW72
@misc{pith2026250512038,
author = {Pith},
title = {Pith review of: Safe Delta: Consistently Preserving Safety when Fine-Tuning LLMs on Diverse Datasets},
year = {2026},
howpublished = {\url{https://pith.science/paper/IGC4CW72}},
note = {Machine review of arXiv:2505.12038}
}
read the original abstract
Large language models (LLMs) have shown great potential as general-purpose AI assistants across various domains. To fully leverage this potential in specific applications, many companies provide fine-tuning API services, enabling users to upload their own data for LLM customization. However, fine-tuning services introduce a new safety threat: user-uploaded data, whether harmful or benign, can break the model's alignment, leading to unsafe outputs. Moreover, existing defense methods struggle to address the diversity of fine-tuning datasets (e.g., varying sizes, tasks), often sacrificing utility for safety or vice versa. To address this issue, we propose Safe Delta, a safety-aware post-training defense method that adjusts the delta parameters (i.e., the parameter change before and after fine-tuning). Specifically, Safe Delta estimates the safety degradation, selects delta parameters to maximize utility while limiting overall safety loss, and applies a safety compensation vector to mitigate residual safety loss. Through extensive experiments on four diverse datasets with varying settings, our approach consistently preserves safety while ensuring that the utility gain from benign datasets remains unaffected.
Figures
Figures from the paper (5 more)
Forward citations
Cited by 2 Pith papers
-
TRACE: Trajectory-Based Safety Patch Learning for LLM Post-Training Realignment
One low-rank adapter, trained across simulated harmful fine-tuning trajectories, restores ≥94% safety on fine-tuned LLMs while keeping task accuracy within ±1.7% of the undefended model.
-
Open Your Eyes: Vision Enhances Message Passing Neural Networks in Link Prediction
Visual features extracted from rendered subgraph images consistently improve message-passing link predictors on seven benchmarks, and an efficient node-centered variant scales to large graphs.
Reference graph
Works this paper leans on
-
[1]
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 global.max substring 't := if while FUNCTION format.date year duplicate empty "emp...
-
[2]
L., Almeida, D., Altenschmidt, J., Altman, S., Anadkat, S., et al
Achiam, J., Adler, S., Agarwal, S., Ahmad, L., Akkaya, I., Aleman, F. L., Almeida, D., Altenschmidt, J., Altman, S., Anadkat, S., et al. Gpt-4 technical report. arXiv preprint, 2023
work page 2023
- [3]
-
[4]
A general language assistant as a laboratory for alignment
Askell, A., Bai, Y., Chen, A., Drain, D., Ganguli, D., Henighan, T., Jones, A., Joseph, N., Mann, B., DasSarma, N., et al. A general language assistant as a laboratory for alignment. arXiv preprint, 2021
work page 2021
-
[5]
Constitutional AI: harmlessness from AI feedback
Bai, Y., Kadavath, S., Kundu, S., Askell, A., Kernion, J., Jones, A., Chen, A., Goldie, A., Mirhoseini, A., McKinnon, C., Chen, C., Olsson, C., et al. Constitutional AI: harmlessness from AI feedback. arXiv preprint, 2022
work page 2022
-
[6]
Bhardwaj, R., Anh, D. D., and Poria, S. Language models are homer simpson! safety re-alignment of fine-tuned language models through task arithmetic. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics, pp.\ 14138--14149, 2024
work page 2024
-
[7]
Bianchi, F., Suzgun, M., Attanasio, G., R \" o ttger, P., Jurafsky, D., Hashimoto, T., and Zou, J. Safety-tuned llamas: Lessons from improving the safety of large language models that follow instructions. In The Twelfth International Conference on Learning Representations,, 2024
work page 2024
-
[8]
Chao, P., Robey, A., Dobriban, E., Hassani, H., Pappas, G. J., and Wong, E. Jailbreaking black box large language models in twenty queries. arXiv preprint, 2023
work page 2023
Show all 74 references
-
[9]
and Kwok, J
Chen, W. and Kwok, J. Multi-objective deep learning with adaptive reference vectors. In Advances in Neural Information Processing Systems, 2022
2022
-
[10]
and Kwok, J
Chen, W. and Kwok, J. You only merge once: Learning the pareto set of preference-aware model merging. arXiv preprint, 2024 a
2024
-
[11]
and Kwok, J
Chen, W. and Kwok, J. T. Efficient pareto manifold learning with low-rank structure. In ICML, 2024 b
2024
-
[12]
Chen, W., Zhang, X., Lin, B., Lin, X., Zhao, H., Zhang, Q., and Kwok, J. T. Gradient-based multi-objective deep learning: Algorithms, theories, applications, and beyond. arXiv preprint, 2025
2025
-
[13]
Training verifiers to solve math word problems
Cobbe, K., Kosaraju, V., Bavarian, M., Chen, M., Jun, H., Kaiser, L., Plappert, M., Tworek, J., Hilton, J., Nakano, R., Hesse, C., and Schulman, J. Training verifiers to solve math word problems. arXiv preprint, 2021
2021
-
[14]
Or-bench: An over-refusal benchmark for large language models
Cui, J., Chiang, W.-L., Stoica, I., and Hsieh, C.-J. Or-bench: An over-refusal benchmark for large language models. arXiv preprint, 2024
2024
-
[15]
Safe RLHF: safe reinforcement learning from human feedback
Dai, J., Pan, X., Sun, R., Ji, J., Xu, X., Liu, M., Wang, Y., and Yang, Y. Safe RLHF: safe reinforcement learning from human feedback. In The Twelfth International Conference on Learning Representations, 2024
2024
-
[16]
and Alistarh, D
Frantar, E. and Alistarh, D. Sparsegpt: Massive language models can be accurately pruned in one-shot. In International Conference on Machine Learning, volume 202, pp.\ 10323--10337, 2023
2023
-
[17]
Gehman, S., Gururangan, S., Sap, M., Choi, Y., and Smith, N. A. Realtoxicityprompts: Evaluating neural toxic degeneration in language models. In Findings of the Association for Computational Linguistics: EMNLP , pp.\ 3356--3369, 2020
2020
-
[18]
SAMS um corpus: A human-annotated dialogue dataset for abstractive summarization
Gliwa, B., Mochol, I., Biesek, M., and Wawer, A. SAMS um corpus: A human-annotated dialogue dataset for abstractive summarization. In Proceedings of the 2nd Workshop on New Frontiers in Summarization, pp.\ 70--79, 2019
2019
-
[19]
T., Zhang, Y., and Wang, M
Gou, Y., Ko, T., Yang, H., Kwok, J. T., Zhang, Y., and Wang, M. Leveraging per image-token consistency for vision-language pre-training. In CVPR, pp.\ 19155--19164, 2023 a
2023
-
[20]
T., and Zhang, Y
Gou, Y., Liu, Z., Chen, K., Hong, L., Xu, H., Li, A., Yeung, D., Kwok, J. T., and Zhang, Y. Mixture of cluster-conditional lora experts for vision-language instruction tuning. arXiv preprint, 2023 b
2023
-
[21]
T., and Zhang, Y
Gou, Y., Chen, K., Liu, Z., Hong, L., Xu, H., Li, Z., Yeung, D., Kwok, J. T., and Zhang, Y. Eyes closed, safety on: Protecting multimodal llms via image-to-text transformation. In ECCV, volume 15075 of Lecture Notes in Computer Science, pp.\ 388--404, 2024
2024
-
[22]
The llama 3 herd of models
Grattafiori, A., Dubey, A., Jauhri, A., Pandey, A., Kadian, A., Al-Dahle, A., Letman, A., Mathur, A., Schelten, A., Vaughan, A., Yang, A., Fan, A., et al. The llama 3 herd of models. arXiv preprint, 2024
2024
-
[23]
and Stork, D
Hassibi, B. and Stork, D. G. Second order derivatives for network pruning: Optimal brain surgeon. In Advances in Neural Information Processing Systems, pp.\ 164--171, 1992
1992
-
[24]
Measuring massive multitask language understanding
Hendrycks, D., Burns, C., Basart, S., Zou, A., Mazeika, M., Song, D., and Steinhardt, J. Measuring massive multitask language understanding. In International Conference on Learning Representations, 2020
2020
-
[25]
Safe lo RA : The silver lining of reducing safety risks when finetuning large language models
Hsu, C.-Y., Tsai, Y.-L., Lin, C.-H., Chen, P.-Y., Yu, C.-M., and Huang, C.-Y. Safe lo RA : The silver lining of reducing safety risks when finetuning large language models. In Advances in Neural Information Processing Systems, 2024
2024
-
[26]
J., Shen, Y., Wallis, P., Allen - Zhu, Z., Li, Y., Wang, S., Wang, L., and Chen, W
Hu, E. J., Shen, Y., Wallis, P., Allen - Zhu, Z., Li, Y., Wang, S., Wang, L., and Chen, W. Lora: Low-rank adaptation of large language models. In The Tenth International Conference on Learning Representations, 2022
2022
-
[27]
Antidote: Post-fine-tuning safety alignment for large language models against harmful fine-tuning
Huang, T., Bhattacharya, G., Joshi, P., Kimball, J., and Liu, L. Antidote: Post-fine-tuning safety alignment for large language models against harmful fine-tuning. arXiv preprint, 2024 a
2024
-
[28]
F., and Liu, L
Huang, T., Hu, S., Ilhan, F., Tekin, S. F., and Liu, L. Harmful fine-tuning attacks and defenses for large language models: A survey. arXiv preprint, 2024 b
2024
-
[29]
F., and Liu, L
Huang, T., Hu, S., Ilhan, F., Tekin, S. F., and Liu, L. Lisa: Lazy safety alignment for large language models against harmful fine-tuning attack. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024 c
2024
-
[30]
Vaccine: Perturbation-aware alignment for large language models against harmful fine-tuning attack
Huang, T., Hu, S., and Liu, L. Vaccine: Perturbation-aware alignment for large language models against harmful fine-tuning attack. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024 d
2024
-
[31]
F., and Liu, L
Huang, T., Hu, S., Ilhan, F., Tekin, S. F., and Liu, L. Booster: Tackling harmful fine-tuning for large language models via attenuating harmful perturbation. In ICLR, 2025
2025
-
[32]
Catastrophic jailbreak of open-source llms via exploiting generation
Huang, Y., Gupta, S., Xia, M., Li, K., and Chen, D. Catastrophic jailbreak of open-source llms via exploiting generation. In The Twelfth International Conference on Learning Representations, 2024 e
2024
-
[33]
Accurate post training quantization with small calibration sets
Hubara, I., Nahshan, Y., Hanani, Y., Banner, R., and Soudry, D. Accurate post training quantization with small calibration sets. In Proceedings of the 38th International Conference on Machine Learning, volume 139 of Proceedings of Machine Learning Research, pp.\ 4466--4475, 2021
2021
-
[34]
Beavertails: Towards improved safety alignment of LLM via a human-preference dataset
Ji, J., Liu, M., Dai, J., Pan, X., Zhang, C., Bian, C., Chen, B., Sun, R., Wang, Y., and Yang, Y. Beavertails: Towards improved safety alignment of LLM via a human-preference dataset. In Oh, A., Naumann, T., Globerson, A., Saenko, K., Hardt, M., and Levine, S. (eds.), NeurIPS, 2023
2023
-
[35]
S., and Solla, S
LeCun, Y., Denker, J. S., and Solla, S. A. Optimal brain damage. In Advances in Neural Information Processing Systems, pp.\ 598--605, 1989
1989
-
[36]
Rouge: A package for automatic evaluation of summaries
Lin, C.-Y. Rouge: A package for automatic evaluation of summaries. In Text summarization branches out, pp.\ 74--81, 2004
2004
-
[37]
Efficient combinatorial optimization for word-level adversarial textual attack
Liu, S., Lu, N., Chen, C., and Tang, K. Efficient combinatorial optimization for word-level adversarial textual attack. IEEE ACM Trans. Audio Speech Lang. Process. , 30: 0 98--111, 2022
2022
-
[38]
Effective and imperceptible adversarial textual attack via multi-objectivization
Liu, S., Lu, N., Hong, W., Qian, C., and Tang, K. Effective and imperceptible adversarial textual attack via multi-objectivization. ACM Trans. Evol. Learn. Optim. , 4 0 (3): 0 16:1--16:23, 2024 a
2024
-
[39]
Autodan: Generating stealthy jailbreak prompts on aligned large language models
Liu, X., Xu, N., Chen, M., and Xiao, C. Autodan: Generating stealthy jailbreak prompts on aligned large language models. In The Twelfth International Conference on Learning Representations, 2024 b
2024
-
[40]
Jailbreaking chatgpt via prompt engineering: An empirical study
Liu, Y., Deng, G., Xu, Z., Li, Y., Zheng, Y., Zhang, Y., Zhao, L., Zhang, T., and Liu, Y. Jailbreaking chatgpt via prompt engineering: An empirical study. arXiv preprint, 2023
2023
-
[41]
and Hutter, F
Loshchilov, I. and Hutter, F. Decoupled weight decay regularization. In International Conference on Learning Representations, 2019
2019
-
[42]
Large language models can be guided to evade ai-generated text detection
Lu, N., Liu, S., He, R., Ong, Y., Wang, Q., and Tang, K. Large language models can be guided to evade ai-generated text detection. Trans. Mach. Learn. Res., 2024, 2024 a
2024
-
[43]
Less is more: Understanding word-level textual adversarial attack via n-gram frequency descend
Lu, N., Liu, S., Zhang, Z., Wang, Q., Liu, H., and Tang, K. Less is more: Understanding word-level textual adversarial attack via n-gram frequency descend. In 2024 IEEE Conference on Artificial Intelligence (CAI), pp.\ 823--830, 2024 b
2024
-
[44]
Training overhead ratio: A practical reliability metric for large language model training systems
Lu, N., Xie, Q., Zhang, H., Fang, W., Zheng, Y., Hu, Z., and Ma, J. Training overhead ratio: A practical reliability metric for large language model training systems. In ISSRE, pp.\ 391--393, 2024 c
2024
-
[45]
Lundberg, S. M. and Lee, S. A unified approach to interpreting model predictions. In Advances in Neural Information Processing Systems, pp.\ 4765--4774, 2017
2017
-
[46]
Training language models to follow instructions with human feedback
Ouyang, L., Wu, J., Jiang, X., Almeida, D., Wainwright, C., Mishkin, P., Zhang, C., Agarwal, S., Slama, K., Ray, A., et al. Training language models to follow instructions with human feedback. In Advances in Neural Information Processing Systems, 2022
2022
-
[47]
Fine-tuning now available for gpt-4o, 2024
Peng, A., Allard, J., and Heidel, S. Fine-tuning now available for gpt-4o, 2024. URL https://openai.com/index/gpt-4o-fine-tuning/. Accessed: 16-Jan-2025
2024
-
[48]
Instruction tuning with GPT-4
Peng, B., Li, C., He, P., Galley, M., and Gao, J. Instruction tuning with GPT-4 . arXiv preprint, 2023
2023
-
[49]
Fine-tuning aligned language models compromises safety, even when users do not intend to! In The Twelfth International Conference on Learning Representations, 2024
Qi, X., Zeng, Y., Xie, T., Chen, P., Jia, R., Mittal, P., and Henderson, P. Fine-tuning aligned language models compromises safety, even when users do not intend to! In The Twelfth International Conference on Learning Representations, 2024
2024
-
[50]
D., Ermon, S., and Finn, C
Rafailov, R., Sharma, A., Mitchell, E., Manning, C. D., Ermon, S., and Finn, C. Direct preference optimization: Your language model is secretly a reward model. In Advances in Neural Information Processing Systems, 2023
2023
-
[51]
Modelgrow: Continual text-to-video pre-training with model expansion and language understanding enhancement
Rao, Z., Ji, L., Xing, Y., Liu, R., Liu, Z., Xie, J., Peng, Z., He, Y., and Chen, Q. Modelgrow: Continual text-to-video pre-training with model expansion and language understanding enhancement. arXiv preprint, 2024
2024
-
[52]
Representation noising: A defence mechanism against harmful finetuning
Rosati, D., Wehner, J., Williams, K., Bartoszcze, L., Gonzales, R., Maple, C., Majumdar, S., Sajjad, H., and Rudzicz, F. Representation noising: A defence mechanism against harmful finetuning. In Globersons, A., Mackey, L., Belgrave, D., Fan, A., Paquet, U., Tomczak, J. M., an...
2024
-
[53]
Shen, L., Chen, W., and Kwok, J. T. Multi-resolution diffusion models for time series forecasting. In ICLR, 2024 a
2024
-
[54]
do anything now
Shen, X., Chen, Z., Backes, M., Shen, Y., and Zhang, Y. "do anything now": Characterizing and evaluating in-the-wild jailbreak prompts on large language models. In Proceedings of the 2024 on ACM SIGSAC Conference on Computer and Communications Security , pp.\ 1671--1685, 2024 b
2024
-
[55]
Axiomatic attribution for deep networks
Sundararajan, M., Taly, A., and Yan, Q. Axiomatic attribution for deep networks. In Proceedings of the 34th International Conference on Machine Learning, volume 70, pp.\ 3319--3328, 2017
2017
-
[56]
J., and Fergus, R
Szegedy, C., Zaremba, W., Sutskever, I., Bruna, J., Erhan, D., Goodfellow, I. J., and Fergus, R. Intriguing properties of neural networks. In Bengio, Y. and LeCun, Y. (eds.), 2nd International Conference on Learning Representations, ICLR 2014, Banff, AB, Canada, April 14-16, 2...
2014 arXiv
-
[57]
Taori, R., Gulrajani, I., Zhang, T., Dubois, Y., Li, X., Guestrin, C., Liang, P., and Hashimoto, T. B. Stanford alpaca: An instruction-following llama model. https://github.com/tatsu-lab/stanford_alpaca, 2023
2023
-
[58]
Llama 2: Open foundation and fine-tuned chat models
Touvron, H., Martin, L., Stone, K., Albert, P., Almahairi, A., Babaei, Y., Bashlykov, N., Batra, S., Bhargava, P., Bhosale, S., et al. Llama 2: Open foundation and fine-tuned chat models. arXiv preprint, 2023
2023
-
[59]
Backdooralign: Mitigating fine-tuning based jailbreak attack with backdoor enhanced safety alignment
Wang, J., Li, J., Li, Y., Qi, X., Hu, J., Li, Y., McDaniel, P., Chen, M., Li, B., and Xiao, C. Backdooralign: Mitigating fine-tuning based jailbreak attack with backdoor enhanced safety alignment. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024
2024
-
[60]
W., Lester, B., Du, N., Dai, A
Wei, J., Bosma, M., Zhao, V., Guu, K., Yu, A. W., Lester, B., Du, N., Dai, A. M., and Le, Q. V. Finetuned language models are zero-shot learners. In International Conference on Learning Representations, 2021
2021
-
[61]
Wei, Y., Huang, Q., Zhang, Y., and Kwok, J. T. KICGPT: large language model with knowledge in context for knowledge graph completion. In Findings of the Association for Computational Linguistics: EMNLP , pp.\ 8667--8683, 2023
2023
-
[62]
T., and Zhang, Y
Wei, Y., Fu, S., Jiang, W., Zhang, Z., Zeng, Z., Wu, Q., Kwok, J. T., and Zhang, Y. GITA: graph to visual and textual integration for vision-language graph reasoning. In Advances in Neural Information Processing Systems, 2024
2024
-
[63]
Open the eyes of mpnn: Vision enhances mpnn in link prediction, 2025
Wei, Y., Wang, X., Zhuang, Z., Chen, Y., Chen, S., Zhang, Y., Zhang, Y., and Kwok, J. Open the eyes of mpnn: Vision enhances mpnn in link prediction, 2025
2025
-
[64]
Backdoor graph condensation
Wu, J., Lu, N., Dai, Z., Fan, W., Liu, S., Li, Q., and Tang, K. Backdoor graph condensation. arXiv Preprint, 2024
2024
-
[65]
Tf-dcon: Leveraging large language models (llms) to empower training-free dataset condensation for content-based recommendation, 2025
Wu, J., Liu, Q., Hu, H., Fan, W., Liu, S., Li, Q., Wu, X.-M., and Tang, K. Tf-dcon: Leveraging large language models (llms) to empower training-free dataset condensation for content-based recommendation, 2025
2025
-
[66]
RLCD: reinforcement learning from contrastive distillation for LM alignment
Yang, K., Klein, D., Celikyilmaz, A., Peng, N., and Tian, Y. RLCD: reinforcement learning from contrastive distillation for LM alignment. In The Twelfth International Conference on Learning Representations, 2024
2024
-
[67]
Y., Zhao, X., and Lin, D
Yang, X., Wang, X., Zhang, Q., Petzold, L., Wang, W. Y., Zhao, X., and Lin, D. Shadow alignment: The ease of subverting safely-aligned language models. arXiv preprint, 2023
2023
-
[68]
NLSR: neuron-level safety realignment of large language models against harmful fine-tuning
Yi, X., Zheng, S., Wang, L., de Melo, G., Wang, X., and He, L. NLSR: neuron-level safety realignment of large language models against harmful fine-tuning. In AAAI, pp.\ 25706--25714, 2025
2025
-
[69]
Yu, R., Chen, W., Wang, X., and Kwok, J. T. Enhancing meta learning via multi-objective soft improvement functions. In ICLR, 2023
2023
-
[70]
GPT-4 is too smart to be safe: Stealthy chat with llms via cipher
Yuan, Y., Jiao, W., Wang, W., Huang, J., He, P., Shi, S., and Tu, Z. GPT-4 is too smart to be safe: Stealthy chat with llms via cipher. In The Twelfth International Conference on Learning Representations, 2024
2024
-
[71]
Removing RLHF protections in GPT-4 via fine-tuning
Zhan, Q., Fang, R., Bindu, R., Gupta, A., Hashimoto, T., and Kang, D. 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 Technologies: Short Pa...
2024
-
[72]
P., Zhang, H., Gonzalez, J
Zheng, L., Chiang, W., Sheng, Y., Zhuang, S., Wu, Z., Zhuang, Y., Lin, Z., Li, Z., Li, D., Xing, E. P., Zhang, H., Gonzalez, J. E., and Stoica, I. Judging llm-as-a-judge with mt-bench and chatbot arena. In Advances in Neural Information Processing Systems, 2023
2023
-
[73]
Model tailor: Mitigating catastrophic forgetting in multi-modal large language models
Zhu, D., Sun, Z., Li, Z., Shen, T., Yan, K., Ding, S., Wu, C., and Kuang, K. Model tailor: Mitigating catastrophic forgetting in multi-modal large language models. In Forty-first International Conference on Machine Learning, 2024
2024
-
[74]
Z., and Fredrikson, M
Zou, A., Wang, Z., Kolter, J. Z., and Fredrikson, M. Universal and transferable adversarial attacks on aligned language models. arXiv preprint, 2023
2023
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.