REVIEW 4 major objections 6 minor 1 cited by
Unified Scaling Laws for Compressed Representations
T0 review · 4 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read A compressed representation's capacity is set by how well it reproduces random Gaussian data.
desk verdict The GMSE-based capacity metric is a real idea worth testing, but the paper's core predictive claim is currently supported only by in-sample fits on one architecture and one dataset. 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 representation capacity $\rho(R)$, a number in $(0,1]$ that acts as an effective-parameter multiplier for a compressed representation $R$. Equation (3) sets $\rho(R) = L\,\tanh\!\bigl(F\,\log^{1/4}(\mathrm{GMSE}(R))\bigr)^C$, with $\mathrm{GMSE}(R)$ the Gaussian mean-squared error of $R$ estimated by Monte Carlo on standard normal inputs; $L$, $F$, and $C$ are fitted once per representation family, with $L$ modelling imperfect convergence and $C$ controlling curvature near $\mathrm{GMSE}=1$. This capacity enters the unified law $\mathrm{Loss}(N,D) = A\,(N\rho(R))^{-\alpha} + B\,D^{-\beta} + E$, whose constants $A,B,\alpha,\beta$ are the standard scaling parameters. The mechanism behind the multiplication of $N$ and compression error is Theorem 1, which bounds the average gradient norm at compressed iterates by $N$ times the average squared compression error, independently of the compression type. The multiplicative factorization of $\rho$ across independent compression axes is what lets compound formats be evaluated from simple ones.
What would settle it
Train two formats with equal Gaussian-MSE but different quantizer structure on the same model and data, and fit their capacity from the loss curves; if the fitted capacities differ, Gaussian-MSE is not sufficient. Alternatively, fit the shared $\rho$ curve on 30M-parameter models and predict loss for the same format at 200M parameters or on another dataset; a systematic prediction error beyond the original fit error would falsify the transfer claim.
Extended reading notes
Core claim
On its own terms, the paper's finding is that the parameter efficiency of a compressed representation is not a free fitting constant but an intrinsic property: $\rho(R) = L\,\tanh\!\bigl(F\,\log^{1/4}(\mathrm{GMSE}(R))\bigr)^C$, where $\mathrm{GMSE}(R)$ is the minimal mean-squared error of $R$ when reproducing standard Gaussian data, obtained by a fast Monte Carlo estimate. This capacity sits inside the unified loss law $\mathrm{Loss}(N,D) = A\,(N\rho(R))^{-\alpha} + B\,D^{-\beta} + E$, so a model trained over $R$ behaves like an uncompressed model with $N' = N\rho(R)$ parameters. The fitted capacity curve transfers across bit widths and sparsity levels for the same representation family, extends to vector-quantized lattices, and factorizes across independent compression axes: $\rho(R_1,R_2) = \rho(R_1)\,\rho(R_2)$. The theoretical support is a non-convex convergence bound for Adam with straight-through estimation, whose leading compression-dependent term is the number of parameters $N$ times the average squared error between compressed and uncompressed iterates, matching the multiplicative role $N\rho(R)$ plays in the law.
Load-bearing premise
The load-bearing premise is that a representation's error on random Gaussian data, rather than on real activations or gradients, fully determines its capacity across architectures, datasets, and model sizes.
Editorial extensions
If this is right
- A single fitted capacity curve for a representation type predicts loss for every bit width, sparsity level, or group size of that type, not just the configuration that was trained.
- Any compressed model can be mapped to a dense-equivalent parameter count $N\rho(R)$, so standard parameter-data scaling predictions apply without retraining on the compressed format.
- Because capacity factorizes, the combined effect of weight quantization, weight sparsity, and activation quantization can be computed as a product of individually measured capacities.
- Formats can be ranked by their Gaussian mean-squared error alone, and the law indicates how close a quantizer is to the optimal capacity for its bit budget.
- The RMSE-banded backward masking rule increases measured capacity of sparse training compared with magnitude-pruning baselines at the same sparsity.
Reading between the lines
- Capacity measured on Gaussian data could become a pre-training format-selection procedure: score any proposed quantizer or sparsity pattern by Monte Carlo GMSE before training a model.
- Factorization implies a compositional library: tabulate base capacities for integer and floating-point formats, sparsity patterns, and grouping or outlier schemes, and predict arbitrary combinations by multiplication.
- A natural next check is to log per-step compression error during actual Adam training and compare it with the Gaussian-computed GMSE; that would connect Theorem 1's bound to the fitted law directly.
- The banded backward-masking heuristic suggests a broader design principle: choose training-time masks to minimize the average squared compression error term in the bound rather than reusing the forward mask.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a unified scaling law for training with compressed representations of the form Loss(N,D)=A(Nρ(R))^{-α}+BD^{-β}+E, where representation capacity ρ(R) is a parametric function of the Gaussian mean-squared error of the representation, Eq. (3). The authors report fits across Llama-style 30M-200M models trained on C4 under scalar quantization, sparsity, sparse-quantized, and vector-quantized formats; they claim that capacity is intrinsic and model-independent, factorizes across compression types, and can be used to compare numerical formats and to design improved sparse-training heuristics (RBBM). The theory component (Theorem 1) bounds Adam convergence with straight-through estimation by N times the time-averaged squared compression error.
Significance. The paper is a useful and ambitious integration of two important lines of work, scaling laws and model compression, and it contains a substantial amount of empirical work: roughly 250 training runs across several compression formats, including vector quantization and hybrid sparse-quantized configurations. The GMSE values are computed independently of training and of the fitted capacity values, so the reported correlations are genuine evidence rather than a definitional artifact. If the central claim were established, the capacity metric would be practically valuable for ranking formats without retraining. However, the current evidence is in-sample and restricted to one architecture and one dataset, and the theory does not directly support the Gaussian-MSE functional form, so the significance is conditional on additional validation.
major comments (4)
- [Section 4.1, Eq. (3) and Table 1] The central claim that GMSE predicts capacity is currently supported only by in-sample fits. The parameters L, F, and C in Eq. (3) are fit to the same (GMSE, ρ) points whose fit error is then reported in Table 1; there is no documented held-out split, cross-validation, or out-of-sample prediction test. Figure 3 shows a ranking correlation between GMSE and validation loss, but it does not quantitatively test the claimed functional form. To make the 'prediction' language supportable, the authors should report leave-one-bitwidth or leave-one-sparsity-level fits, or fit on a subset of model sizes and predict the held-out sizes, preferably across an additional architecture and dataset. Without such a test, the fit errors in Table 1 only measure interpolation over the same runs, not predictive power.
- [Section 3, Theorem 1] Theorem 1 bounds E[||∇f(bθ)||^2] by N times the time-averaged squared compression error ||bθt-θt||^2 during optimization, plus standard Adam terms. This bound does not involve GMSE(R) measured on random Gaussian data, and no argument is given that static Gaussian-input reconstruction error is equivalent to, or even monotonically related to, the non-Gaussian, non-stationary, trajectory-averaged compression error of the actual weights. The sentence in Section 4.1 that the theorem 'connects to our notion of capacity' therefore overstates the formal support. The authors should either prove a relevant statement connecting GMSE to the optimization trajectory (for example, under unbiased compression or Gaussian weight distributions) or explicitly present the GMSE-capacity relation as an empirical law rather than a theoretically derived one.
- [Section 7, first caveat; Section 1] The claim that capacity is an 'intrinsic property of the representation, independent of the model and task' is not supported by the experimental scope. All scaling-law fits are for decoder-only Llama-style transformers trained on C4 in the data-rich regime, as the paper itself concedes in Section 7. This is a load-bearing gap because the word 'intrinsic' means transfer across architectures and datasets. The authors should either provide at least one additional architecture (e.g., a BERT-style encoder, a vision transformer, or an MLP) and one additional dataset at comparable scale, or substantially weaken the claim to 'capacity for Llama-style language models on C4' and adjust the title and abstract accordingly.
- [Section 4.3, Figures 6-9] The factorization claim ρ(R1,R2)=ρ(R1)ρ(R2) is presented as a general finding with practical implications, but the evidence shows errors that are not uniformly small. In Figure 6, the absolute error for combinations involving 1-bit and 2-bit quantization reaches values around 0.09, and Section 4.3 excludes 'extreme 2-bit quantization' as a failure case. Since the practical application in Section 5.1 is to predict combined compression configurations without training, the authors should quantify the regime in which the factorization error remains small (in terms of bit width, sparsity, and capacity value) and explain why the 2-bit case is exceptional. Without such a characterization, the statement that 'representation capacity factorizes' is too broad.
minor comments (6)
- [Section 3, Theorem 1] The symbol C is used both for the compression map C: R^N -> R^N and for the constant C = 2√(G∞^2 + ε/N) in the theorem statement and its proof; these should be renamed to avoid ambiguity.
- [Section 4.1, Eq. (3)] The notation ẽρ(GMSE(R)) in Eq. (3) is not consistently distinguished from ρ(R) in the surrounding text; please state explicitly whether Eq. (3) defines ρ itself or an auxiliary function ẽρ, and use the chosen notation throughout.
- [Section 4.3, third bullet] In the third bullet, 'activation sparsity qa' should be 'activation quantization bitwidth qa'; the current text makes the subscript qa inconsistent with the notation used for sparsity.
- [Figure 2(b)] The caption says 'relative errors' while the third panel is labeled 'Absolute error'; please align the caption with the panel label.
- [Appendix C.2, Table 3] The first row of Table 3, 'Decoupled Independently fitted ρ', does not specify the functional form used for ρ; please add the formula or a reference so the comparison across rows is meaningful.
- [Appendix D, Algorithm 1/2] There is a typo in the sentence 'our method is combines ideas'; it should read 'our method combines ideas,' and the notation projgrid in Algorithm 1 should be defined at first use.
Circularity Check
No definitional circularity: GMSE is computed independently of training loss, so the capacity correlation is a falsifiable empirical claim; in-sample fitting is a validation gap, not a circular reduction.
full rationale
The paper's central capacity law is an empirical regression, not a derivation that reduces to its own inputs. The independent variable GMSE(R) is computed by Monte Carlo on standard Gaussian inputs, with no use of the trained losses: Section 4.1 states "The GMSE(R) is easily computable for any representation," and Appendix C.1 confirms that "MSE is computed over standard Gaussian input." The response variable rho(R) is fitted from loss data, and Eq. (3) then fits L, F, C to the (GMSE, rho) pairs. This is an in-sample curve fit: Table 1 reports fit error, and Section 7 concedes only one architecture/dataset, so the paper would be stronger with held-out predictions across architectures. But that is a validation weakness, not circularity, because GMSE is an external quantity that could have failed to correlate with fitted capacity. Theorem 1 is a genuine convergence proof for Adam with compressed iterates; it bounds gradient norms by N times the time-averaged squared compression error of the actual weights. That quantity is not the same as Gaussian GMSE, so Theorem 1 is incomplete support for Eq. (3), but the gap is a missing derivation rather than a closed loop. Self-citations to Frantar et al. [10], QuEST [25], and HIGGS [23] provide the baseline law, quantization tooling, and vector-quantization method, but the load-bearing GMSE-capacity link is tested with the paper's own fits and external Gaussian MSE computations. No uniqueness theorem is imported from prior authors to force the choice of Eq. (3), and the tanh functional form is selected by fitting, not inherited by citation. The factorization results in Section 4.3 are empirical matrix-factorization observations, not consequences of the definitions. Overall, no step in the derivation is equivalent to its input by construction.
Assumptions & free parameters
free parameters (5)
- L (capacity saturation limit) =
per compression type, not reported
- F (capacity curvature scale) =
per compression type, not reported
- C (capacity curvature exponent) =
per compression type, not reported
- Scaling-law constants A, B, α, β, E =
not reported
- Per-configuration capacity ρ(R) =
reported in matrices, e.g., Figures 6-9
assumptions (5)
- domain assumption Chinchilla scaling-law form Loss(N,D) = A·N^{-α} + B·D^{-β} + E (Eq. 2)
- domain assumption Data-rich regime with 100 tokens per parameter and model sizes 30M-200M on C4 is sufficient to estimate the law's constants
- standard math Standard assumptions for Adam convergence: L-smoothness, unbiased bounded stochastic gradients, bounded variance (Assumptions 1-3)
- ad hoc to paper Gaussian input is the right reference distribution for computing GMSE
- ad hoc to paper The first term in Theorem 1 justifies replacing capacity with a function of GMSE
invented entities (1)
-
Representation capacity ρ(R)
Cite this review
Pith. "Pith review of Unified Scaling Laws for Compressed Representations." pith.science (2026). https://pith.science/paper/DRLC5HPW
@misc{pith2026250601863,
author = {Pith},
title = {Pith review of: Unified Scaling Laws for Compressed Representations},
year = {2026},
howpublished = {\url{https://pith.science/paper/DRLC5HPW}},
note = {Machine review of arXiv:2506.01863}
}
read the original abstract
Scaling laws have shaped recent advances in machine learning by enabling predictable scaling of model performance based on model size, computation, and data volume. Concurrently, the rise in computational cost for AI has motivated model compression techniques, notably quantization and sparsification, which have emerged to mitigate the steep computational demands associated with large-scale training and inference. This paper investigates the interplay between scaling laws and compression formats, exploring whether a unified scaling framework can accurately predict model performance when training occurs over various compressed representations, such as sparse, scalar-quantized, sparse-quantized or even vector-quantized formats. Our key contributions include validating a general scaling law formulation and showing that it is applicable both individually but also composably across compression types. Based on this, our main finding is demonstrating both theoretically and empirically that there exists a simple "capacity" metric -- based on the representation's ability to fit random Gaussian data -- which can robustly predict parameter efficiency across multiple compressed representations. On the practical side, we extend our formulation to directly compare the accuracy potential of different compressed formats, and to derive better algorithms for training over sparse-quantized formats.
Figures
Figures from the paper (7 more)
Forward citations
Cited by 1 Pith paper
-
CAGE: Curvature-Aware Gradient Estimation For Accurate Quantization-Aware Training
CAGE, a curvature-aware correction that adds the quantization error to the gradient, reduces loss in low-bit quantization-aware training, letting 3-bit CAGE-trained models match 4-bit baseline-trained models.
Reference graph
Works this paper leans on
-
[10]
Frantar, E., Evci, U., Park, W., Houlsby, N., and Alistarh, D. (2025). Compression scaling laws:unifying sparsity and quantization
work page 2025
-
[19]
F., Bordelon, B., Muennighoff, N., Paul, M., Pehlevan, C., Ré, C., and Raghunathan, A
Kumar, T., Ankner, Z., Spector, B. F., Bordelon, B., Muennighoff, N., Paul, M., Pehlevan, C., Ré, C., and Raghunathan, A. (2024). Scaling laws for precision. arXiv preprint arXiv:2411.04330
arXiv 2024
-
[1]
Baskin, C., Liss, N., Schwartz, E., Zheltonozhskii, E., Giryes, R., Bronstein, A. M., and Mendelson, A. (2021). Uniq: Uniform noise injection for non-uniform quantization of neural networks. ACM Transactions on Computer Systems (TOCS), 37(1-4), 1–15
work page 2021
-
[2]
Bengio, Y ., Léonard, N., and Courville, A. (2013). Estimating or propagating gradients through stochastic neurons for conditional computation. arXiv preprint arXiv:1308.3432
arXiv 2013
-
[3]
Chen, C., Shen, L., Huang, H., and Liu, W. (2021). Quantized Adam with Error Feedback. arXiv preprint arXiv:2004.14180
arXiv 2021
-
[4]
Chen, X., Liu, S., Sun, R., and Hong, M. (2019). On the Convergence of A Class of Adam-Type Algorithms for Non-Convex Optimization. International Conference on Learning Representations
work page 2019
-
[5]
Clark, A., de Las Casas, D., Guy, A., Mensch, A., Paganini, M., Hoffmann, J., Damoc, B., Hechtman, B., Cai, T., Borgeaud, S., et al. (2022). Unified scaling laws for routed language models. International Conference on Machine Learning, pages 4057–4086
work page 2022
-
[6]
Défossez, A., Bottou, L., Bach, F., and Usunier, N. (2022). A simple convergence proof of adam and adagrad. Transactions on Machine Learning Research
work page 2022
Show all 44 references
-
[7]
K., McKinstry, J
Esser, S. K., McKinstry, J. L., Bablani, D., Appuswamy, R., and Modha, D. S. (2019). Learned step size quantization. arXiv preprint arXiv:1902.08153
2019 arXiv
-
[8]
Frantar, E., Ashkboos, S., Hoefler, T., and Alistarh, D. (2022). Gptq: Accurate post-training quantization for generative pre-trained transformers. arXiv preprint arXiv:2210.17323
2022 arXiv
-
[9]
R., Houlsby, N., Alistarh, D., and Evci, U
Frantar, E., Ruiz, C. R., Houlsby, N., Alistarh, D., and Evci, U. (2024). Scaling laws for sparsely-connected foundation models. In International Conference on Learning Representations
2024
-
[11]
W., and Keutzer, K
Gholami, A., Kim, S., Dong, Z., Yao, Z., Mahoney, M. W., and Keutzer, K. (2022). A survey of quantization methods for efficient neural network inference. In Low-power computer vision, pages 291–326. Chapman and Hall/CRC
2022
-
[12]
Gibney, E. et al. (2022). How to shrink ai’s ballooning carbon footprint. Nature, 607(7920), 648–648
2022
-
[13]
B., Chakraborty, A., Kostenok, E., Mishin, D., Ha, D., Falsafi, B., Jaggi, M., Liu, M., Oh, Y ., Subramanian, S., and Yazdanbakhsh, A
Harma, S. B., Chakraborty, A., Kostenok, E., Mishin, D., Ha, D., Falsafi, B., Jaggi, M., Liu, M., Oh, Y ., Subramanian, S., and Yazdanbakhsh, A. (2025). Effective interplay between sparsity and quantization: From theory to practice. In International Conference on Learning Repr...
2025 arXiv
-
[14]
Hoefler, T., Alistarh, D., Ben-Nun, T., Dryden, N., and Peste, A. (2021). Sparsity in deep learning: Pruning and growth for efficient inference and training in neural networks. Journal of Machine Learning Research, 22(241), 1–124. 10
2021
-
[15]
A., Welbl, J., Clark, A., Hennigan, T., Noland, E., Millican, K., van den Driessche, G., Damoc, B., Guy, A., Osindero, S., Simonyan, K., Elsen, E., Vinyals, O., Rae, J
Hoffmann, J., Borgeaud, S., Mensch, A., Buchatskaya, E., Cai, T., Rutherford, E., de Las Casas, D., Hendricks, L. A., Welbl, J., Clark, A., Hennigan, T., Noland, E., Millican, K., van den Driessche, G., Damoc, B., Guy, A., Osindero, S., Simonyan, K., Elsen, E., Vinyals, O., Ra...
2024
-
[16]
Hou, L., Zhang, R., and Kwok, J. T. (2019). Analysis of quantized models. In International Conference on Learning Representations
2019
-
[17]
B., Chess, B., Child, R., Gray, S., Radford, A., Wu, J., and Amodei, D
Kaplan, J., McCandlish, S., Henighan, T., Brown, T. B., Chess, B., Child, R., Gray, S., Radford, A., Wu, J., and Amodei, D. (2020). Scaling laws for neural language models. arXiv preprint arXiv:2001.08361
2020 arXiv
-
[18]
Kingma, D. P. and Ba, J. (2015). Adam: A method for stochastic optimization. International Conference on Learning Representations (ICLR). arXiv:1412.6980
2015 arXiv
-
[20]
and Li, P
Li, X. and Li, P. (2022). Analysis of Error Feedback in Federated Non-Convex Optimization with Biased Compression. arXiv preprint arXiv:2211.14292
2022 arXiv
-
[21]
Liu, Z., Zhao, C., Huang, H., Chen, S., Zhang, J., Zhao, J., Roy, S., Jin, L., Xiong, Y ., Shi, Y ., Xiao, L., Tian, Y ., Soran, B., Krishnamoorthi, R., Blankevoort, T., and Chandra, V . (2025). Paretoq: Scaling laws in extremely low-bit llm quantization. arXiv preprint arXiv:...
2025
-
[22]
and Hutter, F
Loshchilov, I. and Hutter, F. (2019). Decoupled weight decay regularization. In International Conference on Learning Representations
2019
-
[23]
Malinovskii, V ., Panferov, A., Ilin, I., Guo, H., Richtárik, P., and Alistarh, D. (2025). HIGGS: Pushing the limits of large language model quantization via the linearity theorem. In L. Chiruzzo, A. Ritter, and L. Wang, editors,Proceedings of the 2025 Conference of the Nation...
2025
-
[24]
Modoranu, I.-V ., Safaryan, M., Malinovsky, G., Kurtic, E., Robert, T., Richtarik, P., and Alistarh, D. (2024). Microadam: Accurate adaptive optimization with low space overhead and provable convergence
2024
-
[25]
L., Nikdan, M., and Alistarh, D
Panferov, A., Chen, J., Tabesh, S., Castro, R. L., Nikdan, M., and Alistarh, D. (2025). Quest: Stable training of llms with 1-bit weights and activations. arXiv preprint arXiv:2502.05003
2025 arXiv
-
[26]
Raffel, C., Shazeer, N., Roberts, A., Lee, K., Narang, S., Matena, M., Zhou, Y ., Li, W., and Liu, P. J. (2020). Exploring the limits of transfer learning with a unified text-to-text transformer. In Proceedings of the 37th International Conference on Machine Learning (ICML), p...
2020
-
[27]
J., Kale, S., and Kumar, S
Reddi, S. J., Kale, S., and Kumar, S. (2019). On the convergence of Adam and beyond. arXiv preprint arXiv:1904.09237
2019 arXiv
-
[28]
Robert, T., Safaryan, M., Modoranu, I.-V ., and Alistarh, D. (2024). LDAdam: Adaptive Optimization from Low-Dimensional Gradient Statistics. arXiv preprint arXiv:2410.16103
2024 arXiv
-
[29]
Sardana, N., Portes, J., Doubov, S., and Frankle, J. (2024). Beyond chinchilla-optimal: Ac- counting for inference in language model scaling laws. In International Conference on Machine Learning
2024
-
[30]
Sun, X., Li, S., Xie, R., Han, W., Wu, K., Yang, Z., Li, Y ., Wang, A., Li, S., Xue, J., Cheng, Y ., Tao, Y ., Kang, Z., Xu, C., Wang, D., and Jiang, J. (2025). Scaling laws for floating-point quantization training. arXiv preprint arXiv:2501.02423. 11
2025 arXiv
-
[31]
Touvron, H., Martin, L., Stone, K., Albert, P., Almahairi, A., Babaei, Y ., Bashlykov, N., Batra, S., Bhargava, P., Bhosale, S., Bikel, D., Blecher, L., Ferrer, C. C., Chen, M., Cucurull, G., Esiobu, D., Fernandes, J., Fu, J., Fu, W., Fuller, B., Gao, C., Goswami, V ., Goyal, ...
2023 arXiv
-
[32]
Zhou, D., Chen, J., Cao, Y ., Yang, Z., and Gu, Q. (2018). On the Convergence of Adaptive Gradient Methods for Nonconvex Optimization. arXiv preprint arXiv:1808.05671
2018 arXiv
-
[33]
and Gupta, S
Zhu, M. and Gupta, S. (2017). To prune, or not to prune: exploring the efficacy of pruning for model compression. arXiv preprint arXiv:1710.01878. 12 Appendix Roadmap This appendix provides supporting material organized as follows: • Experimental Setup (Appendix A): Model arch...
2017 arXiv
-
[34]
Quantized weights and activations (Fig. 6)
-
[35]
Sparsity + QuEST quantizer (Fig. 7)
-
[36]
8), for all combinations (sa, qa, qb) for sparsity sa ∈ [0.25, 0.5, 0.75] and bit widths qa, qb ∈ [2, 4, 6]
Joint sparse & quantized weights + activations (Fig. 8), for all combinations (sa, qa, qb) for sparsity sa ∈ [0.25, 0.5, 0.75] and bit widths qa, qb ∈ [2, 4, 6]
-
[37]
Sparsity + uniform quantizer with maximum absolute value as a scale (Fig. 9). From the factorized representation-capacity matrices we observe the following:
-
[38]
The element-wise error of the fitted coefficients ρ (from our scaling law) is of order 10−3–10−2
-
[39]
A rank-1 row-column outer product accurately approximates the matrix, confirming the multiplicative property of representation capacity ρ in various scenarios. 13
-
[40]
Γtgt − β1 1 − β1 ∆Γtmt−1 2# = −ηE [⟨∇f (θt), Γtgt⟩]| {z } I + ηE ∇f (xt), β1 1 − β1 ∆Γtmt−1 | {z } II + η2L 2 E
Approximation error remains of the order 10−2, except for the cases of extreme 2-bit quantization, where ρ ≲ 0.1. We explain this gap due to the poorer performance of the optimizer in these extreme compression regimes, which is not taken into account currently by our model (as...
-
[41]
This heuristic allows gradients to flow only through the largest parameters by magnitude selected by Top-K, while the low-magnitude parameters will have zero gradient
fw: the backward mask is simply set to the forward mask: MBW = MF W. This heuristic allows gradients to flow only through the largest parameters by magnitude selected by Top-K, while the low-magnitude parameters will have zero gradient
-
[42]
rms: we align the tensor x with the standard normal distribution by dividing x by its root mean square RM S(x) = q 1 n Pn i=1 x2 i , which results in ||x/RM S(x)||2 2 = n. For this heuristic, the user sets a median deviation parameter p ∈ (0, 0.5), which is used to determine t...
-
[43]
This banded heuristic determines the backward mask using the thresholdTRM S(x, p) computed for the rms heuristic in conjunction with the Top-K threshold (which we denote by Tk)
banded-rms (b-rms): the rms heuristic has the property that the absolute values of x that are larger than the threshold TRM S(x, p) will have value 1 in the mask, while the smaller ones will have value 0. This banded heuristic determines the backward mask using the thresholdTR...
-
[44]
area-banded-rms (a-b-rms): in the b-rms heuristic we do not have any control over the re- lationship between the Top-K threshold Tk and TRM S(x, p). Let us discuss the two possible cases: (a) Tk < TRM S(x, p) : MBW = ( |x| < Tk) ∨ (TRM S(x, p) < |x|), which means that all valu...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.