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 →

A single backward pass lets WANDA focus pruning budget on loss-sensitive neurons: F-WANDA raises knowledge-task accuracy by ~1.5 percentage points at 50% sparsity while cutting pruning energy roughly threefold versus the costly SPARSEGPT method.

F-WANDA: Fisher-Reweighted Post-Training Pruning for Sustainable Deployment of Large Language Models
Himanshu Mishra · August 01, 2026
arxiv descriptive medium 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. Himanshu Mishra unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Himanshu Mishra provider ID
F-WANDA augments WANDA by using a single backward pass to collect per-neuron empirical Fisher information and reallocate per-row keep budgets, yielding ~1.4–1.6 pp higher MMLU at 50% unstructured sparsity while matching fluency and costing about one-third the pruning energy of SPARSEGPT.

Citation observations

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

One-shot post-training pruning is the most energy-frugal compression strategy for largelanguage models (LLMs), yet existing approaches trade either quality (WANDA) or compute cost (SPARSEGPT). We introduce F-WANDA, a drop-in modification of WANDA that reallocates the per-row keep budget across output neurons in proportion to the empirical Fisher information of the pre-activation. The Fisher signal is collected in a single additional backward pass over the same calibration corpus WANDA already uses; no weights are updated. On LLAMA-2-7B at 50 % unstructured sparsity, F-WANDA attains WikiText-2 perplexity of 6.85, matches WANDA fluency, and improves 5-shot MMLU by +1.6 pp over WANDA and +1.1 pp over SPARSEGPT, while incurring only one-third of SPARSEGPT pruning wall-clock and energy. The headline trade-off is achieved without extra calibration data or fine-tuning, placing F-WANDA on the Pareto frontier of quality versus pruning cost for sustainable LLM compression.

Summary

Main Finding

F‑WANDA is a drop‑in modification of WANDA that uses a single backward pass over the same calibration corpus to compute an empirical Fisher scalar per output neuron and then reallocates the per‑row keep budget proportionally (via a water‑filling allocator). At 50% unstructured sparsity on LLAMA‑2 models, F‑WANDA matches WANDA on fluency (WikiText‑2 PPL) while improving knowledge performance (5‑shot MMLU) by ≈1.4–1.6 percentage points and sits on the Pareto frontier of quality vs. pruning energy: it delivers higher quality than WANDA and is substantially cheaper than SPARSEGPT.

Key Points

  • Core idea: compute row‑aggregated empirical Fisher ω¯i = (1/N) Σt (∂Lt/∂y t,i)^2 from one backward pass, use √ω¯i to allocate each row’s keep count ki (instead of uniform per‑row budget), then keep the top ki weights per row by WANDA’s |Wij|·∥Xj∥2 score.
  • Degeneracy avoided: multiplying WANDA scores by a per‑row scalar does not change within‑row ranking; F‑WANDA uses Fisher to change the per‑row budget (ki), not to rescale weights.
  • Budget allocation: global keep budget K = ⌈(1−s) dout·din⌉; ki ∝ √ω¯i with clamps [1, din], implemented via iterative water‑filling and largest‑remainder rounding to ensure integer sum K.
  • No weight updates, no extra calibration data, only one extra backward pass (no Hessian inversions).
  • Primary empirical gains at 50% unstructured sparsity:
    • LLAMA‑2‑7B: WikiText‑2 PPL 6.85 (F‑WANDA) vs 6.92 (WANDA); 5‑shot MMLU 43.1% vs 41.5% (+1.6 pp).
    • LLAMA‑2‑13B: PPL 5.93 (F‑WANDA) vs 5.97 (WANDA); 5‑shot MMLU 52.4% vs 51.0% (+1.4 pp).
  • Efficiency/sustainability:
    • F‑WANDA pruning energy (one shot): 4.3 kJ (7B) and 10.1 kJ (13B).
    • Compare SPARSEGPT: 12.6 kJ (7B) and 27.0 kJ (13B) — F‑WANDA ≈2.6–2.9× lower pruning energy than SPARSEGPT.
    • Prune time / peak GPU memory (single H100 80GB): WANDA 5 min / 14 GB (7B); F‑WANDA 12 min / 30 GB (7B); SPARSEGPT 35 min / 22 GB (7B). (13B numbers: WANDA 10 min/26GB; F‑WANDA 28 min/58GB; SPARSEGPT 75 min/40GB.)
    • Inference energy per token is the same across pruning methods at matched sparsity (savings realized at compression time).
  • Robustness & ablations:
    • Calibration size: performance plateaus ≥128 sequences of 2048 tokens (the default).
    • Using (E[g])^2 instead of E[g^2] collapses allocation to uniform; sampling labels (true Fisher) similar to empirical Fisher.
    • Largest mask differences vs WANDA occur in mid‑network MLP down‑projection layers (factual stores).
  • Limitations:
    • No benefit under strict hardware N:M constraints (e.g., 2:4) because per‑block keep counts are fixed; reduces to WANDA there.
    • Extra backward pass increases peak memory (could require model parallelism for very large models).
    • Evaluated on LLAMA‑2 family and C4 calibration shard only; cross‑family and cross‑corpus robustness untested.

Data & Methods

  • Models: LLAMA‑2‑7B and LLAMA‑2‑13B (official HF checkpoints, BF16).
  • Calibration: 128 sequences × 2048 tokens sampled from a fixed C4 shard (same as WANDA baseline).
  • Pruning targets: 50% unstructured sparsity; also reported 2:4 (where F‑WANDA reduces to WANDA).
  • Saliency baseline (WANDA): Sij = |Wij| · ∥Xj∥2 (one forward pass).
  • F‑WANDA additions:
    • One backward pass to collect per‑row empirical Fisher ω¯i = (1/N) Σt (∂Lt/∂y t,i)^2.
    • Compute vi = √ω¯i and allocate integer keep counts ki by iterative water‑filling + largest‑remainder rounding so Σi ki = K.
    • For each row, keep top ki entries by WANDA score.
  • Complexity: O(N·|θ|) (forward+backward over calibration) vs SPARSEGPT’s layerwise O(din^3) Hessian inversions; practical pruning wall‑clock and energy substantially lower than SPARSEGPT.
  • Evaluation: WikiText‑2 perplexity, 5‑shot MMLU, seven‑task zero‑shot suite; energy measured by NVML (nvidia‑smi) sampled at 10 Hz with idle subtraction, five repeats, 95% CIs reported in appendix.

Implications for AI Economics

  • Low marginal cost of higher quality: F‑WANDA demonstrates that a small additional upfront compression cost (one backward pass) can meaningfully preserve model knowledge at fixed sparsity. This improves the cost‑effectiveness of one‑shot pruning strategies used in deployment pipelines.
  • Pruning energy matters: SPARSEGPT produces high quality but at much higher pruning energy and wall‑clock time. For organizations that repeatedly compress or re‑compress models (e.g., after fine‑tuning), the lower pruning energy and faster turnaround of F‑WANDA reduce operational costs and carbon footprint associated with compression workflows.
  • Fleet‑scale impact: reported one‑shot pruning costs are small in absolute terms (e.g., 10.1 kJ for a 13B prune), but at fleet scale or at frequent re‑compression cadence these multiply; replacing expensive schemes with F‑WANDA can cut that portion of operational energy by ≈2.6–2.9× while improving (not degrading) knowledge retention.
  • Inference vs compression trade: inference energy per token is determined by the deployed sparsity/density and hardware support; choice of pruning algorithm affects compression energy and quality but not per‑token inference energy at a given sparsity. Therefore, algorithm choice is an operational cost decision (pruning-time energy, wall‑clock, memory) with direct quality consequences that influence downstream utility and possibly the need for re‑serving denser models (which would increase inference costs).
  • Practical deployment note: benefits accrue most for unstructured sparsity regimes or when hardware/software supports using unstructured masks efficiently; under strict hardware N:M constraints F‑WANDA gives no advantage over WANDA, so economic gains depend on target deployment format.
  • Recommendation for economic evaluation: reporting pruning-time energy and latency alongside inference costs is important for meaningful cost–quality comparisons of compression methods; F‑WANDA provides a pragmatic middle ground for organizations balancing compression energy budgets against knowledge retention in LLMs.

If you want, I can produce a short table comparing the key numeric cost/quality tradeoffs (prune energy, time, MMLU gains) for quick reference.

Assessment

Paper Typedescriptive Evidence Strengthmedium — The paper presents controlled empirical comparisons across clear baselines (WANDA, SPARSEGPT, magnitude) and two model scales (LLAMA-2-7B and 13B), with ablations and repeated energy measures; however, quality metrics are mostly single-seed, effect sizes are modest (~1.4–1.6 pp on MMLU), evaluation is limited to one family of models and one calibration corpus, and there is limited statistical testing of the primary accuracy improvements. Methods Rigorhigh — The method is precisely specified (algorithms, pseudocode, hyperparameters), uses appropriate strong baselines, includes ablations (calibration size, Fisher variants, per-layer behavior), and reports energy accounting with repeated runs and confidence intervals; remaining weaknesses are single-seed reporting for main quality metrics, evaluation limited to LLAMA-2 family and C4 calibration, and absence of multi-seed significance tests for MMLU. SampleCalibration corpus: 128 sequences × 2048 tokens sampled from a single C4 shard (en/c4-train.00000-of-01024.json.gz), seed=0. Models: LLAMA-2-7B and LLAMA-2-13B (official HF checkpoints). Evaluation: WikiText-2 perplexity, 5-shot MMLU, a seven-task zero-shot suite (BoolQ, RTE, HellaSwag, WinoGrande, ARC-easy/ARC-challenge, OpenBookQA) via lm-evaluation-harness. Sparsity settings: 50% unstructured and 2:4 N:M; baselines include MAGNITUDE, WANDA, SPARSEGPT. Energy/latency measured on a single NVIDIA H100 80GB with power sampled at 10 Hz; pruning energy averages over five runs with reported CIs. Themesproductivity innovation GeneralizabilityEvaluated only on LLAMA-2 decoder-only family (7B and 13B); unknown performance on other architectures (LLaMA-3, Mistral, Qwen) or encoder/vision models., Calibration data drawn from a single C4 shard; prior work shows sensitivity to calibration corpus, so Fisher signal robustness across corpora is untested., Under hardware-fixed N:M sparsity the method reduces to WANDA and offers no benefit; applicability depends on target deployment sparsity patterns., Memory and runtime overhead (extra backward pass) may scale poorly for much larger models without parallelism or offloading., Main accuracy metrics reported as single-seed estimates; variability across random seeds and longer-run stability not fully characterized.

Claims (9)

ClaimDirectionOutcomeConfidence & EvidenceDetails
At 50% unstructured sparsity, F-WANDA improves 5-shot MMLU accuracy over WANDA by 1.6 percentage points on LLAMA-2-7B and by 1.4 percentage points on LLAMA-2-13B. Output Quality positive 5-shot MMLU accuracy
Reading fidelity high
Study strength medium
n=2
+1.6 pp on 7B; +1.4 pp on 13B
0.18
At 50% unstructured sparsity, F-WANDA achieves WikiText-2 perplexity of 6.85 on LLAMA-2-7B and 5.93 on LLAMA-2-13B, lower than the reported perplexity of WANDA on both models. Output Quality positive WikiText-2 perplexity
Reading fidelity high
Study strength medium
n=2
6.85 PPL on 7B; 5.93 PPL on 13B
0.18
At 50% unstructured sparsity, F-WANDA uses 2.6–2.9 times less pruning energy than SPARSEGPT on LLAMA-2-7B and LLAMA-2-13B. Organizational Efficiency negative One-shot pruning energy
Reading fidelity high
Study strength medium
n=5
2.6–2.9× lower pruning energy
0.18
F-WANDA requires substantially less pruning wall-clock time than SPARSEGPT: 12 versus 35 minutes for LLAMA-2-7B and 28 versus 75 minutes for LLAMA-2-13B. Task Completion Time negative Pruning wall-clock time
Reading fidelity high
Study strength medium
n=5
12 vs. 35 min on 7B; 28 vs. 75 min on 13B
0.18
At matched sparsity, inference-time energy per token is identical across MAGNITUDE, WANDA, SPARSEGPT, and F-WANDA in the reported experiments. Organizational Efficiency null_result Inference energy per token
Reading fidelity high
Study strength medium
n=5
40 J/token on 7B; 70 J/token on 13B
0.18
F-WANDA requires one forward pass and one backward pass over the calibration set and does not perform layer-wise Hessian inversion or weight updates. Organizational Efficiency positive Pruning computation and procedure
Reading fidelity high
Study strength high
n=128
128 sequences × 2048 tokens; one forward and one backward pass
0.3
Increasing the calibration set beyond 128 sequences produces little additional MMLU benefit for F-WANDA on LLAMA-2-7B: MMLU ranges from 42.5% at 32 sequences to 43.3% at 512 sequences, and the 128-sequence setting is within 0.2 percentage points of the largest budget. Output Quality mixed 5-shot MMLU accuracy as a function of calibration-set size
Reading fidelity high
Study strength medium
n=5
42.5% at N=32 to 43.3% at N=512; N=128 within 0.2 pp of the maximum
0.18
Under strict 2:4 sparsity, F-WANDA reduces exactly to standard WANDA because hardware-fixed block density prevents applying the Fisher-informed per-row budget. Task Allocation null_result Pruning-mask and benchmark outcome under 2:4 sparsity
Reading fidelity high
Study strength high
n=2
0 difference by construction
0.3
The reported quality results are based on single-seed estimates, while the reported energy and latency measurements are averages over five repeats with 95% confidence intervals. Other other Evaluation reliability and measurement procedure
Reading fidelity high
Study strength medium
n=5
Five repeats; 95% confidence intervals
0.18

Notes