The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Low-precision training always reduces effective data size, but only signal-independent (additive) quantization shrinks effective model capacity; signal-dependent (multiplicative) quantization preserves model scale while adding error, informing cost–quality trade-offs when choosing precision, model size and dataset size.

Scaling Laws for Precision in High-Dimensional Linear Regression
Dechen Zhang, Xuan Tang, Yingyu Liang, Difan Zou · February 22, 2026
arxiv theoretical n/a evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Dechen Zhang unresolved corpus identity
  2. Xuan Tang unresolved corpus identity
  3. Yingyu Liang unresolved corpus identity
  4. Difan Zou unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Dechen Zhang provider ID
  2. Xuan Tang provider ID
  3. Yi Liang provider ID
  4. Difan Zou provider ID
In a high-dimensional sketched linear regression setting, multiplicative (signal-dependent) quantization preserves the effective model size while additive (signal-independent) quantization reduces it, and both introduce additive error that degrades effective data size.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Low-precision training is critical for optimizing the trade-off between model quality and training costs, necessitating the joint allocation of model size, dataset size, and numerical precision. While empirical scaling laws suggest that quantization impacts effective model and data capacities or acts as an additive error, the theoretical mechanisms governing these effects remain largely unexplored. In this work, we initiate a theoretical study of scaling laws for low-precision training within a high-dimensional sketched linear regression framework. By analyzing multiplicative (signal-dependent) and additive (signal-independent) quantization, we identify a critical dichotomy in their scaling behaviors. Our analysis reveals that while both schemes introduce an additive error and degrade the effective data size, they exhibit distinct effects on effective model size: multiplicative quantization maintains the full-precision model size, whereas additive quantization reduces the effective model size. Numerical experiments validate our theoretical findings. By rigorously characterizing the complex interplay among model scale, dataset size, and quantization error, our work provides a principled theoretical basis for optimizing training protocols under practical hardware constraints.

Summary

Main Finding

The paper proves, in a high-dimensional sketched linear-regression model trained by one-pass stochastic gradient descent (SGD) with stochastic quantization, that multiplicative (signal-dependent, FP-like) and additive (signal-independent, INT-like) quantization induce qualitatively different scaling behaviors. Both reduce effective data size and introduce an irreducible additive risk, but only additive quantization contracts the effective model size. Formally, the population risk obeys the unified form R(v_N) ≲ R* + 1/Meff^{a-1} + 1/Neff^{(a-1)/a} + δ(ϵ), where a>1 is the power-law spectral exponent, ϵ denotes quantization severity, δ(ϵ) is an additive precision-dependent error, and: - Multiplicative quantization: Meff ≈ M (model capacity preserved), Neff reduced by noise amplification and spectral distortion factors. - Additive quantization: Meff is strictly reduced (effective model shrinkage) in addition to Neff reduction and additive error. The paper also provides matching lower bounds that validate these mechanisms and presents numerical experiments supporting the theory.

Key Points

  • Setting: sketched linear regression with Gaussian sketch matrix S, M trainable parameters, one-pass constant-step-size quantized SGD, and unbiased stochastic coordinate-wise quantizers.
  • Quantizer types:
    • Multiplicative: error second moment ∝ x x^T (signal-dependent) — models FP formats (e.g., floating-point with exponents).
    • Additive: error second moment ∝ I (signal-independent) — models integer formats (e.g., fixed-step INT8).
  • Assumptions:
    • Data covariance spectrum follows a power law λ_i ∝ i^{-a} with a>1.
    • Fourth-moment and noise conditions (both upper and lower bounds) hold for quantized features.
    • Some results assume H^(q)_f (quantized feature covariance) commutes with sketched covariance SHS^T to obtain sharper bounds.
  • Main theoretical results:
    • Theorem (multiplicative, upper bound): population risk bound with Meff = M; Neff compressed by a function of compound quantization coefficients (noise amplification ϵ^(M)_2 and spectral distortion ϵ^(M)_3); additive error term ≈ σ^2 + ϵ^(M)_3.
    • Theorem (additive, upper bound — summarized): similar unified bound but with Meff strictly less than M, driven by additive quantization noise and spectral distortion; δ(ϵ) remains present.
    • Lower bounds (Theorems 4.3/4.4): show the additive error and Neff reduction are unavoidable; they corroborate that the two mechanisms are intrinsic, not artifacts of analysis.
  • Practical confirmation: numerical experiments in the paper validate the predicted dichotomy and quantitative trends.
  • Caveats: commutativity assumption for tight bounds; one-pass SGD and linear model abstraction limit direct transfer to all deep-learning regimes.

Data & Methods

  • Model: linear predictor f_v(x) = ⟨v, S x⟩ with v ∈ R^M and S ∈ R^{M×H} a Gaussian sketch (entries ∼ N(0,1/M)); population risk conditioned on S.
  • Training algorithm: one-pass, constant-step-size SGD with coordinate-wise stochastic unbiased quantizers applied to various operands (data, sketch, feature, labels, parameters, activations, output gradients). Iterate-averaged output v_N = (1/N)∑_{t=0}^{N-1} v_t.
  • Quantization modeling:
    • Stochastic unbiased rounding (Markov-type) so E[Q(u)|u]=u.
    • Two formal error models (multiplicative and additive) defined via conditional second moments.
  • Data assumptions:
    • Well-specified linear model E[y|x]=x^T w, prior E[w w*^T]=I.
    • Power-law eigenvalues λ_i ≍ i^{-a}, a>1.
    • Finite traces and moment bounds; specific fourth-moment and noise lower/upper bounds extended to quantized features.
  • Analysis approach:
    • Aggregate per-target quantization errors into compound coefficients that capture (i) noise amplification (from quantizing params, activations, gradients) and (ii) spectral distortion / feature-space mismatch (from quantizing data, sketch, features).
    • Derive finite-sample upper bounds on population risk as functions of M, N, and the compound quantization coefficients; also derive matching lower bounds.
    • Provide numerical simulations to confirm the theoretical predictions.

Implications for AI Economics

  • Quantization format choice materially affects the cost-benefit trade-off among model size (M), dataset size (N), and precision (bit-width). This influences where to invest fixed compute/memory budgets:
    • If quantization behaves multiplicatively (FP-like): Meff ≈ M — model capacity is preserved, so aggressive FP-like low-precision (e.g., FP8 formats whose error scales with magnitude) can reduce hardware cost while still benefiting from increasing model size. Economically, prioritize investing saved compute into larger models when using FP-like quantization.
    • If quantization behaves additively (INT-like): Meff contracts — increasing nominal model size yields diminishing returns because effective capacity shrinks. Under INT-style quantization, it is often more cost-effective to allocate budget to (i) increasing dataset size N (which still improves Neff until data-limited regime), (ii) raising precision for weights/gradients, or (iii) using mixed precision that keeps the most noise-sensitive tensors in higher precision.
  • Mixed-precision design: analysis isolates noise amplification terms coming from parameter/activation/gradient quantization. Economically efficient mixed-precision heuristics emerge: keep parameters or gradients in higher precision to limit noise amplification (reduce ϵ_2 terms), quantize activations/features more aggressively if they induce multiplicative-style errors that preserve Meff.
  • Hardware procurement and operator choices:
    • For large-model scaling where preserving model capacity matters, hardware supporting FP-like low-precision (e.g., FP8 with appropriate exponent/mantissa trade-offs) offers stronger economic value than pure INT quantization.
    • Where only INT hardware is available, the modeler should account for effective model shrinkage; investing in more data or higher-precision compute for key tensors may be better ROI than only increasing nominal parameter count.
  • Cost modeling: the unified risk formula R* + 1/Meff^{a-1} + 1/Neff^{(a-1)/a} + δ(ϵ) gives a principled way to incorporate precision into economic decision models. By estimating the problem-dependent spectral exponent a and empirical quantization coefficients ϵ (or δ), one can forecast marginal returns to adding parameters vs data vs bits under a fixed budget.
  • Policy/operation: when designing compute budgets, include precision-form effects (multiplicative vs additive) rather than treating bit-width as a simple multiplicative speed/cost factor—because INT-like quantizers can change the fundamental scaling of model effectiveness.

Limitations and practical next steps - Results are proved in a linear sketched model with one-pass SGD and unbiased stochastic quantizers; neural networks, multi-epoch training, biased quantizers, and real hardware effects may introduce differences. - Theorems assume a power-law spectrum and, for sharper bounds, commutativity between quantized feature covariance and sketched covariance—these assumptions may be violated in practice. - Recommended empirical follow-ups for AI-economic decision-making: - Measure the paper’s compound quantization coefficients ϵ_i on target hardware/quantizers for real training pipelines. - Fit the unified risk formula to empirical loss vs (M,N,bit-width) curves to estimate a and δ(ϵ) and use these to optimize compute allocation. - Test mixed-precision allocations guided by the theory (protect parameters/gradients) across LLM-scale training runs to estimate practical ROI.

Assessment

Paper Typetheoretical Evidence Strengthn/a — This is a theoretical paper with supporting numerical simulations rather than an empirical causal study; it does not make causal claims about real-world economic outcomes that require identification strategies. Methods Rigorhigh — The paper develops a rigorous analytical treatment in a high-dimensional sketched linear regression framework, clearly separates multiplicative versus additive quantization mechanisms, derives scaling-law consequences, and validates results with controlled numerical experiments; limitations stem from model idealizations (linear setting, sketching) rather than methodological sloppiness. SampleAnalytic derivations in a high-dimensional sketched linear regression model supplemented by numerical simulations on synthetic datasets that vary model size, dataset size, and quantization noise type (multiplicative/signal-dependent and additive/signal-independent) and magnitude; no real-world deep-learning training runs or field data. Themesproductivity innovation GeneralizabilityResults are derived for linear regression and sketched designs and may not directly extend to nonlinear models (deep neural networks)., Analysis often relies on high-dimensional/asymptotic approximations that may differ from finite-size practical training regimes., Quantization models (idealized additive or multiplicative noise) may not capture all hardware-specific effects of low-precision arithmetic or optimizer interactions., Training dynamics (e.g., SGD, adaptive optimizers, regularization, batch effects) are not modeled, limiting direct applicability to full training pipelines., Numerical validation uses synthetic data, so empirical performance on real-world datasets and tasks is untested.

Claims (10)

ClaimDirectionOutcomeConfidence & EvidenceDetails
Low-precision training is critical for optimizing the trade-off between model quality and training costs. Other positive trade-off between model quality and training costs
Reading fidelity high
Study strength medium
not reported
0.12
Optimizing that trade-off requires the joint allocation of model size, dataset size, and numerical precision. Other positive joint allocation of model size, dataset size, and numerical precision
Reading fidelity high
Study strength medium
not reported
0.12
Empirical scaling laws suggest that quantization either impacts effective model and data capacities or acts as an additive error. Other mixed characterization of quantization effect (effective capacities vs additive error)
Reading fidelity high
Study strength medium
not reported
0.12
The theoretical mechanisms governing how quantization affects scaling laws remain largely unexplored. Other null_result theoretical understanding of quantization effects on scaling laws
Reading fidelity high
Study strength medium
not reported
0.12
This work provides a theoretical study of scaling laws for low-precision training within a high-dimensional sketched linear regression framework. Other positive theoretical characterization of scaling laws under quantization
Reading fidelity high
Study strength medium
not reported
0.12
Analyzing multiplicative (signal-dependent) and additive (signal-independent) quantization reveals a critical dichotomy in their scaling behaviors. Other positive difference in scaling behavior between multiplicative and additive quantization
Reading fidelity high
Study strength medium
not reported
0.12
Both multiplicative and additive quantization schemes introduce an additive error term and degrade the effective data size. Other negative additive error magnitude; effective data size
Reading fidelity high
Study strength medium
not reported
0.12
Multiplicative quantization preserves the full-precision effective model size, whereas additive quantization reduces the effective model size. Other mixed effective model size under multiplicative vs additive quantization
Reading fidelity high
Study strength medium
not reported
0.12
Numerical experiments validate the theoretical findings about the interplay among model scale, dataset size, and quantization error. Other positive empirical consistency between theory and numerical experiments on scaling behavior under quantization
Reading fidelity high
Study strength medium
not reported
0.12
By characterizing the interplay among model scale, dataset size, and quantization error, the work provides a principled theoretical basis for optimizing training protocols under practical hardware constraints. Other positive principled basis for optimizing training protocols under hardware constraints
Reading fidelity high
Study strength medium
not reported
0.12

Notes