Research
WSBD: Freezing-Based Optimizer for Quantum Neural Networks
Overview Research area: Quantum machine learning / quantum neural network (QNN) optimization. Technical level: Advanced — the paper assumes familiarity with variational quantum circuits, the parameter
- arXiv
- 2602.11383
- Published
- 2026-02-11
- Authors
- Christopher Kverne, Mayur Akewar, Yuqian Huo, Tirthak Patel, Janki Bhimani
AI summary
Overview
Research area: Quantum machine learning / quantum neural network (QNN) optimization.
Technical level: Advanced — the paper assumes familiarity with variational quantum circuits, the parameter-shift rule, and convergence analysis, though the core idea (freezing parameters) is intuitive.
Scope: The paper introduces Weighted Stochastic Block Descent (WSBD), a parameter-wise freezing optimizer for training QNNs, and evaluates it against SGD, Adam, and gradient-free optimizers on MNIST classification, the parity problem, and a noisy VQE ground-state-energy task.
What This Paper Is About
Training quantum neural networks is expensive because gradients must be estimated with the Parameter-Shift Rule (PSR), which requires at least two full circuit evaluations per parameter per training step — 2|θ|+1 evaluations for a full gradient. This cost is compounded by barren plateaus, where the variance of the cost gradient vanishes exponentially with qubit count (proportional to O(1/exp(n))), so gradients become both costly to compute and uninformative. WSBD's goal is to cut the number of forward passes per training step by temporarily freezing the least influential parameters, using a gradient-derived importance score, while keeping the full circuit architecture and expressive capacity intact.
Key Contributions
-
A QNN-specific freezing optimizer. WSBD uses a gradient-derived importance score (the Sum of Gradients over a training window) to stochastically and temporarily freeze the least influential parameters. Unlike pruning or layer-wise freezing, it works at the parameter level, is dynamic, and does not permanently alter the circuit.
-
Demonstrated scalable efficiency. The paper reports that WSBD saves hundreds of thousands of forward passes relative to optimizers like Adam, with the relative advantage growing as QNN size increases. Reported convergence speedups include an average of 63.9% faster than Adam on the ground-state-energy problem.
-
A formal convergence proof. The authors prove that the WSBD update rule (a stochastic coordinate mask) scales the expected descent direction without amplifying variance, preserving the convergence guarantees of the underlying classical optimizer.
-
Ablation evidence that granularity matters. Experiments comparing WSBD against deterministic freezing, random freezing without importance scores, layer-wise freezing, and WSBD without score resetting show that parameter-wise freezing outperforms layer-wise approaches in QNNs.
Main Findings
-
Convergence speedup scales with QNN size. On the noisy VQE (transverse-field Ising model) task, forward-pass reductions to reach the target energy ranged from 20.6% to 58.2% for WSBD-SGD and 39.2% to 83.1% for WSBD-Adam across nine model configurations (1-, 2-, and 4-qubit, with 1–8 layers). The paper states WSBD converges on average 63.9% faster than Adam for the ground-state-energy problem.
-
MNIST accuracy was comparable, efficiency was not. Maximum accuracies for WSBD and its baselines were consistently similar (for example, the 10-qubit 5-layer model: SGD 56.6%, Adam 73.7%, WSBD-SGD 57.5%, WSBD-Adam 74.2%). The reported speedups to reach those accuracies were 80.3% and 46.2% (4q 2l), 38.5% and 30.2% (8q 3l), and 29.3% and 17.6% (10q 5l) for SGD and Adam respectively.
-
Parity results included a case where baseline SGD failed. On the 4-qubit 2-layer parity task, SGD reached 50% and Adam 100%, while both WSBD-SGD and WSBD-Adam reached 100%; the reported speedup versus SGD was reported as infinity. On the 10-qubit 5-layer parity task, WSBD-SGD reached 50% and WSBD-Adam 100%, with a 20.7% speedup over Adam.
-
Noise robustness. Under simulated IBM Heron-calibrated noise (amplitude damping T1, phase damping T2, depolarizing noise, idle errors, readout assignment errors), WSBD retained its advantage. On the 2-qubit, 2-layer VQE problem, WSBD-SGD required 58% fewer forward passes than SGD, and WSBD-Adam reduced forward passes by more than 80%. The authors argue WSBD acts as a form of noise filtering by biasing updates toward parameters with consistently large cumulative gradients.
-
Tabulated wall-clock implications. Using a real-hardware calibration of 100 random QNNs (4q-2l, 8q-3l, 10q-5l) on the IBM Heron R2 processor, each forward pass took 1.33 ± 0.24 seconds of QPU execution time and 4.74 ± 0.76 seconds of end-to-end wall time (roughly five seconds per forward pass). From this, the authors estimate WSBD-Adam saved roughly 3,252 forward passes on average on VQE (≈4.5 hours), 36.3 hours on MNIST for WSBD-Adam and 89.9 hours for WSBD-SGD, and on parity 8.8 hours for WSBD-Adam and 216 hours for WSBD-SGD.
-
Ablations isolate which design choices matter. Deterministic Block Descent (DBD) converged but often plateaued at higher losses; Stochastic Block Descent (SBD) without importance scores performed similarly to plain SGD; layer-wise WSBD was nearly 50% slower than WSBD-SGD; and WSBD without score resetting stagnated on both parity and MNIST.
-
Gradient-free baselines stalled at scale. SPSA, Nelder-Mead, and Bayesian optimization required fewer circuit evaluations per step but consistently stagnated on larger models, suggesting their low-cost updates do not supply enough directional information for difficult landscapes.
-
Hyperparameters. Grid search selected a freeze threshold λ_f of 70% and a training window τ of 100, with the importance score using Sum of Gradients, an absolute value, and ε = 10⁻⁸. The reported coefficient of variation in convergence across five repeated runs was 0–3%.
Methodology in Plain English
The researchers start from the standard quantum training loop: compute gradients via the parameter-shift rule, then hand them to a classical optimizer such as SGD or Adam. WSBD adds two layers on top of that loop.
First, it works in windows of 100 training steps. Within a window, it computes gradients only for the currently active parameters and accumulates each active parameter's gradient into a running importance score. Second, at the end of each window, it converts those scores into a probability distribution (with a small constant ε = 10⁻⁸ added so no probability is exactly zero) and samples a new active set of size ⌈(1 − λ_f)·|θ|⌉ — with λ_f at 70%, roughly 30% of parameters stay active. Parameters with lower importance scores are more likely to be frozen, but selection is stochastic rather than deterministic, so no parameter is permanently excluded. Scores of reactivated parameters are reset to zero, while frozen parameters keep their cached scores.
The authors then prove convergence for this scheme: they treat the freeze mask as a stochastic coordinate mask that is independent of the underlying optimizer's update direction, show that the expected objective decrease scales with a minimum selection probability p_min > 0 (which the ε term guarantees), and derive that under standard step-size conditions (Ση_t = ∞, Ση_t² < ∞) the expected squared gradient norm tends to zero. They also report that WSBD's own classical overhead is O(|θ|), negligible against the O(M·2|θ|) quantum circuit evaluations, where M is the number of shots (commonly around 1000).
Evaluation covers three tasks — MNIST with PCA preprocessing and angle encoding, the parity problem, and VQE on the one-dimensional transverse-field Ising model — on 4-qubit 2-layer, 8-qubit 3-layer, and 10-qubit 5-layer architectures, in both noise-free simulation and noise-calibrated simulation, using the PennyLane framework. Forward passes to target is the primary metric because wall-clock time is confounded by backend throughput and queueing.
Why This Matters
Impact on research: WSBD provides a tested alternative to permanent pruning for reducing QNN training cost, backed by a convergence proof and an ablation study that separates the contributions of stochasticity, importance scoring, parameter-wise granularity, and score resetting. It also reports direct evidence that layer-wise freezing — a common classical strategy — is the wrong granularity for entangled quantum circuits.
Real-world applications:
- Quantum chemistry and materials simulation: VQE-style ground-state-energy estimation is a leading near-term application, and the paper's noisy TFIM benchmark targets exactly this workload.
- Drug and molecule discovery pipelines that would rely on variational quantum eigensolvers for molecular energies.
- Combinatorial optimization tasks where the parity problem serves as a proxy for parity-checking and error-detection-style problems.
- Hybrid quantum-classical machine learning services that need to train classifiers (as with the MNIST experiments) within constrained quantum hardware budgets.
Industry relevance: Current quantum hardware is scarce and in high demand, and the paper notes academic users often receive only a few hours of device access per month. The reported savings — 3,252 forward passes on average for WSBD-Adam on VQE, tens of thousands of forward passes on 8- and 10-qubit models, and estimated wall-clock savings of up to 216 hours on parity — map directly onto a cost metric that cloud quantum providers and their customers bill and budget against.
Future Directions
- Hardware-aware freezing. The paper proposes tailoring the freezing strategy to the noise profile of specific quantum devices rather than treating noise as a generic channel.
- Enabling deeper and wider architectures. Making training tractable may allow researchers to explore QNN architectures currently considered too deep or too wide to train.
- Whether 63.9% average speedup holds beyond these benchmarks. The evaluation covers MNIST, parity, and TFIM VQE up to 10 qubits; larger qubit counts and other Hamiltonian families are not tested.
- Operating-point sensitivity. The freeze threshold λ_f = 70% and window τ = 100 were selected by grid search; how sensitive WSBD is to these settings outside the tested range is not established in the provided content.
Target Audience
Quantum machine learning researchers and practitioners working on variational quantum algorithms; optimizer designers interested in dynamic, fine-grained parameter freezing; quantum computing engineers concerned with circuit evaluation budgets and hardware time; and graduate students with a background in quantum circuits and classical optimization who want to understand the tradeoffs between pruning, freezing, and full-parameter training in QNNs.
Authors’ abstract
The training of Quantum Neural Networks (QNNs) is hindered by the high computational cost of gradient estimation and the barren plateau problem, where optimization landscapes become intractably flat. To address these challenges, we introduce Weighted Stochastic Block Descent (WSBD), a novel optimizer with a dynamic, parameter-wise freezing strategy. WSBD intelligently focuses computational resources by identifying and temporarily freezing less influential parameters based on a gradient-derived importance score. This approach significantly reduces the number of forward passes required per training step and helps navigate the optimization landscape more effectively. Unlike pruning or layer-wise freezing, WSBD maintains full expressive capacity while adapting throughout training. Our extensive evaluation shows that WSBD converges on average 63.9% faster than Adam for the popular ground-state-energy problem, an advantage that grows with QNN size. We provide a formal convergence proof for WSBD and show that parameter-wise freezing outperforms traditional layer-wise approaches in QNNs. Project page: https://github.com/Damrl-lab/WSBD-Stochastic-Freezing-Optimizer.