REVIEW 4 major objections 4 minor 4 cited by
Cutting is All You Need: Execution of Large-Scale Quantum Neural Networks on Limited-Qubit Devices
T0 review · 4 major / 4 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read Quantum circuit cutting lets large hybrid networks train on few-qubit hardware without losing accuracy.
desk verdict A useful engineering recipe for training cut HQNNs, but the lossy re-encoding 'cut' doesn't support the accuracy-preservation claim. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is replacing a wire cut with a computational-basis measurement and an angle-embedding re-encoding. This turns one big quantum node into several smaller quantum nodes, each packaged as a trainable layer so gradients flow through the classical backend between subcircuits. The greedy cutting-point algorithm sorts gates by data dependency and places cuts before gates whose dependencies lie on wires that cannot be mapped to the m-qubit device. The measurement-plus-re-encoding is the lossy step that dominates the accuracy results.
What would settle it
Train the same HQNN architecture as both an n-qubit original and an n-to-m cut for m = 2 and n >= 6, running enough epochs for learning curves to plateau; if the validation accuracy gap between cut and original never closes, the claim that cutting preserves accuracy fails in that regime. More directly, compare the quantum state on the cut wire before the cut with the state re-encoded after measurement; a fidelity well below 1 would show the information loss behind the accuracy drop.
Extended reading notes
Core claim
The central claim is that a hybrid quantum-classical neural network whose quantum circuit uses n qubits can be cut into a set of subcircuits, each using m < n qubits, and trained end-to-end without an accuracy penalty. The authors show that the cut wires can be replaced by measurement operations followed by angle re-encoding of the measured values into the next subcircuit, and that by wrapping each subcircuit in its own trainable layer, standard backpropagation still updates every quantum parameter. Their experiments across 4- to 50-qubit circuits on the Digits and MNIST datasets show the cut model's training and validation accuracy closely tracks the uncut model whenever the target device has at least three qubits. The two-qubit cuts are the documented failure mode: subcircuits with only two qubits have low correlation and entanglement capacity, so accuracy and convergence degrade.
Load-bearing premise
The method assumes that replacing a cut wire with a measurement followed by angle re-encoding loses no information the network needs for training, an assumption the paper's own two-qubit results show can break down.
Editorial extensions
If this is right
- HQNNs with 8, 10, 20, and 50-qubit circuits can be trained on devices with as few as 3-4 qubits, with accuracy comparable to the uncut circuit.
- Training remains differentiable across all subcircuits, so quantum parameters in every subcircuit receive gradient updates.
- The method introduces a FLOP overhead that grows as target qubit count drops, but the qubit savings outweigh this cost for NISQ execution.
- Cut circuits with 3+ qubits sometimes converge faster and generalize slightly better than the original circuit, as observed for 8-3 and 10-3 cuts.
- Two-qubit cuts are the known limitation: they need many more epochs and still lag in accuracy.
Reading between the lines
- The measurement-plus-angle-re-encoding approximation is effectively a classical bottleneck; replacing it with quasi-probability reconstruction or other circuit-knitting estimators could close the two-qubit gap while keeping the method differentiable.
- The faster convergence of cut circuits may be an implicit regularization effect: cutting reduces entanglement capacity, which can act as a regularizer on small datasets.
- The greedy partitioning becomes combinatorially more expensive as the number of cuts grows, so scaling to much larger circuits will likely need a smarter search over cutting points.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes a framework for quantum circuit cutting of hybrid quantum-classical neural networks (HQNNs) so that an n-qubit quantum layer can be trained and executed on an m-qubit device with m < n. The framework consists of a greedy cutting-point design algorithm (Algorithm 1, Section III-A) and an implementation in which each subcircuit becomes an independent QNode and is converted to a trainable Keras layer (Section III-B). The authors evaluate the approach on Digits and MNIST for original circuits of 4 to 10 qubits cut to 2 to 4 qubits, and additionally report 20- and 50-qubit cases. The central claim, repeated in the abstract, Section IV-H, and the conclusion, is that the cut circuits preserve the accuracy of the original circuits while supporting training of quantum parameters in all subcircuits. The empirical component reports five-run average training and validation accuracy curves for the cut and uncut circuits, FLOPs measurements, and a small ablation on embedding strategies.
Significance. If the central claim were established, the paper would address a real NISQ-era bottleneck: executing and training quantum layers that exceed the qubit count of available hardware. The concrete engineering contribution is a multi-QNode implementation that preserves end-to-end differentiability through cut subcircuits, which is genuinely different from prior circuit-cutting work focused on expectation-value reconstruction. The authors also ship code and report repeated runs, which supports reproducibility. However, the significance as stated is conditional: because the cut operation is a lossy measurement-and-re-encoding channel rather than a standard circuit cut, the paper does not establish that the original circuit's accuracy is preserved, and the experimental evidence lacks the statistical detail needed to support the 'comparable accuracy' claim beyond selected configurations.
major comments (4)
- [Section III-B and Figure 7; Abstract; Section V] The cut operation is not a circuit cut in the standard sense and does not preserve the original circuit. Replacing a cut with a computational-basis measurement followed by angle embedding implements the channel Γ(ρ)=Σ_b ⟨b|ρ|b⟩ |ψ_b⟩⟨ψ_b⟩, which destroys all coherence across the cut and transmits only one classical bit per cut wire. Standard wire cutting, as in the cited works of Peng et al. [26] and Lowe et al. [28], reconstructs expectation values by sampling over a quasi-probability decomposition; no such reconstruction is implemented or analyzed here. Consequently the cut circuit is a different, information-limited quantum-classical model, and the abstract's claim that the method 'preserves the accuracy of the original circuits' is not supported. The authors should either implement and analyze a proper reconstruction with error bounds, or explicitly reframe the contribution as empirical training of an approximate autoencoded variant and restrict the claims accordingly.
- [Section IV-A and Figures 8, 9, 11] The experimental evidence for 'comparable accuracy' is not statistically supported. The paper reports only the average over five runs, with no error bars, no per-run spread, and no final numeric accuracy values for any n-m configuration. In several subplots of Figure 8 the cut and original curves overlap or cross, so it is unclear whether the claimed agreement for 3- and 4-qubit targets exceeds run-to-run noise. Conversely, the large 2-qubit gaps in Figure 8 (labels 1-3) are the expected signature of the lossy cut channel, and the longer-training results in Figure 11 also lack variance information. The authors should report mean ± standard deviation over seeds, and ideally effect sizes or confidence intervals, for every configuration discussed in Sections IV-B and IV-C.
- [Section III-A, Algorithm 1] The cutting-point design algorithm is underspecified, which makes the methodology difficult to reproduce and its correctness impossible to assess. The priority order in 'Sort Gates in Priority Order' is not defined, the wire selection criterion in 'Select m wires based on priority' is informal, and the dependency-unavailable case is described only by example. No invariant, termination argument, or proof that the resulting subcircuits are valid trainable HQNN components is provided. Since every downstream claim depends on this partition, the algorithm needs a precise specification of its inputs, priority metric, wire-selection rule, and a correctness statement.
- [Section IV-E and Figure 10] The scalability evidence is incomplete. For the 50-qubit experiment only the cut circuit is reported, with no original 50-qubit baseline to compare against, so the claim that the cut circuit 'remains effective' for larger circuits is not supported. In addition, the section title refers to '20-5 Cut & 50-5 Cut' while the text and Figure 10 describe 20-4 and 50-4 cuts and state that all cut circuits use 4 qubits; this inconsistency must be corrected before the results can be evaluated.
minor comments (4)
- [Section IV-B, Figure 8] The in-text references to labels 8 and 9 are unclear because those labels are not associated with particular subplots in the caption; please tie each label to a named configuration.
- [Table II] The FLOPs measurement is not described: the authors should state how forward and backward FLOPs are profiled and whether the reported values are deterministic or averaged.
- [Section IV-E] The sentence 'All cut circuits are implemented using 4 qubits' conflicts with the section title's '50-5 Cut'; please harmonize the nomenclature throughout.
- [Figures 8 and 9] The accuracy axes have no tick labels or scale, which makes it difficult for the reader to judge the magnitude of the observed gaps; adding labeled axes and perhaps final-accuracy annotations would materially improve interpretability.
Circularity Check
No circularity found: the paper is an empirical evaluation with no derivation whose conclusion reduces to its inputs.
full rationale
The manuscript is purely empirical: it measures training and validation accuracy for original and cut circuits and reports the measured curves, without offering a formal derivation that could be circular. The central claim that cut circuits preserve accuracy is supported by experiments on Digits and MNIST, not by an equation that is equivalent to its inputs by construction. Nothing is fitted to a subset of data and then renamed a prediction; the accuracy curves are genuine measurements of the trained models. The cut operation is described as measurement plus angle re-encoding, and one may question whether this constitutes exact circuit cutting or whether the claim of accuracy preservation is overreaching, but those are correctness and adequacy concerns, not circularity. The many self-citations concern related topics such as noise robustness, barren plateaus, and design space exploration, and they are not used as a load-bearing uniqueness theorem or as the source of the cutting methodology. No step in the paper reduces to a self-citation chain, and no ansatz is smuggled in via citation. Therefore no circular step can be exhibited under the required quote-and-reduction standard, and the appropriate finding is no significant circularity.
Assumptions & free parameters
assumptions (3)
- domain assumption A quantum wire can be cut by measuring in the computational basis and re-encoding the outcome with angle embedding without destroying the information needed for HQNN training.
- ad hoc to paper The greedy priority-based gate ordering in Algorithm 1 produces a valid circuit partition that fits the target device qubit count.
- domain assumption PennyLane's KerasLayer can backpropagate through a QNode, and connecting multiple KerasLayer quantum nodes preserves gradient flow across the full network.
Cite this review
Pith. "Pith review of Cutting is All You Need: Execution of Large-Scale Quantum Neural Networks on Limited-Qubit Devices." pith.science (2026). https://pith.science/paper/65WW2S4Y
@misc{pith2026241204844,
author = {Pith},
title = {Pith review of: Cutting is All You Need: Execution of Large-Scale Quantum Neural Networks on Limited-Qubit Devices},
year = {2026},
howpublished = {\url{https://pith.science/paper/65WW2S4Y}},
note = {Machine review of arXiv:2412.04844}
}
read the original abstract
The rapid advancement in Quantum Computing, particularly through Noisy-Intermediate Scale Quantum (NISQ) devices, has spurred significant interest in Quantum Machine Learning (QML) applications. Despite their potential, fully-quantum algorithms remain impractical due to the limitations of current NISQ devices. Hybrid quantum-classical neural networks (HQNNs) have emerged as a viable alternative, leveraging both quantum and classical computations to enhance machine learning capabilities. However, the constrained resources of NISQ devices, particularly the limited number of qubits, pose significant challenges for executing large-scale quantum circuits. This work addresses these current challenges by proposing a novel and practical methodology for quantum circuit cutting of HQNNs, allowing large quantum circuits to be executed on limited-qubit NISQ devices. Our approach not only preserves the accuracy of the original circuits but also supports the training of quantum parameters across all subcircuits, which is crucial for the learning process in HQNNs. We propose a cutting methodology for HQNNs that employs a greedy algorithm for identifying efficient cutting points, and the implementation of trainable subcircuits, all designed to maximize the utility of NISQ devices in HQNNs. The findings suggest that quantum circuit cutting is a promising technique for advancing QML on current quantum hardware, since the cut circuit achieves comparable accuracy and much lower qubit requirements than the original circuit. The code is available at https://github.com/eBrain4Everyone/QNN-Cutting.
Figures
Figures from the paper (7 more)
Forward citations
Cited by 4 Pith papers
-
How Much Reconstruction Does Quantum Machine Learning Need? Late Fusion of Independently Trained Quantum Subcircuits
Late fusion of independently trained quantum subcircuits matches exact circuit-cutting reconstruction accuracy on tested tasks while avoiding exponential sampling overhead, with a diagnostic indicating when reconstruc...
-
Noisy HQNNs: A Comprehensive Analysis of Noise Robustness in Hybrid Quantum Neural Networks
Simulator experiments show QuanNN is broadly more noise-robust than QCNN, while QCNN sometimes beats its own noiseless version under bit-flip, phase-flip, and phase-damping noise.
-
FL-QDSNNs: Federated Learning with Quantum Dynamic Spiking Neural Networks
FL-QDSNNs reports 94% accuracy on Iris using a dynamic-threshold Pauli-X spiking mechanism in federated quantum learning, but the evaluation lacks proper baselines and reproducibility details.
-
Next-Generation Quantum Neural Networks: Enhancing Efficiency, Security, and Privacy
A position paper that re-assembles the authors' prior work on QNN trainability, noise resilience, security, and privacy without adding new validation.
Reference graph
Works this paper leans on
-
[26]
Simulating large quantum circuits on a small quantum computer,
T. Peng, A. W. Harrow, M. Ozols, and X. Wu, “Simulating large quantum circuits on a small quantum computer,” PRL, 2020
work page 2020
-
[28]
Fast quantum circuit cutting with randomized measurements,
A. Lowe et al. , “Fast quantum circuit cutting with randomized measurements,” Quantum, 2023
work page 2023
-
[1]
Quantum supremacy using a programmable superconducting processor,
F. Arute et al. , “Quantum supremacy using a programmable superconducting processor,” Nature, 2019
work page 2019
-
[2]
A divide-and-conquer algorithm for quantum state preparation,
I. F. Araujo et al. , “A divide-and-conquer algorithm for quantum state preparation,” Sci. Rep., 2020
work page 2020
-
[3]
Quantum advantage in learning from experiments,
H.-Y . Huang et al., “Quantum advantage in learning from experiments,” Science, 2022
work page 2022
-
[4]
Demonstration of algorithmic quantum speedup,
B. Pokharel and D. A. Lidar, “Demonstration of algorithmic quantum speedup,” PRL, 2023
work page 2023
-
[5]
Evidence for the utility of quantum computing before fault tolerance,
Y . Kim et al. , “Evidence for the utility of quantum computing before fault tolerance,” Nature, 2023
work page 2023
-
[6]
A. Tudisco et al. , “Evaluating the computational advantages of the variational quantum circuit model in financial fraud detection,” IEEE Access, 2024
work page 2024
Show all 69 references
-
[7]
Demonstrating quantum advantage in hybrid quantum neural networks for model capacity,
M. Kashif and S. Al-Kuwari, “Demonstrating quantum advantage in hybrid quantum neural networks for model capacity,” in ICRC, 2022
2022
-
[8]
Next-generation quantum neural networks: Enhancing efficiency, security, and privacy,
N. Innan et al., “Next-generation quantum neural networks: Enhancing efficiency, security, and privacy,” in IOLTS, 2025
2025
-
[9]
Quantum computing in the NISQ era and beyond,
J. Preskill, “Quantum computing in the NISQ era and beyond,” Quantum, 2018
2018
-
[10]
Design space exploration of hybrid quantum–classical neural networks,
M. Kashif and S. Al-Kuwari, “Design space exploration of hybrid quantum–classical neural networks,” Electronics, 2021
2021
-
[11]
A survey on quantum machine learning: Current trends, challenges, opportunities, and the road ahead,
K. Zaman et al. , “A survey on quantum machine learning: Current trends, challenges, opportunities, and the road ahead,” CoRR, vol. abs/2310.10315, 2024
2024 arXiv
-
[12]
Quantum convolutional neural networks for high energy physics data analysis,
S. Y .-C. Chen et al., “Quantum convolutional neural networks for high energy physics data analysis,” Phys. Rev. Res., 2022
2022
-
[13]
Hybrid quantum-classical machine learning for sentiment analysis,
A. K. M. Masum et al., “Hybrid quantum-classical machine learning for sentiment analysis,” in ICMLA, 2023
2023
-
[14]
A quantum-classical collaborative training architecture based on quantum state fidelity,
R. L’Abbate et al. , “A quantum-classical collaborative training architecture based on quantum state fidelity,” IEEE TQE, 2024
2024
-
[15]
On the design of quantum graph convolutional neural network in the nisq-era and beyond,
Z. Hu et al. , “On the design of quantum graph convolutional neural network in the nisq-era and beyond,” in ICCD, 2022
2022
-
[16]
Investigating the effect of noise on the training performance of hybrid quantum neural networks,
M. Kashif et al. , “Investigating the effect of noise on the training performance of hybrid quantum neural networks,” CoRR, vol. abs/2402.08523, 2024
2024 arXiv
-
[17]
Hqnet: Harnessing quantum noise for effective training of quantum neural networks in nisq era,
M. Kashif and M. Shafique, “Hqnet: Harnessing quantum noise for effective training of quantum neural networks in nisq era,” arXiv:2402.08475, 2025
2025 arXiv
-
[18]
Nrqnn: The role of observable selection in noise-resilient quantum neural networks,
M. Kashif and M. Shafique, “Nrqnn: The role of observable selection in noise-resilient quantum neural networks,” in World Congress in Computer Science, Computer Engineering & Applied Computing , 2024
2024
-
[19]
Noisy hqnns: A comprehensive analysis of noise robustness in hybrid quantum neural networks,
T. Ahmed, A. Marchisio, M. Kashif, and M. Shafique, “Noisy hqnns: A comprehensive analysis of noise robustness in hybrid quantum neural networks,” in IJCNN, 2025
2025
-
[20]
Quantum neural networks: A comparative analysis and noise robustness evaluation,
T. Ahmed et al., “Quantum neural networks: A comparative analysis and noise robustness evaluation,” arXiv preprint arXiv:2501.14412 , 2025
2025 arXiv
-
[21]
Barren plateaus in quantum neural network training landscapes,
J. R. McClean et al. , “Barren plateaus in quantum neural network training landscapes,” CoRR, vol. abs/1803.11173, 2018
2018 arXiv
-
[22]
The impact of cost function globality and locality in hybrid quantum neural networks on nisq devices,
M. Kashif and S. Al-Kuwari, “The impact of cost function globality and locality in hybrid quantum neural networks on nisq devices,” Machine Learning: Science and Technology , 2023
2023
-
[23]
Resqnets: a residual approach for mitigating barren plateaus in quantum neural networks,
M. Kashif and S. Al-Kuwari, “Resqnets: a residual approach for mitigating barren plateaus in quantum neural networks,” EPJ Quantum Technology, 2024
2024
-
[24]
Alleviating barren plateaus in parameterized quantum machine learning circuits: Investigating advanced parameter initialization strategies,
M. Kashif et al., “Alleviating barren plateaus in parameterized quantum machine learning circuits: Investigating advanced parameter initialization strategies,” in DATE, 2024
2024
-
[25]
Deep quanvolutional neural networks with enhanced trainability and gradient propagation,
M. Kashif and M. Shafique, “Deep quanvolutional neural networks with enhanced trainability and gradient propagation,” Scientific Reports, vol. 15, no. 1, p. 21764, 2025
2025
-
[27]
Cutqc: using small quantum computers for large quantum circuit evaluations,
W. Tang et al. , “Cutqc: using small quantum computers for large quantum circuit evaluations,” in ASPLOS, 2021
2021
-
[29]
Circuit knitting with classical communication,
C. Piveteau and D. Sutter, “Circuit knitting with classical communication,” IEEE TIT, 2024
2024
-
[30]
Overhead-constrained circuit knitting for variational quantum dynamics,
G. Gentinetta, F. Metz, and G. Carleo, “Overhead-constrained circuit knitting for variational quantum dynamics,” Quantum, 2024
2024
-
[31]
Investigating the effect of circuit cutting in qaoa for the maxcut problem on nisq devices,
M. Bechtold et al. , “Investigating the effect of circuit cutting in qaoa for the maxcut problem on nisq devices,” QST, 2023
2023
-
[32]
Optimal partitioning of quantum circuits using gate cuts and wire cuts,
S. Brandhofer, I. Polian, and K. Krsulich, “Optimal partitioning of quantum circuits using gate cuts and wire cuts,” IEEE TQE, 2024
2024
-
[33]
Cutting circuits with multiple two-qubit unitaries,
L. Schmitt, C. Piveteau, and D. Sutter, “Cutting circuits with multiple two-qubit unitaries,” CoRR, vol. abs/2312.11638, 2024
2024 arXiv
-
[34]
Optimal quantum circuit cuts with application to clustered hamiltonian simulation,
A. W. Harrow and A. Lowe, “Optimal quantum circuit cuts with application to clustered hamiltonian simulation,” CoRR, vol. abs/2403.01018, 2024
2024 arXiv
-
[35]
Cutting a wire with non-maximally entangled states,
M. Bechtold, J. Barzen, F. Leymann, and A. Mandl, “Cutting a wire with non-maximally entangled states,” in IPDPSW, 2024
2024
-
[36]
Quantum circuit cutting for classical shadows,
D. T. S. Chen, Z. H. Saleem, and M. A. Perlin, “Quantum circuit cutting for classical shadows,” ACM TQC, 2024
2024
-
[37]
Scalable circuit cutting and scheduling in a resource-constrained and distributed quantum system,
S. Kan et al. , “Scalable circuit cutting and scheduling in a resource-constrained and distributed quantum system,” CoRR, vol. abs/2405.04514, 2024
2024 arXiv
-
[38]
Quantifying performance of wire-based quantum circuit cutting with entanglements,
S. Sarker et al., “Quantifying performance of wire-based quantum circuit cutting with entanglements,” in IPDPSW, 2024
2024
-
[39]
An alternative approach to optimal wire cutting without ancilla qubits,
E. Pednault, “An alternative approach to optimal wire cutting without ancilla qubits,” CoRR, vol. abs/2303.08287, 2023
2023 arXiv
-
[40]
Doubly optimal parallel wire cutting without ancilla qubits,
H. Harada, K. Wada, and N. Yamamoto, “Doubly optimal parallel wire cutting without ancilla qubits,” CoRR, vol. abs/2303.07340, 2023
2023 arXiv
-
[41]
Pennylane: Automatic differentiation of hybrid quantum-classical computations,
V . Bergholm et al. , “Pennylane: Automatic differentiation of hybrid quantum-classical computations,” CoRR, vol. abs/1811.04968, 2018
2018 arXiv
-
[42]
Pen-Based Recognition of Handwritten Digits,
E. Alpaydin and F. Alimoglu, “Pen-Based Recognition of Handwritten Digits,” UCI MLR, 1998
1998
-
[43]
Schuld and F
M. Schuld and F. Petruccione, Supervised Learning with Quantum Computers. Springer, 2018
2018
-
[44]
Quantum data encoding: A comparative analysis of classical-to-quantum mapping techniques and their impact on machine learning accuracy,
M. Rath and H. Date, “Quantum data encoding: A comparative analysis of classical-to-quantum mapping techniques and their impact on machine learning accuracy,” CoRR, vol. abs/2311.10375, 2023
2023 arXiv
-
[45]
Hybrid quantum-classical neural networks,
D. Arthur and P. Date, “Hybrid quantum-classical neural networks,” in QCE, 2022
2022
-
[46]
Transfer learning based hybrid quantum neural network model for surface anomaly detection,
S. Bhowmik and H. Thapliyal, “Transfer learning based hybrid quantum neural network model for surface anomaly detection,” CoRR, vol. abs/2409.00228, 2024
2024 arXiv
-
[47]
Justq: Automated deployment of fair and accurate quantum neural networks,
R. Wang, F. Baba-Yara, and F. Chen, “Justq: Automated deployment of fair and accurate quantum neural networks,” in ASP-DAC, 2024
2024
-
[48]
H-qnn: A hybrid quantum–classical neural network for improved binary image classification,
M. A. Hafeez, A. Munir, and H. Ullah, “H-qnn: A hybrid quantum–classical neural network for improved binary image classification,” AI, 2024
2024
-
[49]
A comparative analysis of hybrid-quantum classical neural networks,
K. Zaman et al. , “A comparative analysis of hybrid-quantum classical neural networks,” in World Congress in Computer Science, Computer Engineering & Applied Computing , 2024
2024
-
[50]
Computational advantage in hybrid quantum neural networks: Myth or reality?,
M. Kashif, A. Marchisio, and M. Shafique, “Computational advantage in hybrid quantum neural networks: Myth or reality?,” in DAC, 2025
2025
-
[51]
Quantum machine learning for image classification,
A. Senokosov et al. , “Quantum machine learning for image classification,” Mach. Learn. Sci. Techn. , 2024
2024
-
[52]
Studying the impact of quantum-specific hyperparameters on hybrid quantum-classical neural networks,
K. Zaman et al. , “Studying the impact of quantum-specific hyperparameters on hybrid quantum-classical neural networks,” in World Congress in Computer Science, Computer Engineering & Applied Computing, 2024
2024
-
[53]
Quantum circuit learning on nisq hardware,
N. Schillo and A. Sturm, “Quantum circuit learning on nisq hardware,” CoRR, vol. abs/2405.02069, 2024
2024 arXiv
-
[54]
Designing robust quantum neural networks via optimized circuit metrics,
W. El Maouaki et al. , “Designing robust quantum neural networks via optimized circuit metrics,” Advanced Quantum Technologies, 2025
2025
-
[55]
Training deep quantum neural networks,
K. Beer et al., “Training deep quantum neural networks,” Nat. Commun., 2020
2020
-
[56]
Enhancing virtual distillation with circuit cutting for quantum error mitigation,
P. Li et al. , “Enhancing virtual distillation with circuit cutting for quantum error mitigation,” in ICCD, 2023
2023
-
[57]
Error mitigated quantum circuit cutting,
R. Majumdar and C. J. Wood, “Error mitigated quantum circuit cutting,” CoRR, vol. abs/2211.13431, 2022
2022 arXiv
-
[58]
Fragqc: An efficient quantum error reduction technique using quantum circuit fragmentation,
S. Basu et al., “Fragqc: An efficient quantum error reduction technique using quantum circuit fragmentation,” JSS, 2024
2024
-
[59]
Leveraging quantum circuit cutting for obfuscation and intellectual property protection,
G. Typaldos, W. Tang, and J. Szefer, “Leveraging quantum circuit cutting for obfuscation and intellectual property protection,” in QCE, 2024
2024
-
[60]
High dimensional quantum machine learning with small quantum computers,
S. C. Marshall, C. Gyurik, and V . Dunjko, “High dimensional quantum machine learning with small quantum computers,” Quantum, 2023
2023
-
[61]
Utilizing small quantum computers for machine learning and ground state energy approximation,
S. Bilek, “Utilizing small quantum computers for machine learning and ground state energy approximation,” CoRR, vol. abs/2403.14406, 2024
2024 arXiv
-
[62]
An invitation to distributed quantum neural networks,
L. Pira and C. Ferrie, “An invitation to distributed quantum neural networks,” CoRR, vol. abs/2211.07056, 2022
2022 arXiv
-
[63]
Distributed quantum neural networks via partitioned features encoding,
Y . Kawase, “Distributed quantum neural networks via partitioned features encoding,” QMI, 2024
2024
-
[64]
Fedqnn: Federated learning using quantum neural networks,
N. Innan et al. , “Fedqnn: Federated learning using quantum neural networks,” in IJCNN, 2024
2024
-
[65]
The mnist database of handwritten digit images for machine learning research [best of the web],
L. Deng, “The mnist database of handwritten digit images for machine learning research [best of the web],” IEEE SPM, 2012
2012
-
[66]
On the expressibility and overfitting of quantum circuit learning,
C.-C. Chen et al. , “On the expressibility and overfitting of quantum circuit learning,” ACM TQC, 2021
2021
-
[67]
Overfitting in quantum machine learning and entangling dropout,
M. Kobayashi, K. Nakaji, and N. Yamamoto, “Overfitting in quantum machine learning and entangling dropout,” QMI, 2022
2022
-
[68]
A General Approach to Dropout in Quantum Neural Networks,
F. Scala, A. Ceschini, M. Panella, and D. Gerace, “A General Approach to Dropout in Quantum Neural Networks,” AQT, 2023
2023
-
[69]
A post-training approach for mitigating overfitting in quantum convolutional neural networks,
A. R. Shinde, C. Jain, and A. Kalev, “A post-training approach for mitigating overfitting in quantum convolutional neural networks,” CoRR, vol. abs/2309.01829, 2024
2024 arXiv
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.