Pith. sign in

REVIEW 4 major objections 6 minor 44 references

Pruning Weights but Not Truth: Safeguarding Truthfulness While Pruning LLMs

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

Pith's one-line read Unstructured pruning at 50% sparsity can keep LLM lie detection near 88% accuracy.

desk verdict A genuinely new observation about pruning and lie detection, but the evaluation leaks test labels into the method and the main gain over OWL is within noise. read the letter →

arxiv 2509.00096 v2 pith:U2MNVBJ5 submitted 2025-08-27 cs.LG cs.CL

classification cs.LGcs.CL
keywords LLMpruninghallucinationdetectionlieprobingclassifierslayer-wisesparsityactivationoutlierstruthfulnessmodelcompression
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

The paper tries to show that pruning a large language model does not have to destroy its ability to tell true statements from false ones, a capability that lives in the model's internal activation vectors. It reports that standard unstructured pruning at 50% sparsity measurably degrades those activation features, and it proposes a pruning scheme, TPLO, that allocates sparsity unevenly across layers based on where true/false information is most separable and where activation outliers live. If the claim holds, compressed models deployed on edge devices could still be monitored for hallucination, and pruning budgets could be set without silently giving up truthfulness.

What carries the argument

The load-bearing object is the Layer-wise Separability of True and False Distribution (LSD): for each layer, the ratio of between-class variance to within-class variance of the final-token residual-stream activations for true versus false statements. It identifies layer 12 in LLaMA3.1-8B-Instruct as the most discriminative layer and supplies the SWL sparsity prior; TPLO then blends that prior with OWL's layer-wise outlier ratios so that layers rich in both discriminative features and activation outliers are pruned least.

What would settle it

Recompute TPLO's layer-12 choice and layer-wise sparsity using only the training topics, then evaluate on the held-out topics; if the gap over uniform pruning disappears, the 88% figure is fitted to the test distribution rather than a general effect.

Watch

Extended reading notes

Core claim

The paper's central discovery is that lie-detection features in LLMs are not uniformly distributed across layers and that pruning destroys them at different rates in different layers. It defines a per-layer separability score (LSD) from the ratio of between-class to within-class variance of activations for true and false statements, shows that moderate pruning keeps it while heavy pruning degrades it, and then constructs TPLO by combining the separability-weighted sparsity assignment (SWL) with the outlier-ratio-weighted assignment (OWL). The result is a 50%-sparse LLaMA3.1-8B-Instruct whose probing classifiers still reach roughly 88% accuracy on twelve true/false datasets, close to the unpruned model and clearly above uniform Wanda pruning.

Load-bearing premise

The paper's sparsity plan is chosen using the separability of true and false statements measured on the original, unpruned model, and if pruning reorders which layers actually carry that information, the reported gains over uniform pruning would shrink or vanish.

Editorial extensions

If this is right

  • A 50% unstructured-pruned LLaMA3.1-8B-Instruct can retain roughly 88% probing accuracy for true/false statements, close to the unpruned model's accuracy.
  • Uniform pruning with Wanda degrades lie-detection features more than layer-wise allocation does; simply re-weighting by separability (SWL) is not enough and can hurt.
  • TPLO preserves general zero-shot performance and perplexity on par with Wanda while improving truthfulness probing.
  • Adding the enriched TruthfulQA calibration set (ETruthQA) moderately helps TruthfulQA multiple-choice and open-ended generation scores, and DoLa decoding can be combined with TPLO for further gains.

Reading between the lines

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

  • Because TPLO's layer selection and sparsity allocation are computed from the same true/false statement distribution used for evaluation, its measured advantage over uniform pruning may shrink when applied to statement types whose discriminative layer is different; a held-out-topic test would clarify the size of the real gain.
  • The same LSD-plus-outlier alignment idea could be transferred to other safety-relevant internal features, such as bias or refusal directions, where pruning currently risks silent degradation.
  • TPLO's reliance on probing a single layer suggests that multi-layer or subspace-based probes might recover even more of the unpruned model's lie-detection accuracy at higher sparsities.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

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. This paper studies how unstructured pruning at 50% sparsity affects the internal activation features used by probing classifiers to distinguish true from false statements in LLMs. The authors define a layer-wise separability (LSD) metric, observe that layer 12 of LLaMA3.1-8B-Instruct has the highest separability, and propose a baseline SWL that allocates sparsity inversely to separability, followed by TPLO that combines SWL's allocation with OWL's outlier-based layer-wise densities. They also introduce ETruthQA, a GPT-4o-enriched version of TruthfulQA, as calibration data. Experiments with LR, CCS, MM, and TTPD probes on true/false datasets and on TruthfulQA report that TPLO preserves lie-detection accuracy (about 88% at 50% sparsity) better than Wanda and OWL while keeping perplexity and general-task performance comparable.

Significance. If correct, this would be a useful finding: it would show that pruning damages internal truthfulness features in a layer-dependent way and that a simple layer-wise allocation can mitigate the damage. The paper includes several strengths: experiments on three model families, four probing techniques, integration with DoLa, and released code/data. However, the evaluation design contains a training/test leakage in the choice of probe layer and sparsity allocation, and the main comparison to OWL is within one standard deviation, so the central claim is not currently supported. The contribution is potentially interesting but needs a substantially cleaner evaluation before it can be assessed.

major comments (4)
  1. [Section 3.2, Section 4.1, Section 5.2] Test labels leak into the choice of probe layer and into the layer-wise sparsity allocation. LSD is computed in Figure 1 from activations of all true/false statements, and the same statements are later used in the leave-one-topic-out evaluation described in Section 5.2. Thus the held-out topic influences which layer is probed (layer 12 is selected by separability) and how TPLO/SWL distribute sparsity across layers (SWL is defined directly from the LSD values, and TPLO initializes from SWL). Please re-run the evaluation with layer selection and sparsity allocation derived only from the training topics, or from an independent truthfulness corpus, and report per-topic results.
  2. [Table 1] The claimed significant improvement over OWL is not supported by the reported numbers: TPLO-TTPD with C4 (0.8788) differs from OWL-TTPD with C4 (0.8776) by 0.0012, with overlapping standard deviations (0.0044 vs 0.0042); similar overlaps appear in several LR, CCS, and MM rows. No significance tests are provided anywhere in the table or the text. Please add paired significance tests across repeated runs, or clearly state which comparisons are statistically meaningful.
  3. [Section 4.2, Tables 6 and 7] The ETruthQA calibration data is generated by enriching TruthfulQA with GPT-4o, and TruthfulQA is also used as the evaluation benchmark in Tables 6 and 7. This creates a second leakage path for the TruthfulQA results, because the calibration data is derived from the same benchmark on which the pruned models are later tested. Please use a calibration source disjoint from the evaluation benchmark, or evaluate on a held-out split of TruthfulQA that is never used for enrichment.
  4. [Section 3.2, Section 4.1] Several free choices are made with access to the full true/false dataset: the lambda scaling factor for SWL, the number of early layers replaced by OWL values (10, 12, 12 for the three models), the outlier ratio threshold M=5, and the probe layer index. The manuscript provides no sensitivity analysis or validation-based selection for these hyperparameters, so it is unclear how much of TPLO's advantage comes from test-set fitting. Please report sensitivity to these choices and justify them from training data only.
minor comments (6)
  1. [Section 5.2] The text says the probe techniques were introduced in Subsection 4.2, but the probes are described in Section 5.2; please fix the cross-reference.
  2. [Appendix C] There is a typo in the open-ended generation section: 'we employ OpenAI's GPT-4o API to to assess' should read 'to assess'.
  3. [Table 5] The table header uses 'enrichedTruthQA' in the calibration-data column, while the rest of the paper uses 'ETruthQA'; please make the terminology consistent.
  4. [Table 1] The average column is described as the average over 12 true/false datasets, but the table only shows five dataset columns; please show all 12 datasets or explain why the others are omitted.
  5. [Section 4.1 footnote] The footnote says the number of early layers is chosen 'based on Figure 3, 10 and 11 respectively'; this should read 'based on Figures 3, 10, and 11' to avoid ambiguity.
  6. [Figure 2 caption] The caption says 'across several true false datasets'; add a slash or hyphen for readability ('true/false datasets').

Circularity Check

2 steps flagged · score 6.0 of 10

TPLO's layer-wise sparsity and probe layer are chosen from separability computed on all true/false datasets, including the topics later held out for testing; the headline 88% is therefore partly a fitted result rather than an independent prediction.

  1. fitted input called prediction [Sections 3.2, 4.1, 5.2 (LSD/SepPD layer-12 selection, SWL/TPLO sparsity construction, leave-one-topic-out evaluation)]
    "we choose layer 12 (from 0) which exhibits the highest separability, to extract the activation vector ... Firstly, we calculate the Separability Probability Distribution (SepPD) as SepPD = [sep1,sep 2,...,sep L]/ PL l=1 sepl where sepl is separability of the l-th layer from Figure 1 ... we train the probing classifiers on an equal number of internal activations from all but one topic-specific dataset ..., holding out this excluded dataset for testing."

    Figure 1's LSD is computed on true/false statement activations with no topic exclusion. SWL derives each layer's sparsity from SepPD over this LSD, and Section 4.1 states TPLO's density ratio is initialized 'as a copy of SWL's sparsity' (with OWL used for the first ten layers). Section 5.2 then evaluates by holding out one topic at a time from the same twelve true/false datasets. Hence the held-out topic's labels influence (i) which layer (layer 12) is used for probing and (ii) how much sparsity each layer receives. TPLO's advantage over Wanda/OWL in Table 1 is therefore partly an artifact of fitting the pruning allocation to the test distribution rather than a prediction from a general truth-preservation principle.

  2. fitted input called prediction [Section 4.2 (ETruthQA construction) and Section 5.3 / Tables 6-7 (TruthfulQA evaluation)]
    "we utilize GPT-4o (Achiam et al., 2023) to enrich the TruthfulQA benchmark (Lin et al., 2021) to become the supplementary calibration data for pruning."

    ETruthQA is generated by rewriting each statement in the TruthfulQA benchmark, and the same TruthfulQA benchmark is used for evaluation in Tables 6 and 7. Thus the calibration set shares test questions with the evaluation set. Any improvement attributed to incorporating ETruthQA as calibration on TruthfulQA can reflect exposure to the test benchmark rather than a general improvement in truthfulness preservation. The paper's own caveat that ETruthQA 'sometimes improves performance, but not consistently' limits the weight of this step, but for the TruthfulQA results it is a genuine test-set-contaminated input.

full rationale

The central derivation is not self-definitional: LSD is a real measured property, TPLO is a real pruning allocation, and the probing accuracies are genuine forward evaluations of the pruned models. However, the evaluation protocol lacks a nested holdout: the same twelve true/false datasets used to compute LSD (Figure 1) determine the probe layer (layer 12) and the SWL/TPLO per-layer sparsity, and then the same datasets are reused for leave-one-topic-out testing. Consequently the headline 88% accuracy and the Table 1 comparisons to Wanda and OWL are partially fitted to the test labels, so the 'prediction' is not statistically independent. This is the dominant circularity. A second, weaker leakage comes from ETruthQA, which is generated from TruthfulQA and then evaluated on TruthfulQA; the paper itself notes the gains are inconsistent. There is no load-bearing self-citation chain or imported uniqueness theorem in the circularity sense, and the issue is statistical rather than definitional. The absence of significance tests compounds the problem because TPLO-TTPD with C4 (0.8788) versus OWL-TTPD with C4 (0.8776) is within the reported standard deviations, but that is a correctness concern rather than an additional circular step.

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

The central method rests on several hand-chosen quantities (layer range, thresholds, calibration mixture) and on the assumption that original-model separability guides pruned-model pruning. The most serious issue is that the separability measurements use the same statements that are later held out for testing, so the hyperparameters are not chosen independently of the evaluation.

free parameters (5)
  • lambda (SWL sparsity range) = not specified
    Regulates layer-wise sparsity within [s-lambda, s+lambda]; the value is not reported and no sensitivity analysis is given.
  • number of early layers replaced by OWL = 10 for LLaMA3.1-8B, 12 for others
    Hand-chosen based on Figure 3; no justification beyond visual inspection.
  • probe layer index = 12 (8B), 14 (13B), 13 (Mistral)
    Selected as the layer with highest separability computed on the evaluation datasets, which uses test information.
  • outlier ratio threshold M = 5
    Used to compute the outlier ratio in the OWL analysis; the value is arbitrary and not varied.
  • number of ETruthQA samples in calibration = 64 of 128
    Mixed with 64 C4 samples; the choice is not derived from any principle.
assumptions (4)
  • domain assumption Probing classifiers trained on internal activations provide a valid measure of whether an LLM is lying or hallucinating.
    The paper relies on the truth-detection methodology of Buerger et al. (2024) without re-validating it on pruned models; if pruning changes the semantics of activations, probe accuracies may not reflect lie detection.
  • ad hoc to paper The layer-wise separability of true and false statements in the original model remains a reliable indicator of which layers to protect after pruning.
    This is the central premise of SWL and TPLO; the paper does not test whether LSD computed on pruned models would lead to different sparsity allocations.
  • domain assumption The enriched TruthfulQA data generated by GPT-4o preserves the truth value and content of the original statements well enough to serve as calibration data.
    No manual verification or automatic consistency check is reported for the enriched statements.
  • domain assumption Wanda and OWL pruning scores computed on a small calibration set transfer to the test data.
    Standard assumption in LLM pruning, inherited from prior work and not specifically tested here.
invented entities (1)
  • ETruthQA dataset
    purpose: Supplementary calibration data for pruning, generated by enriching TruthfulQA statements with GPT-4o.
    The dataset is derived from the same benchmark used for evaluation, so it does not provide an independent test of generalization.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Pruning Weights but Not Truth: Safeguarding Truthfulness While Pruning LLMs." pith.science (2026). https://pith.science/paper/U2MNVBJ5

@misc{pith2026250900096,
  author       = {Pith},
  title        = {Pith review of: Pruning Weights but Not Truth: Safeguarding Truthfulness While Pruning LLMs},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/U2MNVBJ5}},
  note         = {Machine review of arXiv:2509.00096}
}
read the original abstract

Neural network pruning has emerged as a promising approach for deploying LLMs in low-resource scenarios while preserving downstream task performance. However, for the first time, we reveal that such pruning disrupts LLMs' internal activation features crucial for lie detection, where probing classifiers (typically small logistic regression models) trained on these features assess the truthfulness of LLM-generated statements. This discovery raises a crucial open question: how can we prune LLMs without sacrificing these critical lie detection capabilities? Our investigation further reveals that naively adjusting layer-wise pruning sparsity based on importance inadvertently removes crucial weights, failing to improve lie detection performance despite its reliance on the most crucial LLM layer. To address this issue, we propose Truthful Pruning aligned by Layer-wise Outliers (TPLO), which places greater emphasis on layers with more activation outliers and stronger discriminative features simultaneously. This preserves LLMs' original performance while retaining critical features of inner states needed for robust lie detection. Moreover, we introduce a prompting rule to enrich the TruthfulQA benchmark for better calibrating LLM pruning. Empirical results show that our approach improves the hallucination detection for pruned LLMs (achieving 88% accuracy at 50% sparsity) and enhances their performance on TruthfulQA.

Figures

Figures reproduced from arXiv: 2509.00096 by the authors.

Figure 1
Figure 1. Each curve represents the layer-wise ratio [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. The visualization of the impact of 50% spar [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. The visualization of the SWL layer-wise den [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (5 more)
Figure 5
Figure 5. Figure 5: Mean lie detection accuracy via activation [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Each curve represents the layer-wise ratio [PITH_FULL_IMAGE:figures/full_fig_p014_6.png]
Figure 8
Figure 8. Figure 8: The visualization of the impact of 50% spar [PITH_FULL_IMAGE:figures/full_fig_p015_8.png]
Figure 11
Figure 11. Figure 11: The visualization of the SWL layer-wise density (Our baseline), TPLO layer-wise density (Ours), OWL layer-wise density, and uniform layer-wise density at 50% sparsity, where density = 1 - sparsity. 15 [PITH_FULL_IMAGE:figures/full_fig_p015_11.png]
Figure 10
Figure 10. Figure 10: The visualization of the SWL layer-wise density (Our baseline), TPLO layer-wise density (Ours), OWL layer-wise density, and uniform layer-wise density at 50% sparsity, where density = 1 - sparsity [PITH_FULL_IMAGE:figures/full_fig_p015_10.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

44 extracted references · 6 canonical work pages

  1. [1]

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

  2. [2]

    Amos Azaria and Tom Mitchell. 2023. The internal state of an llm knows when it's lying. arXiv preprint arXiv:2304.13734

  3. [3]

    Guangji Bai, Yijiang Li, Chen Ling, Kibaek Kim, and Liang Zhao. 2024. Sparsellm: Towards global pruning of pre-trained language models. In The Thirty-eighth Annual Conference on Neural Information Processing Systems

  4. [4]

    Abhinav Bandari, Lu Yin, Cheng-Yu Hsieh, Ajay Kumar Jaiswal, Tianlong Chen, Li Shen, Ranjay Krishna, and Shiwei Liu. 2024. Is c4 dataset optimal for pruning? an investigation of calibration data for llm pruning. arXiv preprint arXiv:2410.07461

  5. [5]

    Farima Fatahi Bayat, Xin Liu, H Jagadish, and Lu Wang. 2024. Enhanced language model truthfulness with learnable intervention and uncertainty expression. In Findings of the Association for Computational Linguistics ACL 2024, pages 12388--12400

  6. [6]

    Lennart B \"u rger, Fred A Hamprecht, and Boaz Nadler. 2024. Truth is universal: Robust detection of lies in llms. arXiv preprint arXiv:2407.12831

  7. [7]

    Collin Burns, Haotian Ye, Dan Klein, and Jacob Steinhardt. 2022. Discovering latent knowledge in language models without supervision. arXiv preprint arXiv:2212.03827

  8. [8]

    Changyu Chen, Xiting Wang, Ting-En Lin, Ang Lv, Yuchuan Wu, Xin Gao, Ji-Rong Wen, Rui Yan, and Yongbin Li. 2024. Masked thought: Simply masking partial reasoning steps can improve mathematical reasoning learning of language models. arXiv preprint arXiv:2403.02178

Show all 44 references
  1. [9]

    Hongrong Cheng, Miao Zhang, and Javen Qinfeng Shi. 2024. A survey on deep neural network pruning: Taxonomy, comparison, analysis, and recommendations. IEEE Transactions on Pattern Analysis and Machine Intelligence

  2. [10]

    Yung-Sung Chuang, Yujia Xie, Hongyin Luo, Yoon Kim, James Glass, and Pengcheng He. 2023. Dola: Decoding by contrasting layers improves factuality in large language models. arXiv preprint arXiv:2309.03883

  3. [11]

    Qingxiu Dong, Lei Li, Damai Dai, Ce Zheng, Jingyuan Ma, Rui Li, Heming Xia, Jingjing Xu, Zhiyong Wu, Tianyu Liu, et al. 2022. A survey on in-context learning. arXiv preprint arXiv:2301.00234

  4. [12]

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

  5. [13]

    Gongfan Fang, Hongxu Yin, Saurav Muralidharan, Greg Heinrich, Jeff Pool, Jan Kautz, Pavlo Molchanov, and Xinchao Wang. 2024. Maskllm: Learnable semi-structured sparsity for large language models. arXiv preprint arXiv:2409.17481

  6. [14]

    Leo Gao, Jonathan Tow, Baber Abbasi, Stella Biderman, Sid Black, Anthony DiPofi, Charles Foster, Laurence Golding, Jeffrey Hsu, Alain Le Noac'h, Haonan Li, Kyle McDonell, Niklas Muennighoff, Chris Ociepa, Jason Phang, Laria Reynolds, Hailey Schoelkopf, Aviya Skowron, Lintang S...

  7. [15]

    Shangqian Gao, Chi-Heng Lin, Ting Hua, Tang Zheng, Yilin Shen, Hongxia Jin, and Yen-Chang Hsu. 2024 b . Disp-llm: Dimension-independent structural pruning for large language models. arXiv preprint arXiv:2410.11988

  8. [16]

    Haixia Han, Jiaqing Liang, Jie Shi, Qianyu He, and Yanghua Xiao. 2024. Small language model can self-correct. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, pages 18162--18170

  9. [17]

    Song Han, Jeff Pool, John Tran, and William Dally. 2015. Learning both weights and connections for efficient neural network. Advances in neural information processing systems, 28

  10. [18]

    Junyuan Hong, Jinhao Duan, Chenhui Zhang, Zhangheng Li, Chulin Xie, Kelsey Lieberman, James Diffenderfer, Brian Bartoldson, Ajay Jaiswal, Kaidi Xu, et al. 2024. Decoding compressed trust: Scrutinizing the trustworthiness of efficient llms under compression. arXiv preprint arXi...

  11. [19]

    Yixin Ji, Yang Xiang, Juntao Li, Qingrong Xia, Ping Li, Xinyu Duan, Zhefeng Wang, and Min Zhang. 2024. Beware of calibration data for pruning large language models. arXiv preprint arXiv:2410.17711

  12. [20]

    Albert Q Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, Devendra Singh Chaplot, Diego de las Casas, Florian Bressand, Gianna Lengyel, Guillaume Lample, Lucile Saulnier, et al. 2023. Mistral 7b. arXiv preprint arXiv:2310.06825

  13. [21]

    Kenneth Li, Oam Patel, Fernanda Vi \'e gas, Hanspeter Pfister, and Martin Wattenberg. 2024. Inference-time intervention: Eliciting truthful answers from a language model. Advances in Neural Information Processing Systems, 36

  14. [22]

    Stephanie Lin, Jacob Hilton, and Owain Evans. 2021. https://arxiv.org/abs/2109.07958 Truthfulqa: Measuring how models mimic human falsehoods . CoRR, abs/2109.07958

  15. [23]

    Gui Ling, Ziyang Wang, Yuliang Yan, and Qingwen Liu. 2024. Slimgpt: Layer-wise structured pruning for large language models. arXiv preprint arXiv:2412.18110

  16. [24]

    Samuel Marks and Max Tegmark. 2023. The geometry of truth: Emergent linear structure in large language model representations of true/false datasets. arXiv preprint arXiv:2310.06824

  17. [25]

    Lorenzo Pacchiardi, Alex J Chan, S \"o ren Mindermann, Ilan Moscovitz, Alexa Y Pan, Yarin Gal, Owain Evans, and Jan Brauner. 2023. How to catch an ai liar: Lie detection in black-box llms by asking unrelated questions. arXiv preprint arXiv:2309.15840

  18. [26]

    Jay M Patel and Jay M Patel. 2020. Introduction to common crawl datasets. Getting structured data from the internet: running web crawlers/scrapers on a big data production scale, pages 277--324

  19. [27]

    Rajvardhan Patil and Venkat Gudivada. 2024. A review of current trends, techniques, and challenges in large language models (llms). Applied Sciences, 14(5):2074

  20. [28]

    Jeff Pool, Abhishek Sawarkar, and Jay Rodge. 2021. Accelerating inference with sparsity using the nvidia ampere architecture and nvidia tensorrt. NVIDIA Developer Technical Blog, https://developer. nvidia. com/blog/accelerating-inference-with-sparsityusing-ampere-and-tensorrt

  21. [29]

    Libo Qin, Qiguang Chen, Xiachong Feng, Yang Wu, Yongheng Zhang, Yinghui Li, Min Li, Wanxiang Che, and Philip S Yu. 2024. Large language models meet nlp: A survey. arXiv preprint arXiv:2405.12819

  22. [30]

    Mingjie Sun, Zhuang Liu, Anna Bair, and J Zico Kolter. 2023. A simple and effective pruning approach for large language models. arXiv preprint arXiv:2306.11695

  23. [31]

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

  24. [32]

    Tianduo Wang, Shichen Li, and Wei Lu. 2024. Self-training with direct preference optimization improves chain-of-thought reasoning. arXiv preprint arXiv:2407.18248

  25. [33]

    Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Fei Xia, Ed Chi, Quoc V Le, Denny Zhou, et al. 2022. Chain-of-thought prompting elicits reasoning in large language models. Advances in neural information processing systems, 35:24824--24837

  26. [34]

    Jiateng Wei, Quan Lu, Ning Jiang, Siqi Li, Jingyang Xiang, Jun Chen, and Yong Liu. 2024. Structured optimal brain pruning for large language models. In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing, pages 13991--14007

  27. [35]

    Miles Williams and Nikolaos Aletras. 2023. How does calibration data affect the post-training pruning and quantization of large language models? arXiv preprint arXiv:2311.09755

  28. [36]

    Zhichao Xu, Ashim Gupta, Tao Li, Oliver Bentham, and Vivek Srikumar. 2024. Beyond perplexity: Multi-dimensional safety evaluation of llm compression. arXiv preprint arXiv:2407.04965

  29. [37]

    Lu Yin, You Wu, Zhenyu Zhang, Cheng-Yu Hsieh, Yaqing Wang, Yiling Jia, Mykola Pechenizkiy, Yi Liang, Zhangyang Wang, and Shiwei Liu. 2023. Outlier weighed layerwise sparsity (owl): A missing secret sauce for pruning llms to high sparsity. arXiv preprint arXiv:2310.05175

  30. [38]

    Mingyang Zhang, Hao Chen, Chunhua Shen, Zhen Yang, Linlin Ou, Xinyi Yu, and Bohan Zhuang. 2023. Loraprune: Pruning meets low-rank parameter-efficient fine-tuning. arXiv preprint arXiv:2305.18403

  31. [39]

    Shaolei Zhang, Tian Yu, and Yang Feng. 2024 a . Truthx: Alleviating hallucinations by editing large language models in truthful space. arXiv preprint arXiv:2402.17811

  32. [40]

    Yunxiang Zhang, Muhammad Khalifa, Lajanugen Logeswaran, Jaekyeom Kim, Moontae Lee, Honglak Lee, and Lu Wang. 2024 b . Small language models need strong verifiers to self-correct reasoning. arXiv preprint arXiv:2404.17140

  33. [41]

    Wayne Xin Zhao, Kun Zhou, Junyi Li, Tianyi Tang, Xiaolei Wang, Yupeng Hou, Yingqian Min, Beichen Zhang, Junjie Zhang, Zican Dong, et al. 2023. A survey of large language models. arXiv preprint arXiv:2303.18223

  34. [42]

    Zixuan Zhou, Xuefei Ning, Ke Hong, Tianyu Fu, Jiaming Xu, Shiyao Li, Yuming Lou, Luning Wang, Zhihang Yuan, Xiuhong Li, et al. 2024. A survey on efficient inference for large language models. arXiv preprint arXiv:2404.14294

  35. [43]

    online" 'onlinestring :=

    ENTRY address archivePrefix author booktitle chapter edition editor eid eprint eprinttype howpublished institution journal key month note number organization pages publisher school series title type volume year doi pubmed url lastchecked label extra.label sort.label short.list...

  36. [44]

    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...

Pith tools

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