REVIEW 3 major objections 6 minor 45 references
NQKV: A KV Cache Quantization Scheme Based on Normal Distribution Characteristics
T0 review · 3 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read The paper claims that KV cache blocks are normally distributed, so a fixed 4-bit quantile codebook can quantize them with near-optimal error and negligible model degradation.
desk verdict Plausible 4-bit KV cache quantizer on OPT, but the information-theoretic optimality claim is unsupported; worth refereeing with major revisions. 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 mechanism is per-block quantile quantization with the 4-bit NormalFloat (NF4) codebook: a fixed set of 16 quantiles of the standard normal distribution, used to map each block's standardized values to the nearest codebook entry. NQKV divides the hidden dimension of each key and value tensor into blocks (block size 256 in the experiments), computes a block-level scale, and stores NF4 indices in the KV cache; dequantization is a table lookup. The padding strategy aligns the token dimension to multiples of 16 so that dequantized tensors can use efficient GEMM kernels, keeping the overhead of the storage-based data type low.
What would settle it
Run the same block-level normality test on KV caches from a different model family (e.g., LLaMA or Mistral) across diverse long-context inputs; if a majority of blocks reject normality at alpha=0.05, or if the fixed NF4 codebook's empirical quantization MSE is substantially worse than a per-block optimized codebook (e.g., Lloyd-Max), then the theoretical basis of NQKV collapses, even if its measured accuracy remains acceptable.
Extended reading notes
Core claim
The central discovery is that the elements of the KV cache, both within a token and within blocks of a token, conform to a normal distribution, and that this makes a fixed 4-bit quantile codebook (NF4) near-optimal for per-block quantization. NQKV splits each key and value tensor into blocks along the token dimension, quantizes each block independently to NF4 indices, stores only the 4-bit indices, and dequantizes on the fly during attention. Because the codebook's quantiles match the normal distribution, the quantization error is claimed to be information-theoretically optimal for the block distribution, and because errors are confined to a block, they do not propagate across the token. The paper supports this with Q-Q plots, D'Agostino-Pearson tests on 16 blocks of one model, and zero-shot accuracy tables on OPT models, plus throughput and memory measurements.
Load-bearing premise
The paper assumes that KV cache elements within every block are normally distributed; this is supported only by visual Q-Q plots and D'Agostino-Pearson tests on 16 blocks from one model (OPT-6.7B) at a few layers, without a stated sampling protocol or correction for multiple testing, and without checking distributional drift across layers, contexts, or other model families.
Editorial extensions
If this is right
- KV cache memory can be cut by roughly 75% on OPT-class models with a reported average zero-shot accuracy drop below one percentage point.
- Under the reported settings, NQKV lets the KV-cache-enabled model run with a 2x larger batch size or a 4x longer sequence length than SmoothQuant's KV cache allows, and delivers up to 9.3x throughput over running without a KV cache on OPT-30B.
- NQKV is orthogonal to weight-activation quantization: combining it with SmoothQuant's W8A8 keeps average accuracy within about one point on the tested OPT models.
- Because the method is fine-tuning-free and operates block-wise along the token dimension, it can be plugged into existing inference systems and combined with offloading or paged attention.
- The padding scheme limits the dequantization overhead so the throughput loss relative to unquantized KV cache stays below 20% in the measured configurations.
Reading between the lines
- If block-level normality holds across model families, the same fixed NF4 codebook could be standardized in inference engines, and per-block scaling would replace per-token or per-channel quantization; this is a testable claim the paper does not establish.
- Because the codebook is fixed and derived from the standard normal, layers or heads whose KV distributions drift (e.g., at very long contexts) could accumulate error; a per-layer or per-head codebook, or an online recalibration of quantiles, is a natural extension the paper leaves open.
- The reported 9.3x speedup is specific to one OPT-30B configuration where the baseline without KV cache is memory-bound; in settings with ample memory the speedup will be smaller, so the headline number should be read as a ceiling from a memory-constrained case.
- The dequantization overhead could be amortized by fusing table lookup into the attention kernel rather than materializing FP16 tensors, which would reduce the under-20% throughput loss the authors report.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes NQKV, a 4-bit KV-cache quantization scheme for OPT models. It claims that elements of the KV cache follow a normal distribution both within tokens and within blocks, and uses this to justify a per-block quantile quantizer based on the NF4 codebook. The authors report negligible accuracy loss on seven zero-shot tasks across OPT-125M to OPT-30B, demonstrate orthogonality with SmoothQuant, and report memory savings that allow larger batch sizes and longer sequences, with throughput up to 9.3x higher than a no-KV-cache baseline. The central theoretical claim is that per-block quantile quantization achieves information-theoretically optimal quantization error because the block data are normal.
Significance. If the empirical results are representative, NQKV provides a simple, fine-tuning-free 4-bit KV-cache quantizer with 60-80% memory savings and only small accuracy degradation on the tested OPT models, and it is orthogonal to weight/activation quantization methods such as SmoothQuant. The accuracy tables and memory measurements are concrete empirical contributions, and the streaming append-only design is a sensible practical choice. However, the paper's central theoretical justification, the information-theoretic optimality claim, is not substantiated by the described algorithm, and the normality evidence is too thin to establish the premise across layers, contexts, and model families. The practical method may still be useful even if the optimality claim is removed, but the current manuscript overstates its theoretical foundation. No code or reproducibility artifacts are provided.
major comments (3)
- [Section 3.2, Fig. 5] The claim that NQKV achieves 'information-theoretically optimal quantization error' is not supported by the algorithm as described. In the prefill and decoding phases, each block is rescaled by its maximum absolute value and then mapped through a fixed, zero-centered NF4 codebook; there is no per-block mean subtraction or standard-deviation normalization anywhere in the formulation or in Fig. 5. A block drawn from N(mu, sigma^2) with nonzero mu is not a standard normal after absmax scaling, so the fixed quantiles are not the optimal quantizer for that block. Even under the normality assumption, the optimality claim requires a derivation showing that the chosen codebook minimizes the expected quantization error for the actual per-block distributions; no such derivation is provided.
- [Section 3.1, Table 1] The normality evidence is insufficient to support the load-bearing premise that every KV-cache block follows a normal distribution. Table 1 reports D'Agostino-Pearson p-values for only 16 blocks from one model (OPT-6.7B), with no description of how tokens or layers were sampled, no multiple-testing correction across the 16 tests, and no coverage of different context lengths, input distributions, or model families. If blocks are heavy-tailed, skewed, or otherwise non-normal, the fixed quantile codebook is no longer justified and the theoretical rationale collapses, even though the empirical accuracy might remain acceptable. The paper should either substantially expand the normality study or revise the theoretical claims to match the evidence.
- [Abstract and Section 5] The phrase 'information-theoretically optimal quantization error' appears in the abstract and the conclusion, but no information-theoretic argument or rate-distortion analysis appears anywhere in the manuscript. The connection between quantile quantization of a standard normal source and optimal quantization error is not established, and the actual algorithm's absmax scaling changes the source distribution. This claim should be either rigorously derived under explicit assumptions or removed as unsupported. As written, it overstates what the paper demonstrates.
minor comments (6)
- [Table 4] The reported 9.3x throughput improvement is relative to the 'SQ' baseline without KV cache, not to an exact FP16 KV-cache baseline; this should be stated clearly in the table caption or text, as should the dequantization overhead relative to 'SQKV' (the exact KV-cache baseline).
- [Table 4, OPT-30B row] In the row for BS=64, SeqLen=512, the 'Saving' column shows an entry of '62.49' followed by a dash, which appears to be a formatting artifact; the memory saving relative to SQ should be reported consistently, and the OOM entry for SQKV should be explained.
- [Abstract and Section 4.1] There is a typo in the abstract: 'an 2×' should be 'a 2×' or '2× larger'. Also, Section 4.1 says 'ARC (Easy) [40]' is in the task list, but the abstract and Table 2 list only 'ARC(Challenge)'; the evaluation configuration should be described consistently.
- [Section 3.1, Fig. 4] The Q-Q plots in Fig. 4 show only three of the sixteen blocks for a single model, and the caption says 'for the sake of demonstration' without reporting the other thirteen; this is too little evidence for the strong claim that all blocks are normal.
- [Section 4.2.1] The accuracy tables report point estimates without error bars or repeated-run variance; for a claim of 'negligible accuracy loss', it would be helpful to know whether differences of 0.1-0.7% are within run-to-run noise.
- [Section 2] The concurrent work cited as [29] (KIVI) is described without a complete venue or date; adding the full citation would help readers compare NQKV with the streaming asymmetric quantization approach.
Circularity Check
No significant circularity: the paper's accuracy and memory-throughput claims are empirical measurements against external benchmarks, and its codebook is imported from external QLoRA work rather than derived from its own conclusions.
full rationale
The paper's central empirical claims — negligible accuracy loss on zero-shot tasks, orthogonality with SmoothQuant, and memory/throughput improvements — are measured against external benchmarks (lm-eval-harness tasks and Wikitext-2 workloads) and compared with FP16/SmoothQuant baselines. These results do not reduce by construction to the paper's normality assumption; they are observed outcomes of a concrete quantization pipeline. The NF4 codebook is not invented or fitted in this paper; it is imported from the external QLoRA work [20], whose information-theoretic optimality claim concerns a standard normal distribution and is independent of the KV-cache results. The D'Agostino-Pearson tests in Table 1 are empirical support for a design premise, not a restatement of the conclusion, so the design is not self-validating. The only notable weakness is a logic/correctness gap: even if each block is normally distributed, the absmax scaling and fixed zero-centered codebook described in Section 3.2 and Fig. 5 do not by themselves produce a standard normal block, so the information-theoretically optimal quantization error claim does not follow from the implemented pipeline as written. That is an invalid or unsupported inference, however, not a circular reduction, and it does not contaminate the measured accuracy, memory, or throughput results. There are no load-bearing self-citations, no fitted parameters relabeled as predictions, and no equation that reduces to its own input.
Assumptions & free parameters
free parameters (1)
- block_size =
256
assumptions (3)
- domain assumption Elements within each block of the KV cache follow a normal distribution.
- domain assumption The NF4 codebook from QLoRA [20] is the correct quantizer for normal data and yields information-theoretically optimal quantization error for block-wise quantization.
- domain assumption KV cache is append-only, so per-token/block encoding can be appended without re-quantizing previous entries.
Cite this review
Pith. "Pith review of NQKV: A KV Cache Quantization Scheme Based on Normal Distribution Characteristics." pith.science (2026). https://pith.science/paper/RHBC7CNY
@misc{pith2026250516210,
author = {Pith},
title = {Pith review of: NQKV: A KV Cache Quantization Scheme Based on Normal Distribution Characteristics},
year = {2026},
howpublished = {\url{https://pith.science/paper/RHBC7CNY}},
note = {Machine review of arXiv:2505.16210}
}
read the original abstract
Large Language Models (LLMs) have demonstrated remarkable proficiency across a wide range of tasks. However, LLMs often require larger batch sizes to enhance throughput or longer context lengths to meet task demands, which significantly increases the memory resource consumption of the Key-Value (KV) cache during inference, becoming a major bottleneck in LLM deployment. To address this issue, quantization is a common and straightforward approach. Currently, quantization methods for activations are limited to 8-bit, and quantization to even lower bits can lead to substantial accuracy drops. To further save space by quantizing the KV cache to even lower bits, we analyzed the element distribution of the KV cache and designed the NQKV algorithm. Since the elements within each block of the KV cache follow a normal distribution, NQKV employs per-block quantile quantization to achieve information-theoretically optimal quantization error. Without significantly compromising model output quality, NQKV enables the OPT model to perform inference with an 2x larger batch size or a 4x longer context length, and it improves throughput by 9.3x compared to when the KV cache is not used.
Figures
Figures from the paper (6 more)
Reference graph
Works this paper leans on
-
[1]
Brown, T., Mann, B., Ryder, N., Subbiah, M., Kaplan, J.D., Dhari- wal, P., Neelakantan, A., Shyam, P., Sastry, G., Askell, A., et al., Zhihang Cai et al.:Preprint submitted to ElsevierPage 7 of 9 NQKV
-
[2]
Yuan, J., Tang, R., Jiang, X., Hu, X., 2023. Llm for patient-trial matching: Privacy-aware data augmentation towards better perfor- mance and generalizability, in: American Medical Informatics As- sociation (AMIA) Annual Symposium
work page 2023
-
[3]
Opt: Open pre-trained transformer language models
Zhang, S., Roller, S., Goyal, N., Artetxe, M., Chen, M., Chen, S., Dewan, C., Diab, M., Li, X., Lin, X.V., et al., 2022. Opt: Open pre-trained transformer language models. arXiv preprint arXiv:2205.01068
arXiv 2022
-
[4]
Longlora: Efficient fine-tuning of long-context large language mod- els
Chen, Y., Qian, S., Tang, H., Lai, X., Liu, Z., Han, S., Jia, J., 2023. Longlora: Efficient fine-tuning of long-context large language mod- els. arXiv preprint arXiv:2309.12307
arXiv 2023
-
[5]
Rptq: Reorder-based post-training quan- tization for large language models
Yuan,Z.,Niu,L.,Liu,J.,Liu,W.,Wang,X.,Shang,Y.,Sun,G.,Wu, Q., Wu, J., Wu, B., 2023. Rptq: Reorder-based post-training quan- tization for large language models. arXiv preprint arXiv:2304.01089
arXiv 2023
-
[6]
Sheng,Y.,Zheng,L.,Yuan,B.,Li,Z.,Ryabinin,M.,Chen,B.,Liang, P., Ré, C., Stoica, I., Zhang, C., 2023. Flexgen: High-throughput generative inference of large language models with a single gpu, in: International Conference on Machine Learning, PMLR. pp. 31094– 31116
work page 2023
-
[8]
Fast transformer decoding: One write-head is all you need
Shazeer, N., 2019. Fast transformer decoding: One write-head is all you need. arXiv preprint arXiv:1911.02150
arXiv 2019
-
[9]
Gqa: Training generalized multi-query transformer models from multi-head checkpoints
Ainslie, J., Lee-Thorp, J., de Jong, M., Zemlyanskiy, Y., Lebrón, F., Sanghai, S., 2023. Gqa: Training generalized multi-query transformer models from multi-head checkpoints. arXiv preprint arXiv:2305.13245
arXiv 2023
Show all 45 references
-
[10]
H2o: Heavy-hitteroracle forefficientgenerativeinferenceoflargelanguagemodels
Zhang, Z., Sheng, Y., Zhou, T., Chen, T., Zheng, L., Cai, R., Song, Z.,Tian,Y.,Ré,C.,Barrett,C.,etal.,2024. H2o: Heavy-hitteroracle forefficientgenerativeinferenceoflargelanguagemodels. Advances in Neural Information Processing Systems 36
2024
-
[11]
arXiv preprint arXiv:2210.17323
Frantar,E.,Ashkboos,S.,Hoefler,T.,Alistarh,D.,2022.Gptq: Accu- ratepost-trainingquantizationforgenerativepre-trainedtransformers. arXiv preprint arXiv:2210.17323
2022 arXiv
-
[12]
Spqr: A sparse-quantized representation for near-lossless llm weight compression
Dettmers, T., Svirschevski, R., Egiazarian, V., Kuznedelev, D., Fran- tar, E., Ashkboos, S., Borzunov, A., Hoefler, T., Alistarh, D., 2023. Spqr: A sparse-quantized representation for near-lossless llm weight compression. arXiv preprint arXiv:2306.03078
2023 arXiv
-
[13]
Smoothquant: Accurate and efficient post-training quantization for large language models, in: International Conference on Machine Learning, PMLR
Xiao, G., Lin, J., Seznec, M., Wu, H., Demouth, J., Han, S., 2023. Smoothquant: Accurate and efficient post-training quantization for large language models, in: International Conference on Machine Learning, PMLR. pp. 38087–38099
2023
-
[14]
Yao, Z., Yazdani Aminabadi, R., Zhang, M., Wu, X., Li, C., He, Y.,
-
[15]
Dettmers, T., Lewis, M., Belkada, Y., Zettlemoyer, L., 2022. Gpt3. int8(): 8-bitmatrixmultiplicationfortransformersatscale.Advances in Neural Information Processing Systems 35, 30318–30332
2022
-
[16]
The case for 4-bit precision: k- bit inference scaling laws, in: International Conference on Machine Learning, PMLR
Dettmers, T., Zettlemoyer, L., 2023. The case for 4-bit precision: k- bit inference scaling laws, in: International Conference on Machine Learning, PMLR. pp. 7750–7774
2023
-
[17]
Attention is all you need
Vaswani,A.,Shazeer,N.,Parmar,N.,Uszkoreit,J.,Jones,L.,Gomez, A.N., Kaiser, Ł., Polosukhin, I., 2017. Attention is all you need. Ad- vances in neural information processing systems 30
2017
-
[18]
Fp8 quantization: The power of the expo- nent.AdvancesinNeuralInformationProcessingSystems35,14651– 14662
Kuzmin, A., Van Baalen, M., Ren, Y., Nagel, M., Peters, J., Blankevoort, T., 2022. Fp8 quantization: The power of the expo- nent.AdvancesinNeuralInformationProcessingSystems35,14651– 14662
2022
-
[19]
Integer or floating point? new outlooks for low-bit quantization on large language models
Zhang, Y., Zhao, L., Cao, S., Wang, W., Cao, T., Yang, F., Yang, M., Zhang, S., Xu, N., 2023. Integer or floating point? new outlooks for low-bit quantization on large language models. arXiv preprint arXiv:2305.12356
2023 arXiv
-
[20]
Qlora: Efficient finetuning of quantized llms
Dettmers, T., Pagnoni, A., Holtzman, A., Zettlemoyer, L., 2024. Qlora: Efficient finetuning of quantized llms. Advances in Neural Information Processing Systems 36
2024
-
[21]
A white paper on neural net- work quantization
Nagel, M., Fournarakis, M., Amjad, R.A., Bondarenko, Y., Van Baalen, M., Blankevoort, T., 2021. A white paper on neural net- work quantization. arXiv preprint arXiv:2106.08295
2021 arXiv
-
[22]
A survey on model compression for large language models
Zhu, X., Li, J., Liu, Y., Ma, C., Wang, W., 2023. A survey on model compression for large language models. arXiv preprint arXiv:2308.07633
2023 arXiv
-
[23]
arXiv preprint arXiv:1510.00149
Han,S.,Mao,H.,Dally,W.J.,2015.Deepcompression: Compressing deepneuralnetworkswithpruning,trainedquantizationandhuffman coding. arXiv preprint arXiv:1510.00149
2015 arXiv
-
[24]
Awq: Activation-awareweightquantizationforllmcompressionandaccel- eration
Lin, J., Tang, J., Tang, H., Yang, S., Dang, X., Han, S., 2023. Awq: Activation-awareweightquantizationforllmcompressionandaccel- eration. arXiv preprint arXiv:2306.00978
2023 arXiv
-
[25]
Squeezellm: Dense-and-sparse quantization
Kim, S., Hooper, C., Gholami, A., Dong, Z., Li, X., Shen, S., Ma- honey, M.W., Keutzer, K., 2023. Squeezellm: Dense-and-sparse quantization. arXiv preprint arXiv:2306.07629
2023 arXiv
-
[26]
Qdrop: Randomly dropping quantization for extremely low-bit post-training quantiza- tion
Wei, X., Gong, R., Li, Y., Liu, X., Yu, F., 2022. Qdrop: Randomly dropping quantization for extremely low-bit post-training quantiza- tion. arXiv preprint arXiv:2203.05740
2022 arXiv
-
[27]
Wei, X., Zhang, Y., Li, Y., Zhang, X., Gong, R., Guo, J., Liu, X.,
-
[28]
Llm-qat: Data-free quan- tization aware training for large language models
Liu,Z.,Oguz,B.,Zhao,C.,Chang,E.,Stock,P.,Mehdad,Y.,Shi,Y., Krishnamoorthi, R., Chandra, V., 2023. Llm-qat: Data-free quan- tization aware training for large language models. arXiv preprint arXiv:2305.17888
2023 arXiv
-
[29]
Kivi: Plug-and-play 2bit kv cache quantization with streaming asymmetric quantization
Liu, Z., Yuan, J., Jin, H., Zhong, S., Xu, Z., Braverman, V., Chen, B., Hu, X., . Kivi: Plug-and-play 2bit kv cache quantization with streaming asymmetric quantization
-
[30]
Efficientmemorymanagementfor largelanguagemodelservingwithpagedattention,in: Proceedingsof the 29th Symposium on Operating Systems Principles, pp
Kwon,W.,Li,Z.,Zhuang,S.,Sheng,Y.,Zheng,L.,Yu,C.H.,Gonza- lez,J.,Zhang,H.,Stoica,I.,2023. Efficientmemorymanagementfor largelanguagemodelservingwithpagedattention,in: Proceedingsof the 29th Symposium on Operating Systems Principles, pp. 611–626
2023
-
[31]
Advances in Neural Information Processing Systems 36
Jin,Y.,Wu,C.F.,Brooks,D.,Wei,G.Y.,2024.𝑠 3: Increasinggpuuti- lization during generative inference for higher throughput. Advances in Neural Information Processing Systems 36
2024
-
[32]
Effi- cient streaming language models with attention sinks
Xiao, G., Tian, Y., Chen, B., Han, S., Lewis, M., 2023. Effi- cient streaming language models with attention sinks. arXiv preprint arXiv:2309.17453
2023 arXiv
-
[33]
Probability plotting methods for the analysis of data
Gnanadesikan, R., Wilk, M.B., 1968. Probability plotting methods for the analysis of data. Biometrika 55, 1–17
1968
-
[34]
Tests for normal distribution in goodness-of-fit techniques
D’Agostino, R.B., Stephens, M., 1986. Tests for normal distribution in goodness-of-fit techniques. Marcel Decker
1986
-
[35]
Thepile: An 800gb dataset of diverse text for language modeling
Gao, L., Biderman, S., Black, S., Golding, L., Hoppe, T., Foster, C., Phang,J.,He,H.,Thite,A.,Nabeshima,N.,etal.,2020. Thepile: An 800gb dataset of diverse text for language modeling. arXiv preprint arXiv:2101.00027
2020 arXiv
-
[36]
Hugging face, in: Introduction to transformers for NLP: With the hugging face library and models to solve problems
Jain, S.M., 2022. Hugging face, in: Introduction to transformers for NLP: With the hugging face library and models to solve problems. Springer, pp. 51–67
2022
-
[37]
Piqa: Reasoning about physical commonsense in natural language, in: Proceedings of the AAAI conference on artificial intelligence, pp
Bisk, Y., Zellers, R., Gao, J., Choi, Y., et al., 2020. Piqa: Reasoning about physical commonsense in natural language, in: Proceedings of the AAAI conference on artificial intelligence, pp. 7432–7439
2020
-
[38]
Wino- grande: An adversarial winograd schema challenge at scale
Sakaguchi, K., Bras, R.L., Bhagavatula, C., Choi, Y., 2021. Wino- grande: An adversarial winograd schema challenge at scale. Com- munications of the ACM 64, 99–106
2021
-
[39]
Hel- laswag: Can a machine really finish your sentence? arXiv preprint arXiv:1905.07830
Zellers, R., Holtzman, A., Bisk, Y., Farhadi, A., Choi, Y., 2019. Hel- laswag: Can a machine really finish your sentence? arXiv preprint arXiv:1905.07830
2019 arXiv
-
[40]
Thinkyouhavesolvedquestionanswering? try arc, the ai2 reasoning challenge
Clark,P.,Cowhey,I.,Etzioni,O.,Khot,T.,Sabharwal,A.,Schoenick, C.,Tafjord,O.,2018. Thinkyouhavesolvedquestionanswering? try arc, the ai2 reasoning challenge. arXiv preprint arXiv:1803.05457
2018 arXiv
-
[41]
Wang, A., Singh, A., Michael, J., Hill, F., Levy, O., Bowman, S.R.,
-
[42]
Bert: Pre- training of deep bidirectional transformers for language understand- ing
Devlin, J., Chang, M.W., Lee, K., Toutanova, K., 2018. Bert: Pre- training of deep bidirectional transformers for language understand- ing. arXiv preprint arXiv:1810.04805 . Zhihang Cai received the B.S. degrees from the school of Xi’an Jiaotong University, Xi’an, China, in201...
2018 arXiv
-
[2018]
arXiv preprint arXiv:1804.07461
Glue: Amulti-taskbenchmarkandanalysisplatformfornatural language understanding. arXiv preprint arXiv:1804.07461 . Zhihang Cai et al.:Preprint submitted to ElsevierPage 8 of 9 NQKV
-
[2020]
Advances in neural information processing systems 33, 1877–1901
Language models are few-shot learners. Advances in neural information processing systems 33, 1877–1901
1901
-
[2022]
Advances in Neural Information Pro- cessing Systems 35, 27168–27183
Zeroquant: Efficient and affordable post-training quantization for large-scale transformers. Advances in Neural Information Pro- cessing Systems 35, 27168–27183
-
[2023]
arXivpreprint arXiv:2304.09145
Outliersuppression+: Accuratequantizationoflargelanguage modelsbyequivalentandoptimalshiftingandscaling. arXivpreprint arXiv:2304.09145
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.