Pith. sign in

REVIEW 4 major objections 6 minor 16 references

LoRA Fine-Tuning Without GPUs: A CPU-Efficient Meta-Generation Framework for LLMs

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

Pith's one-line read The paper claims that LoRA adapters for new tasks can be generated on a CPU by weighted blending of 502 pre-trained adapters, consistently beating the base Mistral model (0.520 vs 0.192 Rouge-L) though not matching GPU fine-tuning (0.746).

desk verdict A plausible, useful CPU-only LoRA mixing method with an over-claimed theoretical wrapper and missing baselines; worth refereeing but needs major revisions. read the letter →

arxiv 2507.01806 v1 pith:KKIRY6NQ submitted 2025-07-02 cs.LG cs.AIcs.CLstat.ML

classification cs.LGcs.AIcs.CLstat.ML MSC 68T0741A30
keywords LoRACPU-onlyfine-tuningadapterblendingconvexhullofadaptersdistributionaldistancesMistral-7Bzero-shotadaptationRouge-L
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

Fine-tuning a large language model normally requires a GPU, and the paper asks whether a usable adapter for a new task can be synthesized instead of trained. Its answer is yes: treat each dataset as a probability distribution, measure its distance from every dataset in a bank of 502 pre-trained LoRA adapters, convert those distances into mixture weights, and output the weighted average of the bank's adapter parameters. Because the result is always a convex combination, no gradient step is taken and the entire generation runs on a laptop CPU in minutes. The paper proves (Theorem 1) that a small ReLU MLP exists which, for any precision $\varepsilon$, brings the cheap adapter's loss within $\varepsilon$ of the best loss achievable inside the convex hull of the bank, with probability at least $1-\varepsilon$. Empirically the best configuration raises Rouge-L from 0.192 (base model) to 0.520, closing more than half of the gap to GPU fine-tuning at 0.746, and the simple closed-form variants match the MLP version.

What carries the argument

The load-bearing object is the convex hull of the bank's adapter parameters, $\mathrm{co}(\Delta\theta)=\{\sum_k w_k\Delta\theta_k : w \text{ is a probability vector}\}$, together with the mixture map $C(D)=[\mathrm{softmin}\circ\hat{f}\circ\mathrm{align}(D)]^\top(\Delta\theta_1,\dots,\Delta\theta_K)$. The map $\mathrm{align}$ sends a dataset to its vector of distributional distances (Wasserstein, KL, JS, or MMD) from every bank dataset; softmin converts small distances into large weights, and the optional MLP $\hat{f}$ learns nonlinear corrections between distances and weights. Because the output is always a convex combination, generation is pure linear algebra plus distance computation, with no gradient update. The proof of Theorem 1 then chains standard results: a measurable maximum theorem gives a measurable selector that picks an optimal in-hull adapter for each dataset, the injectivity of $\mathrm{align}$ lets that selector be pulled back to the distance domain, Lusin's theorem restricts it to a compact set where it is continuous, and a universal-approximation theorem realizes it as an MLP to tolerance $\varepsilon$ on a set of probability at least $1-\varepsilon$.

What would settle it

GPU-fine-tune Mistral-7B-Instruct-v0.2 on a held-out task not represented in the bank, flatten the resulting LoRA parameter vector, and compute its least-squares projection onto the convex hull of the 502 bank adapters; if the residual is large, the premise that good adapters live in the hull is violated for that task, and no reformulation of the weights within this pipeline can recover the lost performance.

Watch

Extended reading notes

Core claim

The central claim is that adapter synthesis can be reduced to a convex-combination problem in parameter space. A new dataset $D$ is encoded as an empirical distribution, and the map $\mathrm{align}(D)=(\rho(D,D_1),\dots,\rho(D,D_K))$ compares it with every dataset in the bank using an information-theoretic or metric divergence; a softmin (optionally composed with a trained MLP) turns this distance vector into mixture weights $w(D)$, and the generated adapter is $\sum_{k} w_k(D)\,\Delta\theta_k$, which always lies in the convex hull $\mathrm{co}(\Delta\theta)$ of the 502 pre-trained adapter parameter vectors. Proposition 2 asserts that the hull always contains a best possible adapter for the task, and Theorem 1 asserts that for every $\varepsilon \in (0,1]$ some ReLU MLP makes the cheap adapter's expected loss at most $\varepsilon$ worse than that in-hull optimum, with probability at least $1-\varepsilon$, provided the distance map is injective (Assumption 1). Experimentally, the mixtures beat the untuned model in every configuration, with the best case (JS-distance-based normalized softmin) reaching Rouge-L 0.520 against 0.192 for the base model and 0.746 for GPU fine-tuning.

Load-bearing premise

The load-bearing premise is that for any new task the best achievable adapter lies inside the convex hull of the 502 bank adapters — the pipeline can only output weighted averages of adapters it already has, and the paper's own numbers (0.520 vs 0.746 Rouge-L) are consistent with that hull being too small.

Editorial extensions

If this is right

  • A user with only a CPU can produce a task-specific adapter in 10–20 minutes per dataset (using 100 reference pairs) that reliably improves on the base model, with no gradient computation and no GPU.
  • The best reported configuration — JS divergence plus z-score-normalized softmin — raises average Rouge-L from 0.192 to 0.520, more than half of the distance to GPU fine-tuning (0.746), and ranks first under Exact Match as well (0.373 vs 0.654 GPU).
  • The MLP variant offers no practical advantage over the closed-form Attentional and Normalized variants, so the cheapest option is also the competitive option; sparser coefficient distributions correlate with better scores.
  • Because the output weights are plain convex coefficients, the generated adapters can be reshaped and loaded into existing LoRA inference pipelines, and the same scheme could be used to pre-heat an adapter before GPU fine-tuning.

Reading between the lines

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

  • The 0.520-vs-0.746 gap is, on the paper's own numbers, the cost of the convex-hull restriction; a direct test would be to GPU-fine-tune the model on a held-out task, flatten the adapter, and measure the residual of its projection onto the hull of the 502 bank adapters — a large residual would show the hull, not the distance metric, is the bottleneck.
  • That nearest-neighbour-style softmin weighting matches a trained MLP suggests the distance-to-weights map is nearly linear in the distance signature; a testable extension would be learning a reweighted distance or a metric over the bank and checking whether the 0.520 ceiling moves.
  • The paper's open question about bank size could be answered by ablating the bank: draw random subsets of the 502 adapters and measure how Rouge-L grows, separating the hull-size effect from the choice of divergence.
  • If the hull premise holds for larger, more diverse banks, the same framework would transfer to other model families and modalities with open adapter banks, since Theorem 1 is stated for any locally Lipschitz model and Lipschitz loss.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

Summary. The paper proposes a CPU-only pipeline for generating LoRA adapters for a new task. A new dataset is represented as an empirical distribution, distances to the datasets in a bank of 502 pre-trained adapters are computed using Wasserstein, KL, JS, or MMD, and these distances are converted into coefficients by a softmin (Attentional), a normalized softmin, or a small MLP (Neural). The output adapter is a convex combination of the bank adapters. The theoretical section gives Proposition 1 (softmin solves an entropic alignment problem), Proposition 2 (an oracle optimal adapter exists inside the convex hull), and Theorem 1 (an MLP can epsilon-approximately realize the hull-optimal selector under an injectivity assumption on the distance map). Experiments on Mistral-7B-Instruct-v0.2 with the Lots-of-LoRAs bank report average Rouge-L values of roughly 0.42-0.52 across variants and metrics, compared with 0.192 for the base model and 0.746 for GPU fine-tuning.

Significance. The practical idea is attractive: if it works, it offers a genuinely GPU-free fine-tuning alternative for users with limited hardware, and the paper has real strengths: a large leave-one-out evaluation over 502 datasets, explicit CPU timings, several distance metrics, and use of a public adapter bank. However, the current evidence does not establish the central claims. The theoretical optimality is relative to an untested convex hull, the injectivity assumption is unverified and likely violated in the intended regime, the implemented neural pipeline does not match the model covered by Theorem 1, and the empirical evaluation lacks significance tests and composition baselines. The paper is publishable only after these load-bearing gaps are addressed.

major comments (4)
  1. [§5.2, Eq. (3), Theorem 1] Theorem 1 and Proposition 2 are relative to the convex hull co(Δθ) of the bank adapters, not to the unconstrained fine-tuning optimum. The paper never tests whether co(Δθ) contains a near-optimal adapter for each held-out task; the reported gap (best variant 0.520 vs. GPU fine-tuning 0.746 Rouge-L) is fully compatible with a hull that simply lacks good adapters. The abstract and conclusion therefore overstate the support for approaching GPU fine-tuning. Please add a direct test of hull adequacy, for example by comparing the best achievable convex combination of bank adapters (e.g., via a small optimization over coefficients on the 10 evaluation tasks) against GPU fine-tuning, or by reporting an oracle in-hull loss. Without such a test, the central practical claim is capped by an untested premise.
  2. [§5.2, Assumption 1] Assumption 1 requires the distance map align: D → [0,∞)^K to be injective. For a continuous family of empirical distributions over [0,1]^{d+D} with K=502 fixed reference datasets, there is no evident reason why distances to these 502 fixed measures should determine the dataset, and for a general compact space of probability measures the metric dimension need not be finite, let alone exactly K. The proof of Theorem 1 uses the measurable inverse of align in Step 2, so without verification or a relaxation (e.g., a Lipschitz-stability condition) the theorem does not cover the experimental regime. Please state whether Assumption 1 was checked, and propose a concrete test, such as searching for two datasets with approximately identical distance vectors to the bank.
  3. [§5.2 vs. Appendix C.1.4] The theoretical guarantee in Theorem 1 concerns an MLP \(\hat f: R^K → R^K\) applied to the full distance vector align(D), whereas the implemented neural pipeline in Appendix C.1.4 (Eqs. 29-32) applies an MLP with input dimension 1 to each distance value separately (W_1 is 4000×1). Thus the trained model is not the model analyzed in Theorem 1. Moreover, the MLP is trained to minimize MSE between predicted and actual adapter parameters, not the downstream loss L in Eq. (14). Consequently the reported Neural results are not covered by the theoretical near-optimality claim. Please either change the implementation to a vector-input MLP trained on a downstream-loss surrogate justified by the theory, or explicitly limit the theoretical claims to the attentional/normalized variants and describe the neural variant as heuristic.
  4. [§6.1, Table 1] The empirical evidence for the central claim that generated adapters 'consistently outperform' the base model is incomplete. Table 1 reports means and standard deviations but no paired significance tests, no confidence intervals, and no baselines such as averaging all bank adapters, nearest-neighbor adapter selection, or existing composition methods (e.g., task arithmetic or model soups). Without these, the improvement over the base model (0.520 vs. 0.192 Rouge-L) could reflect generic adapter averaging rather than the proposed distance-based weighting. Please report paired tests across the leave-one-out tasks, the fraction of tasks where the generated adapter beats the base model, and comparisons to at least a mean-adapter and a nearest-neighbor baseline.
minor comments (6)
  1. [§3, Eq. (2) and §5.2, Assumption 1] The notation align is used inconsistently: Eq. (2) defines align as a softmax-normalized distance vector, while Assumption 1 defines align as the raw distance vector (ρ(D,D_k))_{k=1}^K. Please unify these definitions.
  2. [§4.3, Eq. (5) and §5.2] The symbol C is overloaded: in Eq. (5) it is a map from datasets to co(Δθ), while in Theorem 1 it is an MLP from R^K to R^K. Please rename one of them.
  3. [Appendix C] The sentence '10 are manually selected ... for evaluation' is ambiguous: it appears to say that only 10 of the 502 datasets are used for evaluation, which would conflict with Section 6's statement that the pipeline was run for each of the 502 datasets. Please clarify the exact evaluation set underlying Table 1.
  4. [§5.1, Proposition 1] Proposition 1 shows optimality for the entropic dataset-alignment objective, not for the downstream task loss. The introduction and conclusion should be reworded so that Prop. 1 is not cited as grounding task-loss performance.
  5. [General] There are several typos and small errors: 'an Rouge-L' in §6.1, 'an normalized' in §4.2, 'SoftMinstage' in Appendix C.1.4, and 'Snow, since' in the proof Step 5. Also, Step 4 states a domain R^{K-1} for an affine map used in Eq. (22) on R^K; please check the dimensions.
  6. [§2, Related Work] The related work omits the literature on model merging and adapter composition (e.g., weight interpolation, task arithmetic, model soups), which are directly relevant baselines for the proposed convex-combination approach. Adding at least a discussion would help position the contribution.

Circularity Check

2 steps flagged · score 4.0 of 10

Two definitional 'optimality' steps soften the theoretical claim, but the CPU empirical pipeline is self-contained.

  1. self definitional [Section 5.1, Proposition 1 (proof in Appendix B.1)]
    "Proposition 1 (Existence: Optimal Oracles for Fine-Tuning). ... softmin◦align(D) ∈ argmin_{w∈∆k} 1/K ∑_{k=1}^{K} wk ρ(D, D_k) + (1/α) ∑_{k=1}^{K} wk log(wk)"

    The alignment scores in Eq. (4) are defined as softmin of the distance vector, and Proposition 1 concludes that this same softmin vector minimizes the linear distance term plus the entropy penalty. That objective is the standard entropic-regularized program whose unique minimizer is softmin by construction; the proof simply invokes the known minimizer formula via a citation to Wang et al. 2020, a paper co-authored by one of the present authors. The 'optimality' proved is therefore the defining optimality of softmin for a deliberately chosen alignment objective, not a derived optimality statement about downstream fine-tuning loss. The title 'Optimal Oracles for Fine-Tuning' relabels this softmin identity; no task loss appears in the proposition.

  2. self definitional [Section 5.2, Proposition 2 and Theorem 1 with Eq. (3)]
    "For every dataset D ∈ D there exists an oracle parameter ϑ⋆ ∈ co(∆θ) satisfying E(X,Y)∼D [ℓ(fθ+ϑ⋆(X),Y)] = inf_{∆θ∈co(∆θ)} E(X,Y)∼D [ℓ(fθ+∆θ(X),Y)]."

    By Eq. (3), every output of every pipeline variant is constrained to lie in co(Δθ), the convex hull of the bank LoRAs. Proposition 2 defines the 'oracle' as the best point of this same set co(Δθ), and Theorem 1 then promises that the cheap MLP-generated adapter is within ε of that hull-optimal value with high probability. The optimality target is thus definitionally tied to the method's own output space: the theorem says, in effect, that the method can approximate the best point in the set the method is restricted to. Whether co(Δθ) actually contains a near-optimal adapter for a genuinely new task is neither proved nor tested, and the paper's own numbers (0.520 vs 0.746 Rouge-L) leave that gap as the load-bearing unknown.

full rationale

The empirical pipeline is not circular: evaluation masks the self-distance (Appendix C.1.4), so a target dataset is not allowed to select its own adapter, and the comparison to the base model and to GPU-fine-tuned adapters is an external benchmark. The circularity is confined to the theoretical framing. Proposition 1 proves a softmin identity and renames it an 'optimal oracle for fine-tuning,' and the Proposition 2 / Theorem 1 pair defines the oracle as the infimum over co(Δθ), which is exactly the convex hull to which the method's outputs are restricted by Eq. (3). The Wang et al. (2020) citation used in the Proposition 1 proof is a self-citation, but the underlying identity is elementary and independently verifiable, so it is not load-bearing in a way that would raise the score further. The convex-hull adequacy premise is a genuine open risk, but it is best characterized as a correctness/limitation issue rather than a derivation that reduces to its own inputs; the score reflects the two definitional optimality steps, not any suspicion that the experiments are rigged.

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

The method does not introduce new physical entities. It rests on two kinds of unverified assumptions: (i) that the best adapter for a new task lies in the convex hull of the bank, which is never tested and is likely the main cap on performance; and (ii) that the distance map align is injective enough for the measurable-selector argument in Theorem 1. Several implementation choices that affect the distances (MMD bandwidth, Wasserstein ground metric, self-distance masking) are free parameters in practice because they are not reported.

free parameters (4)
  • MMD kernel bandwidth
    Gaussian kernel bandwidth sigma in Appendix A.3 Eq. (12) is not reported; it changes all MMD distances and therefore the adapter weights.
  • Wasserstein ground metric
    W1 in Appendix A.3 Eq. (9) requires a metric on tokenized sequence space; the choice (token-id difference, edit distance, etc.) is not specified and changes all WD results.
  • Self-distance masking value
    In Appendix C.1.3 the self-distance rho(T(D_i), T(D_i)) is replaced with 'a large value'; the exact value affects softmin coefficients for every dataset.
  • MLP training hyperparameters = not reported
    Learning rate, epochs, optimizer, and validation split for the Neural approach are not stated, so the trained model is not reproducible.
assumptions (5)
  • ad hoc to paper Assumption 1: align is injective on D (metric dimension exactly K)
    Stated in Section 5.2; needed for a measurable inverse of align in Theorem 1. Not verified for the four distance metrics on the 502-dataset bank.
  • ad hoc to paper Near-optimal LoRA lies in co(Delta theta), the convex hull of bank adapters
    Used implicitly in Proposition 2 and Theorem 1, and by the construction in Eq. (3). No evidence is given that the optimal fine-tuned adapter for a new task is close to this hull; the experimental gap to GPU fine-tuning is consistent with this failing.
  • domain assumption Loss ell and model f are (locally) Lipschitz
    Assumed in Section 4.1 and used in the proof of Theorem 1; reasonable for LLMs with bounded inputs but not verified.
  • domain assumption rho metrizes the weak topology on D
    Assumed in Assumption 1 and used to apply the Portmanteau theorem in Appendix B.2; the empirical distances on tokenized data are not shown to metrize convergence in distribution.
  • standard math Universal approximation and measurable selection theorems apply
    Kidger-Lyons, Kratsios-Papon, and Aliprantis-Border results used in Appendix B.2; standard background results.

how reviews work

0 comments
Cite this review

Pith. "Pith review of LoRA Fine-Tuning Without GPUs: A CPU-Efficient Meta-Generation Framework for LLMs." pith.science (2026). https://pith.science/paper/KKIRY6NQ

@misc{pith2026250701806,
  author       = {Pith},
  title        = {Pith review of: LoRA Fine-Tuning Without GPUs: A CPU-Efficient Meta-Generation Framework for LLMs},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/KKIRY6NQ}},
  note         = {Machine review of arXiv:2507.01806}
}
read the original abstract

Low-Rank Adapters (LoRAs) have transformed the fine-tuning of Large Language Models (LLMs) by enabling parameter-efficient updates. However, their widespread adoption remains limited by the reliance on GPU-based training. In this work, we propose a theoretically grounded approach to LoRA fine-tuning designed specifically for users with limited computational resources, particularly those restricted to standard laptop CPUs. Our method learns a meta-operator that maps any input dataset, represented as a probability distribution, to a set of LoRA weights by leveraging a large bank of pre-trained adapters for the Mistral-7B-Instruct-v0.2 model. Instead of performing new gradient-based updates, our pipeline constructs adapters via lightweight combinations of existing LoRAs directly on CPU. While the resulting adapters do not match the performance of GPU-trained counterparts, they consistently outperform the base Mistral model on downstream tasks, offering a practical and accessible alternative to traditional GPU-based fine-tuning.

Figures

Figures reproduced from arXiv: 2507.01806 by the authors.

Figure 1
Figure 1. Coefficient distributions for each approach. Each image: Top Left = WD, Top Right = KL, Bottom Left = JS, Bottom Right = MMD. 16 [PITH_FULL_IMAGE:figures/full_fig_p016_1.png] view at source ↗

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

16 extracted references · 11 canonical work pages

  1. [1]

    Symmetry exploitation: For symmetric difference metrics (WD, JS, and MMD), we calculate only half of the possible N×N distances, reusing values obtained from calculations done for pair (i, j), where i < j, as the (j, i)pair as well

  2. [2]

    Pre-computation of probability distributions: For metrics requiring probability density functions (KL and JS), we pre-calculate and cache these distributions for all datasets to avoid repeating these costly computations

  3. [3]

    Table 2 reports the time elapsed at each stage of our LoRA generation pipeline, measured on a Dell XPS15 (Intel i7-13700H, 14 cores, 64 GB RAM)

    Parallelization: We also utilize multi-threading capabilities by assigning each distance calculation to a separate CPU thread, allowing these independent computations to be processed concurrently. Table 2 reports the time elapsed at each stage of our LoRA generation pipeline, measured on a Dell XPS15 (Intel i7-13700H, 14 cores, 64 GB RAM). All steps, exce...

  4. [4]

    Distances Processing (Coefficients): Base attentional 3 min Normalized 3 min MLP-based 45 min

  5. [5]

    Expected Answer:

    Adapter prediction: Calculating adapters and saving 5 min C.1. Pipeline Steps We evaluate three pipelines for predicting LoRA adapter parameters. TheAttentionalmethod is lightweight, using only matrix multiplications with no learned components. TheNormalizedmethod standardizes distance values to a normal distribution to stabilize theSoftMinstage. TheNeura...

  6. [6]

    ISBN 978-3-030-56402-5; 978-3-030-56401-

  7. [8]

    URL https: //doi.org/10.1007/978-3-030-56402-5

    doi: 10.1007/978-3-030-56402-5. URL https: //doi.org/10.1007/978-3-030-56402-5. J. Dugundji. An extension of Tietze’s theorem.Pa- cific J. Math., 1:353–367, 1951. ISSN 0030- 8730,1945-5844. URL http://projecteuclid. org/euclid.pjm/1103052106. Anastasis Kratsios and Léonie Papon. Universal approxima- tion theorems for differentiable geometric deep learning...

  8. [12]

    Dataset-Adapter pairs gathering: Downloading raw data 15 min

Show all 16 references
  1. [13]

    Datasets Pre-processing: Tokenization 10 min

  2. [14]

    Distribution similarity calculations: Wasserstein (WD) 3 hours Kullback–Leibler (KL) 5 min Jensen–Shannon (JS) 5 min Maximum Mean Discrepancy (MMD) 1.5 hours

  3. [2006]

    A hitchhiker’s guide

    ISBN 978-3-540-32696-0; 3-540-32696-0. A hitchhiker’s guide. James R. Munkres.Topology. Prentice Hall, Inc., Upper Saddle River, NJ, second edition, 2000. ISBN 0-13- 181629-2. Olav Kallenberg.Foundations of modern probability, volume 99 ofProbability Theory and Stochastic Mod-...

  4. [2020]

    doi: 10.18653/v1/2020.emnlp-demos.7

    Association for Computational Linguistics. doi: 10.18653/v1/2020.emnlp-demos.7. URL https:// aclanthology.org/2020.emnlp-demos.7. Ning Ding, Yujia Qin, Guang Yang, Fuchao Wei, Zonghan Yang, Yusheng Su, Shengding Hu, Yulin Chen, Chi-Min Chan, Weize Chen, Jing Yi, Weilin Zhao, X...

  5. [2021]

    copy” of S in “distance domain

    provides an efficient alternative by introducing low-rank updates to pre-trained weight matrices, particularly focusing on attention layers in transformer-based models. Given query Q, key K, and value V matrices, the standard attention mechanism computes the attention scores A...

  6. [2022]

    Jonas Pfeiffer, Andreas Rücklé, Clifton Poth, Aishwarya Kamath, Ivan Vuli´c, Sebastian Ruder, Kyunghyun Cho, and Iryna Gurevych

    URL https://openreview.net/forum? id=0RDcd5Axok. Jonas Pfeiffer, Andreas Rücklé, Clifton Poth, Aishwarya Kamath, Ivan Vuli´c, Sebastian Ruder, Kyunghyun Cho, and Iryna Gurevych. AdapterHub: A framework for adapting transformers. In Qun Liu and David Schlangen, editors,Proceedi...

  7. [2024]

    Xin Li, Dongze Lian, Zhihe Lu, Jiawang Bai, Zhibo Chen, and Xinchao Wang

    URL https://openreview.net/forum? id=hHNVn4hFPk. Xin Li, Dongze Lian, Zhihe Lu, Jiawang Bai, Zhibo Chen, and Xinchao Wang. Graphadapter: Tuning vision- language models with dual knowledge graph. InAd- vances in Neural Information Processing Systems, 2023. Wei Dong, Dawei Yan, ...

  8. [2025]

    Amir Gholami, Sehoon Kim, Zhen Dong, Zhewei Yao, Michael W

    URL https://openreview.net/forum? id=gxhZj6uvFC. Amir Gholami, Sehoon Kim, Zhen Dong, Zhewei Yao, Michael W. Mahoney, and Kurt Keutzer. A survey of quantization methods for efficient neural network infer- ence, 2021. Tim Dettmers, Artidoro Pagnoni, Ari Holtzman, and Luke Zettl...

Pith tools

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