Pith. sign in

REVIEW 4 major objections 4 minor 23 references

Communication Compression for Distributed Learning without Control Variates

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

Pith's one-line read By compressing the difference between each client update and the previous server aggregate, CAFe gives biased gradient compression the convergence benefit of error feedback without per-client control variates.

desk verdict CAFe is a clean, honestly reported compression trick that removes per-client control variates, but the claimed superiority over DCGD is a narrow constant-factor bound comparison and the experiments skip the EF21 baseline. read the letter →

arxiv 2412.04538 v2 pith:GY4E2DL7 submitted 2024-12-05 cs.LG eess.SPmath.OC

classification cs.LGeess.SPmath.OC MSC 68W1590C26
keywords compressedaggregatefeedbackcommunicationcompressionfederatedlearningbiasederrorcontrolvariatesgradientdistributeddescent
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

CAFe is a communication-compression scheme for distributed learning that lets clients use biased, aggressive compressors (top-k, quantization, SVD) without the per-client control variates that error feedback normally requires. Instead of compressing the local update itself, each client compresses the difference between its local update and the previous aggregated update broadcast by the server; the server adds that aggregate back when decoding. The paper proves that, for distributed gradient descent on non-convex $L$-smooth objectives with bounded gradient dissimilarity, CAFe converges with an upper bound a factor $(1-\omega)$ smaller than direct compressed gradient descent at the same step size, provided $\omega B^2 < 1$. If the analysis holds, aggressive biased compression can be used in federated learning without stateful clients or server-side client tracking, which is what the paper's experiments on MNIST, EMNIST, and CIFAR-100 support in moderate-heterogeneity settings.

What carries the argument

The central object is the compressed aggregate feedback rule: the client uploads $C(\Delta_n^k - \Delta_s^{k-1})$ and the server decodes as $C(\Delta_n^k - \Delta_s^{k-1}) + \Delta_s^{k-1}$, where $\Delta_n^k$ is the client's local parameter update and $\Delta_s^{k-1}$ is the previous aggregated update. This makes all clients compress against a common reference, so the compression error becomes a deviation from the shared aggregate rather than from each client's own gradient. The proof's load-bearing identity is the compression-error recursion in Lemma 3, which bounds the next round's expected error by a combination of the current global gradient, the current error, and the previous global gradient, enabling the Lyapunov argument that yields the $(1-\omega)$ factor. Definition 1 (the $\omega$-parameterized compression operator) and Assumption 2 (bounded gradient dissimilarity $B^2$) are the quantitative inputs to this recursion.

What would settle it

Take a biased compressor with distortion $\omega=0.9$ and construct a client partition whose measured gradient dissimilarity satisfies $B^2 \ge 1.4$, so that $\omega B^2 > 1$; run CAFe+DGD against DCGD for identical step sizes and rounds. If CAFe still converges strictly faster in this regime, the paper's stated boundary is not the actual frontier of its advantage; if it converges no faster or slower, the boundary is confirmed. The paper's Table 1 already contains a candidate data point: CIFAR-100 non-iid with top-0.1% compression, where CAFe's accuracy ($7.27\pm1.47$) is below direct compression's ($10.17\pm0.91$), which is consistent with the bound's condition being violated.

Watch

Extended reading notes

Core claim

On the paper's own terms, the central discovery is a convergence-rate comparison between two algorithms, both using the same biased compressor $C$ with distortion parameter $\omega<1$. Given Assumptions 1 and 2 ($L$-smoothness and bounded gradient dissimilarity $B^2$), if the step size $\gamma$ satisfies $\gamma \le (1-\omega)/(L(1+\omega))$ and $\omega B^2<1$, then after $K$ rounds CAFe+DGD satisfies $$\frac{1}{K}\sum_{k=0}^{K-1}\mathbb{E}\|\nabla f(x^k)\|^2 \le \frac{2F_0(1-\omega)}{\gamma K(1-\omega $B^{2}$)},$$ while DCGD satisfies $$\frac{1}{K}\sum_{k=0}^{K-1}\mathbb{E}\|\nabla f(x^k)\|^2 \le \frac{2F_0}{\gamma K(1-\omega $B^{2}$)}.$$ The improvement factor is $(1-\omega)$, which is largest when compression is most aggressive. The mechanism—compressing the residual against the previous aggregate rather than the raw update—turns the shared aggregate into a proxy for client-specific error feedback, so the convergence benefit of error feedback is retained while no per-client state is stored at the server. The paper further notes that the single-client limit of CAFe is the EF21 error-feedback algorithm, and that its experiments show CAFe beating direct compression across SVD, top-k, and quantized compressors, with exceptions under high heterogeneity and very aggressive compression.

Load-bearing premise

The whole convergence guarantee and the claimed $(1-\omega)$ advantage rest on $\omega B^2<1$, where $\omega$ is the compressor's distortion and $B^2$ bounds how much client gradients differ from the global gradient; for aggressive biased compression ($\omega$ near 1) this effectively requires client data to be nearly homogeneous, which is violated by the paper's own non-iid CIFAR-100 experiments.

Editorial extensions

If this is right

  • For any biased compressor with distortion $\omega$, CAFe+DGD has a convergence upper bound a factor $(1-\omega)$ smaller than DCGD at the same step size, so the benefit grows exactly when compression is most aggressive.
  • CAFe removes the need for per-client control variates and stateful clients: the server only needs the previous aggregate (or clients can store it locally), which preserves the stateless, privacy-friendly assumptions of plain federated learning.
  • The single-client special case of CAFe is the EF21 error-feedback algorithm, so CAFe extends the benefits of error feedback to multi-client aggregation without client-specific memory.
  • If learning rates are tuned separately to their theoretical maxima, the bound comparison reverses by a factor $(1+\omega)<2$, but the paper argues that such aggressive step sizes are unlikely to be chosen in practice; under equal practical step sizes CAFe is the stronger bound.

Reading between the lines

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

  • A natural next test is whether the $(1-\omega)$ gain survives minibatch stochastic gradients: the paper's analysis covers exact gradient descent, and with bounded noise the residual-compression structure would need a new variance term.
  • The same residual-compression idea could be dropped into other aggregation rules, such as FedAvg with multiple local epochs or momentum-based optimizers, since the framework only changes what quantity is compressed and decoded.
  • In a deployment with secure aggregation, CAFe's extra broadcast of the previous aggregate (or the client-memory variant) changes the communication and privacy profile; quantifying that trade-off in a real system would be a useful follow-up.
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 / 4 minor

Summary. The paper introduces Compressed Aggregate Feedback (CAFe), a distributed learning framework in which clients compress the difference between their local update and the previous server-side aggregated update, and the server reconstructs each client's update by adding back that aggregate. This removes the need for per-client control variates associated with error feedback. The paper analyzes CAFe when the local optimizer is gradient descent, under L-smoothness and bounded gradient dissimilarity (Assumptions 1 and 2). Theorem 1 gives a DCGD convergence bound of 2F0/(γK(1-ωB^2)); Theorem 2 gives a CAFe bound of 2F0(1-ω)/(γK(1-ωB^2)) under the stricter step-size restriction γ ≤ (1-ω)/(L(1+ω)). Corollaries 1 and 2 give the corresponding bounds at the largest admissible step sizes. Experiments on MNIST, EMNIST, and CIFAR-100 with four biased compressors (top-k, top-k+quantization, SVD, SVD+quantization) compare CAFe against direct compression and show gains in most settings but losses in some high-heterogeneity, aggressive-compression rows.

Significance. The idea of compressing the difference from the previous aggregate is a simple and potentially useful alternative to error feedback in stateless or privacy-constrained federated learning, and the paper provides formal non-convex convergence guarantees under explicit assumptions rather than fitted rates. The comparison with DCGD is an algebraic consequence of the stated bounds and is not circular. The paper ships the proofs in the appendix, which is a strength. However, the significance is substantially tempered by the narrow applicability of the theoretical claim: the improvement factor (1-ω) holds only for equal step sizes satisfying Eq. (8), and the shared condition ωB^2<1 excludes the aggressive-compression, high-heterogeneity regime in which the experiments show CAFe underperforming. As a result, the paper's headline claims outrun the evidence.

major comments (4)
  1. [Section B, Theorem 2 proof and Eq. (25)] The proof of Theorem 2 does not directly yield the stated bound. After unrolling the Lyapunov recursion, Eq. (24) has a k=0 term with coefficient γ(1+ω)/(2(1-ω)), and the simplification in Eq. (25) replaces all coefficients on Σ_{k=0}^{K-1} E||∇f(x^k)||^2 by γ(1+ω(1-B^2))/(2(1-ω)). This replacement is a valid relaxation, but the final bound obtained by direct rearrangement is S ≤ 2F0(1-ω)/(γ(1+ω(1-B^2))), not S ≤ 2F0(1-ω)/(γ(1-ωB^2)). The theorem's denominator 1-ωB^2 follows only after the additional, unstated relaxation 1+ω(1-B^2) ≥ 1-ωB^2. Since the claimed (1-ω) improvement factor in Section 4 is computed from the stated bound, the proof should either be revised to state the relaxation explicitly or the theorem should be restated with the bound actually derived.
  2. [Section 4, comparison of Theorems 1 and 2 and Corollaries 1 and 2] The claimed superiority of CAFe over DCGD is a fixed-step-size statement: Theorem 2 requires γ ≤ (1-ω)/(L(1+ω)), which is stricter than Theorem 1's γ ≤ 1/L. When each method is run at its largest admissible step size, Corollary 2's bound 2LF0(1+ω)/(K(1-ωB^2)) is larger than Corollary 1's 2LF0/(K(1-ωB^2)) by a factor (1+ω). The text acknowledges this but dismisses large step sizes as 'unlikely to be chosen' without evidence. Because the experiments tune the learning rate to be as large as possible without divergence (Table 2 and Section 5), the experimental configurations may not lie in the regime where Theorem 2's improvement applies. The theoretical contribution should be framed explicitly as an equal-step-size comparison under Eq. (8), and the paper should state whether the experimental learning rates satisfy Eq. (8) or discuss why the comparison is still relevant.
  3. [Section 4 (Assumption 2, condition ωB^2<1) and Section 5 (Table 1)] The condition ωB^2<1 under which both Theorems hold implies that for aggressive biased compression (ω close to 1), B^2 must be close to 1, i.e., the client data must be nearly homogeneous. The non-iid experiments sample 40% of classes per client (Table 2), which is far from this regime, and Table 1 shows CAFe underperforming direct compression in several of those cases (for example CIFAR-100 non-iid, top-k k=0.001: CAFe 7.27±1.47 vs Direct 10.17±0.91; top-k+quantization 6-bit: CAFe 34.78±2.47 vs Direct 36.76±0.81). The paper's statement in Section 5 that CAFe 'may suffer when the heterogeneity is higher and compression is very aggressive' is accurate, but it contradicts the unqualified abstract claim that CAFe 'outperforms existing distributed learning compression schemes.' The abstract and conclusion should be restricted to the regime covered by the theory, or the theory should be extended or experimentally validated by estimating B^2.
  4. [Section 5 and Abstract] The experimental evaluation compares CAFe only to direct compression; it does not include error-feedback baselines such as EF21 or SCAFFOLD, despite the introduction motivating CAFe as an alternative to error feedback without control variates. The abstract's claim that experimental results confirm CAFe 'outperforms existing distributed learning compression schemes' is therefore not supported by the reported experiments. The authors should either add comparisons to stateful error-feedback methods or narrow the claim to 'outperforms direct compression'.
minor comments (4)
  1. [Section B, Lemma 3] The lemma statement writes the coefficient on E||g^k||^2 as γ^2ωL, but the proof derives 2γωL, and the application in Theorem 2 uses the proof's coefficient. The lemma statement should be corrected to match the proof.
  2. [Section 4, final paragraph] Calling a factor (1+ω)<2 'negligible in most cases' is an unsupported assertion; a factor of nearly 2 in a convergence bound is not negligible without a concrete argument.
  3. [Section B, proof of Theorem 1] The telescoped recursion is written in terms of f(x^0) after summing, which is a minor notational slip; it should be f(x^k) before telescoping.
  4. [Section A, Table 2] The learning rates are reported as 0.01, 0.01, 0.1 for MNIST, EMNIST, CIFAR-100, but the text says the learning rates are tuned to be the same for DCGD and CAFe; please clarify whether these are the values used for both algorithms in all experiments.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: CAFe's convergence-rate comparison is derived from explicit assumptions, not fitted to data or carried by self-citations.

full rationale

The paper's central claim, that CAFe improves the DCGD convergence bound by a factor (1−ω), is an algebraic consequence of two separately proved upper bounds (Theorem 1 and Theorem 2) under the stated conditions γ ≤ (1−ω)/(L(1+ω)) and ωB² < 1. Theorem 2 is derived from Assumptions 1 and 2 through Lemmas 2–4; no parameter is fitted to experimental outcomes, and the proof does not invoke the experiments. The self-citations in the paper (e.g., [13–15] and the video-coding motivation [8]) appear only as background or related work and do not carry the convergence argument. The paper explicitly acknowledges that at each method's largest admissible step size the DCGD bound is smaller (Corollaries 1 and 2) and that CAFe underperforms on the most heterogeneous CIFAR-100 non-iid settings, which is the opposite of retrofitting theory to data. The comparison of upper bounds is a strength-of-claim issue, not a circularity issue. Thus no derivation step reduces to its own inputs by construction.

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

No free parameters are fitted to data in the theory; the only hand-chosen quantity is the equal-step-size comparison regime. The assumptions are standard for non-convex distributed optimization. No new particles, forces, dimensions, or conserved quantities are introduced; the previous aggregated update is an algorithmic state variable, not an invented entity.

free parameters (1)
  • Step-size comparison regime (gamma) = gamma <= (1-omega)/(L(1+omega)) for both algorithms
    The claimed (1-omega) improvement holds only when the same gamma is used for DCGD and CAFe and satisfies CAFe's stricter bound. If gamma is tuned to each algorithm's maximum, DCGD's bound is smaller by a factor (1+omega). This choice is made by hand in the comparison and is not justified by any optimality criterion.
assumptions (5)
  • domain assumption f is L-smooth and lower bounded (Assumption 1)
    Standard in non-convex optimization; used in Eq (17) and Lemma 2.
  • domain assumption Bounded gradient dissimilarity (Assumption 2): (1/N) sum ||grad f_n(x)||^2 <= B^2 ||grad f(x)||^2
    Needed to control the compression error in Lemma 3 and to get the omega B^2 < 1 condition.
  • domain assumption Compression operator satisfies E||C(x)-x||^2 <= omega ||x||^2 (Definition 1)
    Defines the biased compression model; used in Eq (19) and Lemma 3.
  • domain assumption Clients compute exact gradients (full-batch GD) in the analysis
    The theorems analyze DGD, not SGD; stochastic gradients are outside the proof's scope.
  • domain assumption Equal-weight aggregation with N clients
    Used to define Delta_k^s = (1/N) sum q_k^n; the analysis does not cover weighted or partial participation.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Communication Compression for Distributed Learning without Control Variates." pith.science (2026). https://pith.science/paper/GY4E2DL7

@misc{pith2026241204538,
  author       = {Pith},
  title        = {Pith review of: Communication Compression for Distributed Learning without Control Variates},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/GY4E2DL7}},
  note         = {Machine review of arXiv:2412.04538}
}
read the original abstract

Distributed learning algorithms, such as the ones employed in Federated Learning (FL), require communication compression to reduce the cost of client uploads. The compression methods used in practice are often biased, making error feedback necessary both to achieve convergence under aggressive compression and to provide theoretical convergence guarantees. However, error feedback requires client-specific control variates, creating two key challenges: it violates privacy-preserving principles and demands stateful clients. In this paper, we propose Compressed Aggregate Feedback (CAFe), a novel distributed learning framework that allows highly compressible client updates by exploiting past aggregated updates, and does not require control variates. We consider Distributed Gradient Descent (DGD) as a representative algorithm and analytically prove CAFe's superiority to Distributed Compressed Gradient Descent (DCGD) with biased compression in the non-convex regime with bounded gradient dissimilarity. Experimental results confirm that CAFe outperforms existing distributed learning compression schemes.

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

23 extracted references · 21 canonical work pages

  1. [1]

    The general problem formulation is to minimize the sum of client loss functions, which are typically non-convex

    INTRODUCTION In distributed learning, a central server coordinates the train- ing of a global model using data stored across multiple clients. The general problem formulation is to minimize the sum of client loss functions, which are typically non-convex. We de- note the global model asx∈R d, the client loss functions as fn :R d →R, and the global loss fu...

  2. [2]

    In [7], the authors study the error feedback mechanism for one-bit per coordinate bi- ased compression

    RELATED WORK Communication compression is a well-studied topic in dis- tributed learning, and error feedback is often suggested to im- prove convergence guarantees [9]. In [7], the authors study the error feedback mechanism for one-bit per coordinate bi- ased compression. For general sparse compressors, it was studied in [10, 11]. For the decentralized se...

  3. [3]

    QSGD: Communication-efficient SGD via gradient quantization and encoding,

    Dan Alistarh, Demjan Grubic, Jerry Li, Ryota Tomioka, and Milan V ojnovic, “QSGD: Communication-efficient SGD via gradient quantization and encoding,” in Advances in Neural Information Processing Systems, I. Guyon, U. V on Luxburg, S. Bengio, H. Wallach, R. Fergus, S. Vishwanathan, and R. Garnett, Eds. 2017, vol. 30, Curran Associates, Inc

  4. [4]

    ANALYSIS We analyzeCAFeusing Gradient Descent as the optimizer of choice and a compression operatorCwith parameterω <1. We proceed with the following standard assumptions [2, 9]: Assumption 1.The objective functionfisL-smooth, which implies that it is differentiable,∇fisL-Lipschitz, and f(y)≤f(x) +⟨∇f(x), y−x⟩+ L 2 ∥y−x∥ 2.(4) Also, the objective function...

  5. [5]

    The selected datasets are MNIST, EMNIST, and CIFAR-100, and we fol- low [17] to choose models for the three datasets, which are CONV4,CONV4, and ResNet-18, respectively

    EXPERIMENTAL RESULTS We present FL experiments with 10 clients. The selected datasets are MNIST, EMNIST, and CIFAR-100, and we fol- low [17] to choose models for the three datasets, which are CONV4,CONV4, and ResNet-18, respectively. The learning rates are tuned based on the model architectures to be as large as possible without model divergence. Experime...

  6. [6]

    By leveraging the previous aggregated update,CAFe makes local updates more compressible, reducing upload costs for biased compressors

    CONCLUSION We proposedCompressedAggregateFeedback (CAFe), a novel framework for bandwidth-efficient distributed learn- ing. By leveraging the previous aggregated update,CAFe makes local updates more compressible, reducing upload costs for biased compressors. We proved convergence guar- antees when optimizing locally with Gradient Descent and demonstrated ...

  7. [7]

    Communication-efficient learning of deep networks from decentralized data,

    Brendan McMahan, Eider Moore, Daniel Ram- age, Seth Hampson, and Blaise Aguera y Arcas, “Communication-efficient learning of deep networks from decentralized data,” inProceedings of the 20th International Conference on Artificial Intelligence and Statistics. 4 2017, p. 1273–1282, PMLR

  8. [8]

    Advances and open problems in federated learn- ing,

    Peter Kairouz, H. Brendan McMahan, Brendan Avent, Aur´elien Bellet, Mehdi Bennis, Arjun Nitin Bhagoji, et al., “Advances and open problems in federated learn- ing,”Foundations and Trends® in Machine Learning, vol. 14, no. 1–2, pp. 1–210, 2021

Show all 23 references
  1. [9]

    PowerSGD: Practical low-rank gradient com- pression for distributed optimization,

    Thijs V ogels, Sai Praneeth Karimireddy, and Martin Jaggi, “PowerSGD: Practical low-rank gradient com- pression for distributed optimization,”Advances in Neu- ral Information Processing Systems, vol. 32, 2019

  2. [10]

    Sparse communica- tion for distributed gradient descent,

    Alham Aji and Kenneth Heafield, “Sparse communica- tion for distributed gradient descent,” inEMNLP 2017: Conference on Empirical Methods in Natural Language Processing. Association for Computational Linguistics (ACL), 2017

  3. [11]

    On biased com- pression for distributed learning,

    Aleksandr Beznosikov, Samuel Horv ´ath, Peter Richt´arik, and Mher Safaryan, “On biased com- pression for distributed learning,”Journal of Machine Learning Research, vol. 24, no. 276, pp. 1–50, 2023

  4. [12]

    Error feedback fixes signSGD and other gradient compression schemes,

    Sai Praneeth Karimireddy, Quentin Rebjock, Sebastian Stich, and Martin Jaggi, “Error feedback fixes signSGD and other gradient compression schemes,” inProceed- ings of the 36th International Conference on Machine Learning. 5 2019, p. 3252–3261, PMLR

  5. [13]

    Multiple-description video coding using motion-compensated temporal prediction,

    A.R. Reibman, H. Jafarkhani, Yao Wang, M.T. Orchard, and R. Puri, “Multiple-description video coding using motion-compensated temporal prediction,”IEEE Trans- actions on Circuits and Systems for Video Technology, vol. 12, no. 3, pp. 193–204, 2002

  6. [14]

    SCAFFOLD: Stochastic controlled averaging for federated learning,

    Sai Praneeth Karimireddy, Satyen Kale, Mehryar Mohri, Sashank Reddi, Sebastian Stich, and Ananda Theertha Suresh, “SCAFFOLD: Stochastic controlled averaging for federated learning,” inProceedings of the 37th In- ternational Conference on Machine Learning. 11 2020, p. 5132–5143, PMLR

  7. [15]

    Sparsified SGD with memory,

    Sebastian U Stich, Jean-Baptiste Cordonnier, and Mar- tin Jaggi, “Sparsified SGD with memory,” inAd- vances in Neural Information Processing Systems. 2018, vol. 31, Curran Associates, Inc

  8. [16]

    The convergence of sparsified gradient methods,

    Dan Alistarh, Torsten Hoefler, Mikael Johansson, Nikola Konstantinov, Sarit Khirirat, and Cedric Reng- gli, “The convergence of sparsified gradient methods,” inAdvances in Neural Information Processing Systems. 2018, vol. 31, Curran Associates, Inc

  9. [17]

    Decentralized stochastic optimization and gossip algo- rithms with compressed communication,

    Anastasia Koloskova, Sebastian Stich, and Martin Jaggi, “Decentralized stochastic optimization and gossip algo- rithms with compressed communication,” inProceed- ings of the 36th International Conference on Machine Learning. 5 2019, p. 3478–3487, PMLR

  10. [18]

    Gossiped and quantized online multi-kernel learning,

    Tomas Ortega and Hamid Jafarkhani, “Gossiped and quantized online multi-kernel learning,”IEEE Signal Processing Letters, vol. 30, pp. 468–472, 2023

  11. [19]

    Asynchronous federated learning with bidirectional quantized commu- nications and buffered aggregation,

    Tomas Ortega and Hamid Jafarkhani, “Asynchronous federated learning with bidirectional quantized commu- nications and buffered aggregation,” in2023 ICML Workshop of Federated Learning and Analytics in Prac- tice, 2023

  12. [20]

    Quantized and asynchronous federated learning,

    Tomas Ortega and Hamid Jafarkhani, “Quantized and asynchronous federated learning,”IEEE Transactions on Communications, 2024

  13. [21]

    EF21: A new, simpler, theoretically better, and prac- tically faster error feedback,

    Peter Richtarik, Igor Sokolov, and Ilyas Fatkhullin, “EF21: A new, simpler, theoretically better, and prac- tically faster error feedback,” inAdvances in Neu- ral Information Processing Systems. 2021, vol. 34, p. 4384–4396, Curran Associates, Inc

  14. [22]

    Adap- tive compression in federated learning via side informa- tion,

    Berivan Isik, Francesco Pase, Deniz Gunduz, Sanmi Koyejo, Tsachy Weissman, and Michele Zorzi, “Adap- tive compression in federated learning via side informa- tion,” inInternational Conference on Artificial Intelli- gence and Statistics. PMLR, 2024, pp. 487–495

  15. [23]

    Effective interplay between sparsity and quantization: From theory to practice,

    Simla Burcu Harma, Ayan Chakraborty, Elizaveta Kostenok, Danila Mishin, Dongho Ha, Babak Falsafi, Martin Jaggi, Ming Liu, Yunho Oh, Suvinay Subrama- nian, et al., “Effective interplay between sparsity and quantization: From theory to practice,”arXiv preprint arXiv:2405.20935, ...

Pith tools

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