REVIEW 4 major objections 5 minor 66 references
$\mu$-MoE: Test-Time Pruning as Micro-Grained Mixture-of-Experts
T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Pruning a language model's weights with each prompt's own activations matches or beats static offline pruning, while cutting inference compute roughly in proportion to the active weight fraction.
desk verdict Running Wanda's score on the test prompt's own activations is a simple, plausible trick with real reported gains, but the evidence needs matched baselines and a stability check before I'd trust it. 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 central object is the Wanda score, S'_{i,j}=|W_{i,j}|\cdot\|X_{j,:}\|_2, an activation-aware pruning metric whose product of weight magnitude and input-activation ℓ2-norm requires only a diagonal approximation to the Hessian used by SparseGPT. At test time, the paper replaces the offline calibration tokens with the current prompt's tokens X, applies the score per layer, and keeps the top-ρ fraction of weights per row via a kth-value threshold. The machinery that makes this feasible is Wanda's quadratic complexity O[3dd'+dT+ρdd'T], which gives a complexity ratio relative to full inference of ρ+3/T+1/d' ≈ ρ for long sequences, plus the use of torch.kthvalue to avoid full sorting. This is what turns per-prompt pruning from a costly operation into a near-free one.
What would settle it
Measure the layer-by-layer feedback effect: compute Wanda masks online using the actual pruned activations versus using unpruned reference activations passed only for calibration. If the online-pruned-choice perplexity diverges from the reference as depth grows, the claim that per-prompt Wanda scores are safe under sequential pruning is falsified. A simpler check is to find any prompt where the per-row top-ρ mask according to |W|·‖X‖_2 differs from the oracle-optimal mask so much that online pruning collapses the output.
Extended reading notes
Core claim
The paper's central claim is that applying Wanda's score S'_{i,j}=|W_{i,j}|\cdot\|X_{j,:}\|_2, computed on the activations of the current prompt rather than on fixed offline calibration tokens, selects a per-prompt sparse mask that preserves accuracy as well as or better than static pruning. Over OPT models from 125M to 13B parameters, μ-MoE obtains lower perplexity than offline Wanda and magnitude pruning across WikiText-2, PTB, and C4; on LLaVA-7B it improves accuracy over Wanda and SparseGPT on ScienceQA and TextVQA, with the largest gains at the lowest active-weight fraction tested (40%). The authors interpret this as evidence that each weight can serve as a micro-expert activated per prompt, realizing a task-agnostic mixture of experts without retraining.
Load-bearing premise
The assumption that the prompt's own activation magnitudes reliably mark which weights can be zeroed for that prompt, with no retraining or error correction, is the load-bearing premise; the paper does not analyze how pruning errors compound through layers when later masks are computed from already-pruned activations.
Editorial extensions
If this is right
- Inference cost can scale with the active-weight fraction ρ: at 40% active weights the reported OPT-17B MACs drop from 1.64T to 671B, near-linear in ρ.
- Because each prompt supplies its own calibration tokens, accuracy no longer depends on how well a fixed calibration set matches the deployment domain.
- The method requires no weight updates or retraining; it only zeroes weights temporarily, so a single pretrained model can serve many tasks with different sparse masks.
- The reported gains grow as ρ shrinks, suggesting μ-MoE is most useful at aggressive compression ratios (40% active weights and below).
- The same per-prompt score could be applied to any transformer with linear layers, including vision-language models, as demonstrated on LLaVA-7B.
Reading between the lines
- If the Wanda score is cheap enough to compute, one could cache or predict masks for recurring prompt types (for example, few-shot templates) and amortize the calibration cost across many queries.
- The sequential-pruning feedback loop, where later masks are computed from already-pruned activations, is an implicit dynamical system; analyzing it might reveal whether pruning order or per-layer ρ schedules can further improve the accuracy-cost trade-off.
- A natural extension is to fine-tune with the μ-MoE mask in the loop: if the masks are prompt-dependent, low-rank or LoRA adjustments per active weight could replace simple zeroing.
- The same per-prompt calibration idea could be applied to quantization scales or rank reduction, not just binary masks.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes µ-MoE, a test-time pruning method that applies Wanda's activation-aware weight pruning to each prompt individually, using the prompt's own activations as online calibration. The authors frame the selection of active weights as a mixture of single-parameter micro-experts, and derive a complexity ratio showing that the overhead of online scoring is negligible for sufficiently long sequences. Experiments on OPT models (perplexity on WikiText-2, PTB, C4) and LLaVA-7B (accuracy on ScienceQA and TextVQA) report consistent improvements over static Wanda and SparseGPT baselines, especially at low active-weight ratios.
Significance. If the reported results hold, the paper provides a simple, training-free mechanism for input-adaptive compression that could mitigate calibration domain shift at inference. The use of Wanda's score is well-grounded, the complexity derivation is mostly correct, and the experiments cover a useful range of model sizes and modalities. A notable strength is the empirical demonstration that per-prompt masks can improve over even matched-calibration static pruning in the OPT perplexity tables. However, the central mechanism—sequential pruning with masks computed from already-pruned activations—is not analyzed, and the LLaVA comparisons lack a same-domain static baseline, so the significance is currently conditional on additional validation.
major comments (4)
- [Section 2, 'Instant Wanda Pruning as µ-MoE'] The method computes each layer's mask from activations that have themselves been produced by previously pruned layers. The citation of Williams and Aletras (2023) supports robustness to a single calibration sample for offline static pruning, where calibration activations come from the unpruned model; it does not cover the online sequential setting. The paper provides no layerwise analysis, no comparison of masks chosen with pruned versus unpruned activations, and no error bars, so the observed aggregate gains could be fragile. Please add an ablation that isolates the feedback loop (e.g., compare online sequential pruning against Wanda masks computed from unpruned activations at each layer, and report layerwise score correlation or perplexity as a function of depth).
- [Section 3, Tables 2 and 3] The LLaVA experiments compare µ-MoE against SparseGPT and Wanda calibrated on a different dataset (TextVQA for ScienceQA, ScienceQA for TextVQA). This confounds the effect of test-time adaptation with the effect of calibration mismatch. The claim that µ-MoE 'tackles domain shift' requires a same-domain static baseline, e.g., Wanda calibrated on the training split of the test benchmark. Without such a baseline, part of the reported gains may simply reflect the cost of mismatched calibration rather than the benefit of online adaptation.
- [Section 3, Tables 1–3] No error bars or statistical significance tests are reported. Some improvements are small (e.g., Table 1, OPT-125M at 60% active weights: µ-MoE average 34.1 vs. Wanda (WT2 Calib) 35.1, but individual cells are closer), while the 40% active-weight differences in Table 2 are large. The absence of variance estimates makes it difficult to assess whether the consistent but modest gains in Table 1 are meaningful. Please report standard errors over prompts or repeated calibration runs.
- [Section 2, complexity analysis, and Table 4] The derived complexity ratio ρ + 3/T + 1/d' implies that for T=128 and d'≈4096 the overhead is about 2.4% of full inference. However, Table 4 shows that at 80% active weights the FLOPs are 3.21T, whereas 80% of the full 3.29T would be 2.63T, leaving 0.58T (≈18%) of overhead. This discrepancy is not explained. Please clarify whether scores are computed once per prompt or per generated token, and specify exactly which operations calflops counts; as written, Table 4 appears inconsistent with the paper's own complexity formula.
minor comments (5)
- [Section 3 heading] The heading 'Expriments' should be spelled 'Experiments'.
- [Table 2 caption] The caption contains a typo: 'SpargeGPT' should be 'SparseGPT'.
- [Section 2, Remark 2.1] The remark states that torch.kthvalue has linear theoretical complexity, but the subsequent discussion in Section B notes that torch.topk has O[d′d log(kc)] and torch.kthvalue O[d′d] on average; consider making the distinction between worst-case and average-case explicit in the main text.
- [Related Work, Section A] Dynamic pruning and contextual sparsity methods such as DejaVu (Liu et al., 2023c) are cited but not discussed in the context of the proposed approach; a brief comparison of how test-time weight pruning differs from activation sparsity would help position the contribution.
- [General] The first page includes the note 'Preliminary work.'; if this is intended for a journal submission, that line should be removed or replaced with the appropriate submission status.
Circularity Check
No significant circularity: the method applies the external Wanda score at test time and validates against benchmarks; the µ-MoE label is post-hoc framing rather than a fitted prediction.
full rationale
The paper's central mechanism is Eq. (3), the Wanda activation-aware score from Sun et al. (2023), applied to test-time tokens instead of offline calibration tokens. This is an empirical proposal, not a derivation whose output equals its input: the compression target rho is externally chosen, and the reported improvements are measured perplexity and accuracy values on OPT and LLaVA benchmarks compared with static pruning baselines. The single-sample robustness citation (Williams & Aletras, 2023) is external and merely motivational. The "micro-MoE" vocabulary is a post-hoc interpretation of per-weight dynamic pruning; no load-bearing conclusion depends on the naming, and the empirical comparisons retain independent content. The only self-citations appear in the Appendix related-work enumeration of PEFT methods and are not load-bearing. The feedback-loop concern about later-layer masks being computed from already-pruned activations is a genuine unvalidated assumption and a correctness risk, but it is not a case of the conclusion being equivalent to the input. No circular step meets the required quote-and-reduction bar.
Assumptions & free parameters
free parameters (2)
- active weight ratio rho =
0.60, 0.50, 0.40 (and 0.20 to 0.80 in figures)
- token length T =
128
assumptions (4)
- domain assumption Wanda's activation-aware score ranks weight importance accurately enough for pruning.
- domain assumption Per-prompt activations are a sufficient calibration signal.
- ad hoc to paper Sequential layer-wise pruning with masks computed from pruned upstream activations remains near-optimal.
- standard math Quickselect-based kthvalue has average-case linear complexity, making pruning overhead O[dd'] and the ratio approximately rho for large T.
invented entities (1)
-
micro-expert (single-parameter weight multiplier)
Cite this review
Pith. "Pith review of $\mu$-MoE: Test-Time Pruning as Micro-Grained Mixture-of-Experts." pith.science (2026). https://pith.science/paper/JTECTJH2
@misc{pith2026250518451,
author = {Pith},
title = {Pith review of: $\mu$-MoE: Test-Time Pruning as Micro-Grained Mixture-of-Experts},
year = {2026},
howpublished = {\url{https://pith.science/paper/JTECTJH2}},
note = {Machine review of arXiv:2505.18451}
}
abstract
To tackle the huge computational demand of large foundation models, activation-aware compression techniques without retraining have been introduced. However, since these rely on calibration data, domain shift may arise for unknown downstream tasks. With a computationally efficient calibration, activation-aware pruning can be executed for every prompt adaptively, yet achieving reduced complexity at inference. We formulate it as a mixture of micro-experts, called $\mu$-MoE. Several experiments demonstrate that $\mu$-MoE can dynamically adapt to task/prompt-dependent structured sparsity on the fly.
Figures
Figures from the paper (1 more)
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 arXiv:2303.08774, 2023
arXiv 2023
-
[3]
Ba, J. and Frey, B. Adaptive dropout for training deep neural networks. Advances in neural information processing systems, 26, 2013
work page 2013
-
[4]
Beyond efficiency: A systematic survey of resource-efficient large language models
Bai, G., Chai, Z., Ling, C., Wang, S., Lu, J., Zhang, N., Shi, T., Yu, Z., Zhu, M., Zhang, Y., et al. Beyond efficiency: A systematic survey of resource-efficient large language models. arXiv preprint arXiv:2401.00625, 2024 a
arXiv 2024
-
[5]
SparseLLM : Towards global pruning for pre-trained language models
Bai, G., Li, Y., Ling, C., Kim, K., and Zhao, L. SparseLLM : Towards global pruning for pre-trained language models. arXiv preprint arXiv:2402.17946, 2024 b
arXiv 2024
-
[6]
Bansal, H., Gopalakrishnan, K., Dingliwal, S., Bodapati, S., Kirchhoff, K., and Roth, D. Rethinking the role of scale for in-context learning: An interpretability-based case study at 66 billion scale. arXiv preprint arXiv:2212.09095, 2022
arXiv 2022
-
[7]
LoTR : Low tensor rank weight adaptation
Bershatsky, D., Cherniuk, D., Daulbaev, T., Mikhalev, A., and Oseledets, I. LoTR : Low tensor rank weight adaptation. arXiv preprint arXiv:2402.01376, 2024
arXiv 2024
-
[8]
J., Frankle, J., and Guttag, J
Blalock, D., Gonzalez Ortiz, J. J., Frankle, J., and Guttag, J. What is the state of neural network pruning? Proceedings of machine learning and systems, 2: 0 129--146, 2020
2020
Show all 66 references
-
[9]
T., Li, Y., Lundberg, S., et al
Bubeck, S., Chandrasekaran, V., Eldan, R., Gehrke, J., Horvitz, E., Kamar, E., Lee, P., Lee, Y. T., Li, Y., Lundberg, S., et al. Sparks of artificial general intelligence: Early experiments with GPT -4. arXiv preprint arXiv:2303.12712, 2023
2023 arXiv
-
[10]
Buehler, E. L. and Buehler, M. J. X-LoRA : Mixture of low-rank adapter experts, a flexible framework for large language models with applications in protein mechanics and molecular design. APL Machine Learning, 2 0 (2), 2024
2024
-
[11]
Self-adaptive network pruning
Chen, J., Zhu, Z., Li, C., and Zhao, Y. Self-adaptive network pruning. In Neural Information Processing: 26th International Conference, ICONIP 2019, Sydney, NSW, Australia, December 12--15, 2019, Proceedings, Part I 26, pp.\ 175--186. Springer, 2019
2019
-
[12]
SuperLoRA : Parameter-efficient unified adaptation for large vision models
Chen, X., Liu, J., Wang, Y., Wang, P., Brand, M., Wang, G., and Koike-Akino, T. SuperLoRA : Parameter-efficient unified adaptation for large vision models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 8050--8055, 2024 a
2024
-
[13]
Expanding performance boundaries of open-source multimodal models with model, data, and test-time scaling
Chen, Z., Wang, W., Cao, Y., Liu, Y., Gao, Z., Cui, E., Zhu, J., Ye, S., Tian, H., Liu, Z., et al. Expanding performance boundaries of open-source multimodal models with model, data, and test-time scaling. arXiv preprint arXiv:2412.05271, 2024 b
2024 arXiv
-
[14]
DeepSeek-AI, Guo, D., Yang, D., Zhang, H., Song, J., Zhang, R., Xu, R., Zhu, Q., Ma, S., Wang, P., Bi, X., Zhang, X., Yu, X., Wu, Y., Wu, Z. F., Gou, Z., Shao, Z., Li, Z., Gao, Z., Liu, A., Xue, B., Wang, B., Wu, B., Feng, B., Lu, C., Zhao, C., Deng, C., Zhang, C., Ruan, C., D...
2025 arXiv
-
[15]
Learning to prune deep neural networks via layer-wise optimal brain surgeon
Dong, X., Chen, S., and Pan, S. Learning to prune deep neural networks via layer-wise optimal brain surgeon. Advances in neural information processing systems, 30, 2017
2017
-
[16]
P., Clark, J
Edalati, A., Tahaei, M., Kobyzev, I., Nia, V. P., Clark, J. J., and Rezagholizadeh, M. KronA : Parameter efficient tuning with kronecker adapter. arXiv preprint arXiv:2212.10650, 2022
2022 arXiv
-
[17]
and Carbin, M
Frankle, J. and Carbin, M. The lottery ticket hypothesis: Finding sparse, trainable neural networks. arXiv preprint arXiv:1803.03635, 2018
2018 arXiv
-
[18]
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, pp.\ 10323--10337. PMLR, 2023
2023
-
[19]
GPTQ : Accurate post-training quantization for generative pre-trained transformers
Frantar, E., Ashkboos, S., Hoefler, T., and Alistarh, D. GPTQ : Accurate post-training quantization for generative pre-trained transformers. arXiv preprint arXiv:2210.17323, 2022
2022 arXiv
-
[20]
Dynamic channel pruning: Feature boosting and suppression
Gao, X., Zhao, Y., Dudziak, ., Mullins, R., and Xu, C.-z. Dynamic channel pruning: Feature boosting and suppression. arXiv preprint arXiv:1810.05331, 2018
2018 arXiv
-
[21]
Han, S., Mao, H., and Dally, W. J. Deep compression: Compressing deep neural networks with pruning, trained quantization and huffman coding. arXiv preprint arXiv:1510.00149, 2015
2015 arXiv
-
[22]
Optimal brain surgeon: Extensions and performance comparisons
Hassibi, B., Stork, D., and Wolff, G. Optimal brain surgeon: Extensions and performance comparisons. Advances in neural information processing systems, 6, 1993
1993
-
[23]
Distilling step-by-step! outperforming larger language models with less training data and smaller model sizes
Hsieh, C.-Y., Li, C.-L., Yeh, C.-K., Nakhost, H., Fujii, Y., Ratner, A., Krishna, R., Lee, C.-Y., and Pfister, T. Distilling step-by-step! outperforming larger language models with less training data and smaller model sizes. arXiv preprint arXiv:2305.02301, 2023
2023 arXiv
-
[24]
J., Shen, Y., Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., Chen, W., et al
Hu, E. J., Shen, Y., Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., Chen, W., et al. LoRA : Low-rank adaptation of large language models. ICLR, 1 0 (2): 0 3, 2022
2022
-
[25]
M., Zhang, Z., and Suh, G
Hua, W., Zhou, Y., De Sa, C. M., Zhang, Z., and Suh, G. E. Channel gating neural networks. Advances in neural information processing systems, 32, 2019
2019
-
[26]
PC-LoRA : Low-rank adaptation for progressive model compression with knowledge distillation
Hwang, I., Park, H., Lee, Y., Yang, J., and Maeng, S. PC-LoRA : Low-rank adaptation for progressive model compression with knowledge distillation. arXiv preprint arXiv:2406.09117, 2024
2024 arXiv
-
[27]
Q., Sablayrolles, A., Roux, A., Mensch, A., Savary, B., Bamford, C., Chaplot, D
Jiang, A. Q., Sablayrolles, A., Roux, A., Mensch, A., Savary, B., Bamford, C., Chaplot, D. S., Casas, D. d. l., Hanna, E. B., Bressand, F., et al. Mixtral of experts. arXiv preprint arXiv:2401.04088, 2024
2024 arXiv
-
[28]
M., Bommarito, M
Katz, D. M., Bommarito, M. J., Gao, S., and Arredondo, P. GPT -4 passes the bar exam. Philosophical Transactions of the Royal Society A, 382 0 (2270): 0 20230254, 2024
2024
-
[29]
Z., Candogan, L
Koike-Akino, T., Tonin, F., Wu, Y., Wu, F. Z., Candogan, L. N., and Cevher, V. Quantum-PEFT : Ultra parameter-efficient fine-tuning. arXiv preprint arXiv:2503.05431, 2025
2025 arXiv
-
[30]
Scaling laws for fine-grained mixture of experts
Krajewski, J., Ludziejewski, J., Adamczewski, K., Pi \'o ro, M., Krutul, M., Antoniak, S., Ciebiera, K., Kr \'o l, K., Odrzyg \'o \'z d \'z , T., Sankowski, P., et al. Scaling laws for fine-grained mixture of experts. arXiv preprint arXiv:2402.07871, 2024
2024 arXiv
-
[31]
Optimal brain damage
LeCun, Y., Denker, J., and Solla, S. Optimal brain damage. Advances in neural information processing systems, 2, 1989
1989
-
[32]
MoE-LlaVa : Mixture of experts for large vision-language models
Lin, B., Tang, Z., Ye, Y., Cui, J., Zhu, B., Jin, P., Zhang, J., Ning, M., and Yuan, L. MoE-LlaVa : Mixture of experts for large vision-language models. arXiv preprint arXiv:2401.15947, 2024 a
2024 arXiv
-
[33]
Runtime neural pruning
Lin, J., Rao, Y., Lu, J., and Zhou, J. Runtime neural pruning. Advances in neural information processing systems, 30, 2017
2017
-
[34]
AWQ : Activation-aware weight quantization for on-device LLM compression and acceleration
Lin, J., Tang, J., Tang, H., Yang, S., Chen, W.-M., Wang, W.-C., Xiao, G., Dang, X., Gan, C., and Han, S. AWQ : Activation-aware weight quantization for on-device LLM compression and acceleration. Proceedings of Machine Learning and Systems, 6: 0 87--100, 2024 b
2024
-
[35]
DeepSeek -v3 technical report
Liu, A., Feng, B., Xue, B., Wang, B., Wu, B., Lu, C., Zhao, C., Deng, C., Zhang, C., Ruan, C., et al. DeepSeek -v3 technical report. arXiv preprint arXiv:2412.19437, 2024
2024 arXiv
-
[36]
Liu, H., Li, C., Wu, Q., and Lee, Y. J. Visual instruction tuning, 2023 a
2023
-
[37]
LoDA : Low-dimensional adaptation of large language models
Liu, J., Koike-Akino, T., Wang, P., Brand, M., Wang, Y., and Parsons, K. LoDA : Low-dimensional adaptation of large language models. In NeurIPS’23 Workshop on on Efficient Natural Language and Speech Processing, 2023 b
2023
-
[38]
and Deng, J
Liu, L. and Deng, J. Dynamic deep neural networks: Optimizing accuracy-efficiency trade-offs by selective execution. In Proceedings of the AAAI conference on artificial intelligence, volume 32, 2018
2018
-
[39]
Deja vu: Contextual sparsity for efficient LLMs at inference time
Liu, Z., Wang, J., Dao, T., Zhou, T., Yuan, B., Song, Z., Shrivastava, A., Zhang, C., Tian, Y., Re, C., et al. Deja vu: Contextual sparsity for efficient LLMs at inference time. In International Conference on Machine Learning, pp.\ 22137--22176. PMLR, 2023 c
2023
-
[40]
Learn to explain: Multimodal reasoning via thought chains for science question answering
Lu, P., Mishra, S., Xia, T., Qiu, L., Chang, K.-W., Zhu, S.-C., Tafjord, O., Clark, P., and Kalyan, A. Learn to explain: Multimodal reasoning via thought chains for science question answering. In The 36th Conference on Neural Information Processing Systems (NeurIPS), 2022
2022
-
[41]
LLM-Pruner : On the structural pruning of large language models
Ma, X., Fang, G., and Wang, X. LLM-Pruner : On the structural pruning of large language models. Advances in neural information processing systems, 36: 0 21702--21720, 2023
2023
-
[42]
A., MacIntyre, R., Bies, A., Ferguson, M., Katz, K., and Schasberger, B
Marcus, M., Kim, G., Marcinkiewicz, M. A., MacIntyre, R., Bies, A., Ferguson, M., Katz, K., and Schasberger, B. The penn treebank: Annotating predicate argument structure. In Human Language Technology: Proceedings of a Workshop held at Plainsboro, New Jersey, March 8-11, 1994, 1994
1994
-
[43]
Pointer sentinel mixture models
Merity, S., Xiong, C., Bradbury, J., and Socher, R. Pointer sentinel mixture models. arXiv preprint arXiv:1609.07843, 2016
2016 arXiv
-
[44]
L., Fei-Fei, L., Hajishirzi, H., Zettlemoyer, L., Liang, P., Cand \`e s, E., and Hashimoto, T
Muennighoff, N., Yang, Z., Shi, W., Li, X. L., Fei-Fei, L., Hajishirzi, H., Zettlemoyer, L., Liang, P., Cand \`e s, E., and Hashimoto, T. s1: Simple test-time scaling. arXiv preprint arXiv:2501.19393, 2025
2025 arXiv
-
[45]
Raffel, C., Shazeer, N., Roberts, A., Lee, K., Narang, S., Matena, M., Zhou, Y., Li, W., and Liu, P. J. Exploring the limits of transfer learning with a unified text-to-text transformer. Journal of machine learning research, 21 0 (140): 0 1--67, 2020
2020
-
[46]
Compressing large language models using low rank and low precision decomposition
Saha, R., Sagan, N., Srivastava, V., Goldsmith, A., and Pilanci, M. Compressing large language models using low rank and low precision decomposition. Advances in Neural Information Processing Systems, 37: 0 88981--89018, 2024
2024
-
[47]
Eigen attention: Attention in low-rank space for KV cache compression
Saxena, U., Saha, G., Choudhary, S., and Roy, K. Eigen attention: Attention in low-rank space for KV cache compression. arXiv preprint arXiv:2408.05646, 2024
2024 arXiv
-
[48]
A., and Etzioni, O
Schwartz, R., Dodge, J., Smith, N. A., and Etzioni, O. Green AI . Communications of the ACM, 63 0 (12): 0 54--63, 2020
2020
-
[49]
Towards VQA models that can read
Singh, A., Natarjan, V., Shah, M., Jiang, Y., Chen, X., Parikh, D., and Rohrbach, M. Towards VQA models that can read. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp.\ 8317--8326, 2019
2019
-
[50]
Sun, M., Liu, Z., Bair, A., and Kolter, J. Z. A simple and effective pruning approach for large language models. arXiv preprint arXiv:2306.11695, 2023
2023 arXiv
-
[51]
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 arXiv:2307.09288, 2023
2023 arXiv
-
[52]
Neurons in large language models: Dead, n-gram, positional
Voita, E., Ferrando, J., and Nalmpantis, C. Neurons in large language models: Dead, n-gram, positional. arXiv preprint arXiv:2309.04827, 2023
2023 arXiv
-
[53]
Q-VLM : Post-training quantization for large vision-language models
Wang, C., Wang, Z., Xu, X., Tang, Y., Zhou, J., and Lu, J. Q-VLM : Post-training quantization for large vision-language models. arXiv preprint arXiv:2410.08119, 2024
2024 arXiv
-
[54]
H., and Gao, J
Wang, Y., Agarwal, S., Mukherjee, S., Liu, X., Gao, J., Awadallah, A. H., and Gao, J. AdaMix : Mixture-of-adaptations for parameter-efficient model tuning. arXiv preprint arXiv:2205.12410, 2022
2022 arXiv
-
[55]
Emergent abilities of large language models
Wei, J., Tay, Y., Bommasani, R., Raffel, C., Zoph, B., Borgeaud, S., Yogatama, D., Bosma, M., Zhou, D., Metzler, D., et al. Emergent abilities of large language models. arXiv preprint arXiv:2206.07682, 2022
2022 arXiv
-
[56]
and Aletras, N
Williams, M. and Aletras, N. On the impact of calibration data in post-training quantization and pruning. arXiv preprint arXiv:2311.09755, 2023
2023 arXiv
-
[57]
Mixture of LoRA experts
Wu, X., Huang, S., and Wei, F. Mixture of LoRA experts. arXiv preprint arXiv:2404.13628, 2024
2024 arXiv
-
[58]
Automated fine-grained mixture-of-experts quantization
Xie, Z., Ma, Y., Zheng, X., Chao, F., and Ji, R. Automated fine-grained mixture-of-experts quantization
-
[59]
and McAuley, J
Xu, C. and McAuley, J. A survey on model compression and acceleration for pretrained language models. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 37, pp.\ 10566--10575, 2023
2023
-
[60]
and Chen, H.-H
Yang, Y.-C. and Chen, H.-H. Dynamic DropConnect : Enhancing neural network robustness through adaptive edge dropping strategies. arXiv preprint arXiv:2502.19948, 2025
2025 arXiv
-
[61]
B., Oh, G., and Gong, Y
Yeh, S.-Y., Hsieh, Y.-G., Gao, Z., Yang, B. B., Oh, G., and Gong, Y. Navigating text-to-image customization: From lycoris fine-tuning to model evaluation. In The Twelfth International Conference on Learning Representations, 2023
2023
-
[62]
ASVD : Activation-aware singular value decomposition for compressing large language models
Yuan, Z., Shang, Y., Song, Y., Wu, Q., Yan, Y., and Sun, G. ASVD : Activation-aware singular value decomposition for compressing large language models. arXiv preprint arXiv:2312.05821, 2023
2023 arXiv
-
[63]
J., et al
Yuan, Z., Shang, Y., Zhou, Y., Dong, Z., Zhou, Z., Xue, C., Wu, B., Li, Z., Gu, Q., Lee, Y. J., et al. LLM inference unveiled: Survey and roofline model insights. arXiv preprint arXiv:2402.16363, 2024
2024 arXiv
-
[64]
MiLoRA : Efficient mixture of low-rank adaptation for large language models fine-tuning
Zhang, J., Zhao, Y., Chen, D., Tian, X., Zheng, H., and Zhu, W. MiLoRA : Efficient mixture of low-rank adaptation for large language models fine-tuning. arXiv preprint arXiv:2410.18035, 2024
2024 arXiv
-
[65]
V., et al
Zhang, S., Roller, S., Goyal, N., Artetxe, M., Chen, M., Chen, S., Dewan, C., Diab, M., Li, X., Lin, X. V., et al. OPT : Open pre-trained transformer language models. arXiv preprint arXiv:2205.01068, 2022
2022 arXiv
-
[66]
A survey on model compression for large language models
Zhu, X., Li, J., Liu, Y., Ma, C., and Wang, W. A survey on model compression for large language models. Transactions of the Association for Computational Linguistics, 12: 0 1556--1577, 2024
2024
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.