The development, deployment, and empirical analysis of a hybrid quantum-classical image classifier in the binary classification of handwritten digits and the results demonstrate that it is possible to manufacture successfully hybrid quantum-classical architectures with the help of existing open-source tools and simulators.
Abstract
The intersection of quantum processing and classical machine learning has spawned hybrid quantum-classical systems — practical system designs that attempt to use quantum potential in the limitations of modern Noisy Intermediate-Scale Quantum (NISQ) hardware. This paper introduces the development, deployment, and empirical analysis of a hybrid quantum-classical image classifier (which combines a Convolutional Neural Network (CNN) with an eight-qubit Variational Quantum Circuit (VQC)) in the binary classification of handwritten digits. This implementation, implemented in PennyLane and PyTorch, reaches a peak test accuracy of 99.85% across 1,984 test samples of the MNIST system, and only three errors are made. In addition to performance measures, the work presents an approach based on Quantum Software Engineering (QSE) by reporting major engineering issues, such as quantum-classical interface design, adjoint differentiation, feature-dimensionality reduction, and backend portability, and suggestion of seven quality-assurance practices of hybrid quantum software systems. The results demonstrate that it is possible to manufacture successfully hybrid quantum-classical architectures with the help of existing open-source tools and simulators, and provide future research and practice with hybrid QSE with effective advice.
Quantum machine learning on real noisy intermediate-scale quantum (NISQ) hardware has remained largely confined to binary or few-class tasks, limited by the cost of on-hardware training and the underuse of large devices at inference. We present a unified framework that classifies ten-class MNIST end-to-end on a $127$-qubit IBM Eagle processor, with three central contributions. First, a two-phase protocol decouples a gradient-based classical optimization of the encoder and readout from a gradient-free optimization of the quantum parameters, removing the parameter-shift gradient cost that makes on-hardware training impractical. Second, we introduce Quantum Multi-Programming to a trained quantum classifier for the first time, packing multiple circuit copies onto one device to deliver parallel inference at no mean-accuracy cost while cutting quantum-processor job submissions proportionally. Third, a controlled comparison shows that on-hardware fine-tuning yields no measurable accuracy gain, motivating a practical NISQ workflow: train on a classical simulator and reserve the hardware for inference only. Benchmarked against a matched-capacity classical network, the quantum module shows no per-parameter accuracy advantage at this scale; we therefore frame the work as a feasibility-and-workflow demonstration for multi-class quantum image classification on current hardware.
Medical image classification is a critical component of modern healthcare; however, accurate diagnosis remains challenging due to limited annotated datasets, class imbalance, and the high dimensionality of medical imaging data. To address these challenges, a hybrid quantum-classical neural network (HQCNN) is proposed, integrating classical deep learning with variational quantum learning for medical image classification. The proposed architecture combines a five-layer convolutional neural network (CNN) for hierarchical feature extraction with a lightweight 4-qubit variational quantum circuit (VQC) incorporating quantum state encoding, superposition and entanglement mechanisms, and a quantum attention-Fourier (QAF) module. This hybrid design aims to improve nonlinear feature representation and quantum parameter efficiency while maintaining a shallow quantum circuit suitable for noisy intermediate-scale quantum (NISQ)-era constraints. Experimental evaluation on six MedMNIST benchmark datasets demonstrated competitive performance across both binary and multi-class classification tasks. HQCNN achieved 98.88% accuracy on the binary subset of PathMNIST (classes 0 vs. 1), 97.61% accuracy on the multi-class OrganAMNIST dataset, and 86.29% accuracy on BreastMNIST. Comparative experiments and statistical analyses demonstrated consistent improvements over the controlled BHQNN baseline, while component-wise ablation studies showed that the QAF module, superposition and entanglement mechanisms, and expressive parameterized rotations contributed to classification performance in a complementary and dataset-dependent manner. Moreover, HQCNN reduced the number of trainable quantum parameters by approximately 55.6% compared with the baseline hybrid quantum neural network (BHQNN). Noise-aware simulations further showed that the model retained relatively stable predictive performance under moderate depolarizing noise, supporting further evaluation under near-term quantum computing conditions. Overall, the results demonstrate that HQCNN provides a parameter-efficient hybrid quantum-classical framework for medical image classification and offers a promising foundation for further investigation of quantum-enhanced medical image analysis.
Shahjalal Khan, Jahid Karim Fahim, P. Paul et al.· International Journal of Adv...· 0 citations
Quantum machine learning (QML) faces practical limitations due to noisy intermediate-scale quantum (NISQ) constraints, including noise, restricted qubit availability, and unstable optimization. This paper proposes HyQNet, a resource-aware hybrid quantum–classical framework designed to address these challenges through efficient circuit execution and adaptive optimization. The framework integrates optimized quantum circuits with classical learning strategies to improve scalability and stability under NISQ conditions. Experimental results on Iris, Wine, and Breast Cancer datasets show that HyQNet achieves an accuracy of 95.1% and F1-score of 94.8%, outperforming variational QNN (92.6%) and quantum SVM (91.2%). It also reduces runtime to 16.9 s compared to 20.5 s for VQNN, while maintaining efficient utilization of 8 qubits. Statistical analysis confirms significance (p < 0.05), and ablation studies validate the contribution of each component. The results demonstrate improved convergence stability and resource efficiency in hybrid quantum learning systems.
Sudheer Reddy K., Hastimal Jangid, Usha Desai· 2026 International Conferenc...· 0 citations
Quantum machine learning is often proposed for richer feature representations, yet most evidence rests on idealized simulation rather than real noisy intermediate-scale quantum (NISQ) hardware. This research presents a controlled comparison of classical and quantum-enhanced diagnostic pipelines on three clinical binary classification tasks: Mammographic Mass, Anemia, and Diabetic Retinopathy. All pipelines share standardized preprocessing, principal component analysis (PCA), and a fixed extreme gradient boosting (XGBoost) classifier, so differences arise only from the feature representation. Four quantum encodings (angle, phase, basis, and the ZZ feature map) are each run on two backends: a noiseless simulator and the real IBM Heron r2 processor (156 qubits). Across nine performance metrics, compared with the classical pipeline, the performance decreases in the quantum hardware execution for all datasets, with a more significant reduction observed for the Anemia dataset. In contrast, compared with the simulated pipeline, the hardware execution shows a slight performance decrease for the Mammographic and Diabetic Retinopathy datasets. The exceptions are the angle and phase encodings for the Mammographic dataset, where the hardware result improves slightly compared with the simulator. For the Anemia dataset, the transition from simulation to real quantum hardware results in a considerable performance reduction. These findings show that current quantum feature maps through the encode–measure–boost pipeline on NISQ hardware do not yet outperform a well-designed classical pipeline.
Gerard Edwards, Richard Stocker, Mohammed Alharbi et al.· Electronics· 0 citations
Quantum Machine Learning (QML) combines quantum computing principles and traditional machine learning principles to provide new ways to solve difficult classification problems through the use of quantum technology. The goal of this paper is to implement a Quantum Kernel Support Vector Machine (QKSVM) using PennyLane and evaluate it against a standard image classification dataset, Fashion-MNIST. The Fashion-MNIST images are represented as 28x28 grayscale pixel arrays; they are normalized using a min-max normalizer with output values between zero and one. The 28x28 arrays are then dimensionally reduced to a size of four principal components (approximately 85% cumulative explained variance), and the QKSVM will utilize a quantum circuit limited to four qubits which is consistent with today's Noisy, Intermediate-Scale Quantum (NISQ) capabilities for performing simulations. Each input feature is represented as a qubit via an RY rotation and the qubits are then entangled using a CNOT circuit to generate the quantum kernel matrix, which is computed as the pairwise fidelity of each input image's state, which is subsequently used by a classical SVM classifier implementing a one-versus-all classification method. The QKSVM achieved approximately 40% accuracy and a macro-F1 score of 0.37 on a 100 sample stratified subset of the Fashion-MNIST test dataset, compared with 60% and 91.2%, respectively, using a classical Radial Basis Function Support Vector Machine (RBF-SVM) classifier with the same four principal components of input features and a Convolutional Neural Network (CNN) with full input images. With a primary bottleneck of qubit count, circuit depth, and shot noise, this work serves as a fully documented and reproducible baseline for future research on quantifying the performance of hybrid classical and quantum image classifiers across standardized image dataset benchmarks.
M. Devi, S.Sravanthi, V. Chaithanya et al.· 2026 7th International Confe...· 0 citations
A controlled optimizer-aware evaluation framework that integrates a fixed ZZFeatureMap–TwoLocal VQC architecture with callback-based convergence diagnostics to systematically analyse optimizer behaviour under identical experimental conditions is presented.
R. D, R. R., Sridevi S et al.· International Research Journ...· 0 citations
We use cookies to run the site and, with your consent, for analytics and to show ads.
See our Cookie Policy.