REVIEW 3 major objections 5 minor 43 references
QuXAI: Explainers for Hybrid Quantum Machine Learning Models
T0 review · 3 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Q-MEDLEY, an explainer for hybrid quantum-classical models, obtains global feature importance by perturbing classical inputs and re-evaluating the quantum feature map on each perturbation.
desk verdict A sensible DCI+PI adaptation to HQML is undone by an evaluation that never exercises the quantum feature map; the idea deserves a careful rewrite, not a desk reject. 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 central object is the Q-MEDLEY explainer, defined for HQML models $M_{\mathrm{HQCL}}(x)=M_{\mathrm{CL}}(f_Q(\Phi_Q(x)))$. For feature $j$, it computes $I_j = \frac{1}{2}(I^{\mathrm{DCI}}_j + I^{\mathrm{PI}}_j)$, where $I^{\mathrm{DCI}}_j$ is the drop in accuracy when the column is neutralized ($x_j \leftarrow 0$) and $I^{\mathrm{PI}}_j$ is the average accuracy drop over $K$ random permutations of that column. The load-bearing adaptation is that evaluation of the perturbed dataset always recomputes the quantum feature map $\Phi_Q(x')$ (amplitudes or kernel matrix) before the classical learner predicts, so perturbations propagate through the quantum stage exactly as real inputs would. The full version also adds adaptive weighting and an interaction-aware permutation importance, which the ablations credit for improved top-3 feature recovery.
What would settle it
Train a kernel-based HQML model on a synthetic dataset whose label is a known function of a single feature, run Q-MEDLEY on it, and check whether that feature receives the top importance score; the paper's own evaluation is almost entirely amplitude-encoded, so a failure on the kernel path would show the claimed generality does not hold.
Extended reading notes
Core claim
The paper's central claim is that a composite perturbation explainer that explicitly re-evaluates the quantum feature map when inputs are altered can produce reliable global feature-importance rankings for HQML models of the form $M_{\mathrm{HQCL}}(x)=M_{\mathrm{CL}}(f_Q(\Phi_Q(x)))$. For each feature $j$, Q-MEDLEY computes a drop-column importance by neutralizing that feature and a permutation importance by shuffling it $K$ times, then averages the two. The critical design choice is that every perturbed input is passed through the quantum encoding $\Phi_Q$ (or through a recomputed kernel matrix) before the classical learner is asked to score it, so the importance score reflects the feature's influence through the whole hybrid pipeline. The paper reports that on amplitude-encoded models, Q-MEDLEY separates informative from noisy features, and in controlled classical benchmarks it reaches Recall@3 and Spearman correlations comparable to or better than single-method baselines and a tree-ensemble Shapley explainer. Ablations show that adding adaptive weighting of the two components and an interaction-aware permutation step improves top-3 recovery, with the full configuration reaching perfect Recall@3 on some dataset-model pairs.
Load-bearing premise
The evaluation treats feature importances derived from classical Decision Tree and Random Forest models trained on the same data as ground truth for what an HQML model should consider important; the authors note this proxy may not capture how feature influence is reshaped by the quantum encoding.
Editorial extensions
If this is right
- Q-MEDLEY gives global feature importance for amplitude-encoded HQML models without treating the quantum stage as a black box.
- It can separate original informative features from synthetic noise and redundancies across multiple datasets and ten classical learners.
- In classical validation, Q-MEDLEY's Recall@3 and Spearman correlations are comparable to or better than DCI, PI, LogRegL1, and a tree-ensemble Shapley explainer.
- Ablations show the full Q-MEDLEY (adaptive weighting plus interaction-aware PI) achieves the best top-3 feature recovery on several dataset-model pairs, including perfect scores.
- The framework provides a route for HQML debugging: detecting when noisy or irrelevant features exert disproportionate influence on predictions.
Reading between the lines
- If the classical-proxy validation is not faithful, the reported benchmarks mostly establish Q-MEDLEY as a strong classical explainer; its quantum-specific value remains to be shown on kernel-based HQML and on real quantum hardware with noise.
- The same perturbation-through-encoding mechanism could be adapted to local, instance-level explanations by restricting perturbations to a single input.
- Because each permutation requires re-evaluating the feature map, runtime grows linearly with the number of features and repeats; approximating the map's sensitivity analytically could make the explainer scalable to higher-dimensional inputs.
- Q-MEDLEY scores could serve as a diagnostic for comparing quantum feature maps: maps that preserve the importance structure of the original features would score differently from maps that scramble it.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces QuXAI, a framework for training and explaining hybrid quantum-classical machine learning (HQML) models of two types: amplitude-encoded models, where classical inputs are mapped by a quantum feature map Phi_Q into state-vector amplitudes, and quantum-kernel models, where a fidelity kernel is fed to a classical learner. The central contribution is Q-MEDLEY, an explainer that computes global feature importance by averaging Drop-Column Importance and Permutation Importance, re-evaluating the quantum feature map for each perturbed input. The paper reports qualitative feature-importance bar charts for amplitude-encoded HQML models on noisy Iris and Wine datasets, quantitative comparisons against DCI, PI, TreeSHAP, and LogRegL1 on classical Decision Tree and Random Forest models, and an ablation study of Q-MEDLEY's components. The authors claim that Q-MEDLEY delineates influential classical features in HQML models, separates them from noise, and competes well with established XAI techniques.
Significance. If validated, Q-MEDLEY would address a real and currently underserved need: model-agnostic global feature attribution for HQML architectures that use quantum feature encoding followed by a classical learner. The paper has genuine strengths: the algorithmic formulation is explicit and reproducible (Eqs. (1)-(6), Algorithms 1-2), the idea of re-evaluating the quantum feature map or kernel after each perturbation is well motivated and correctly formalized, and the code is open-sourced. However, the quantitative evidence as presented does not exercise the quantum-specific path at all: the benchmark experiments in Section 4.2 and the ablations in Section 4.3 explain only classical Decision Tree and Random Forest models trained directly on raw features, with no quantum feature map present. The only experiments that involve a quantum feature map are evaluated by visual inspection. Because the central claimed capability is specifically about HQML models, the current significance is not established by the reported measurements.
major comments (3)
- [§4.2–4.3, Figs. 5–6, Table 1] The quantitative evaluation explains only classical Decision Tree and Random Forest models trained directly on raw features, so the quantum feature map Phi_Q of Eqs. (4)–(5) never appears in any measured result. In these experiments, Algorithm 1's PredictAdapted branch (lines 2–3) reduces to identity, and the distinctive re-evaluation of Phi_Q(x') on perturbed inputs (lines 9–16) is never exercised by a reported number. Consequently, the Recall@3 and Spearman results can support at most the generic DCI+PI aggregation, not the paper's central claim that Q-MEDLEY delineates influential classical aspects in HQML models. The authors' own limitation in Section 5.3, that reliance on classical interpretable models as proxies 'may not a perfect reflection of all the intricacies of feature influence in the quantum domain,' understates the gap: the issue is not proxy fidelity but the complete absence of a quantum component from the measured loop.
- [§4.3, Table 1] Table 1 shows that the full configuration Q-MEDLEY + AdaptiveWeighting + InteractionPI underperforms the baseline Q-MEDLEY (DCI+PI Avg) on Random Forest for Covtype (0.83 vs. 0.85) and for Diabetes (0.83 vs. 1.00); similarly, Q-MEDLEY with InteractionPI alone underperforms the baseline on RF-Covtype (0.84 vs. 0.85) and RF-Diabetes (0.89 vs. 1.00). This contradicts the Section 4.3 statements that adding components yields 'increasing performance' and that the full configuration 'could obtain the maximum or among the maximum Recall@3 scores.' These differences may be within noise, but no error bars or repeated runs are reported, so the claimed monotonic benefit of the composite structure is not supported by the table.
- [§4.1, Figs. 3–4] The only experiments that actually involve a quantum feature map are Figures 3 and 4, but these are assessed exclusively by visual inspection. No quantitative metric, no known ground-truth importance ordering, and no repeated-run variance are reported for these HQML models. Since the noisy and redundant features were synthetically added, a rank-correlation or top-k recall against the known importance structure could be computed for the amplitude-encoded HQML models, as the authors themselves do for the classical models in Section 4.2. Without such a measure, the claim that Q-MEDLEY 'separates their noise' in HQML settings is not quantitatively supported.
minor comments (5)
- [§4.2] The text uses 'Remember@3' where the metric is elsewhere called 'Recall@3'; the terminology should be made consistent.
- [§1, Contributions] The contribution list describes Q-MEDLEY as a 'global and local feature importance explainer,' but Section 3 defines only the global importance score I_j and no local, instance-level explanation method is described or evaluated anywhere in the manuscript. The claim should be amended to 'global' unless a local method is actually provided.
- [§5.3] The limitation paragraph notes that kernel-based HQML results 'were not vast,' but in fact no quantitative kernel-based experiments are reported at all. This should be stated plainly, given that the kernel branch of Algorithm 1 is part of the claimed contribution.
- [General] The manuscript contains numerous grammatical and typographical errors ('an framework,' 'purposedly,' 'remonstrating,' 'the abundance of medley scores,' and several incomplete or run-on sentences). A careful copy-edit is needed.
- [§3.2–3.3] Details needed for reproducibility are missing for the HQML experiments, including the number of qubits, the specific form of U_j(x_j) in Eq. (4), the simulation backend, and dataset sizes after the noise injection. Since the code is open-sourced, adding these parameters in the text or an appendix would make the experiments independently checkable.
Circularity Check
No significant circularity: Q-MEDLEY's importance scores are defined directly from perturbation-induced accuracy changes, not from parameters fitted to the claims, and the self-citation to KAXAI is not load-bearing.
full rationale
The paper's derivation chain is self-contained for its core method. Q-MEDLEY importance scores are computed by Equations (1)-(3) and Algorithm 1 directly from accuracy differences after feature neutralization and permutation, with no free parameters fitted to the validation ground truth. The only numerical validations in Section 4.2 and Table 1 are performed on classical Decision Tree and Random Forest models, which the paper explicitly acknowledges in Section 5.3 as imperfect proxies for quantum-domain feature influence; this is a limitation of scope, not circular reasoning. The self-citation to KAXAI [26] introduces the MEDLEY concept of combining DCI and PI, but the hybrid-quantum adaptation (re-evaluating the feature map ΦQ for each perturbation, Algorithm 1 lines 2-4 and Section 3.2) is independently specified and implemented, and the claim of explaining HQML models is supported by direct visual inspection of Figures 3-4. No equation is defined in terms of another, and no fitted parameter is renamed as a prediction. Thus, no circular step is found.
Assumptions & free parameters
free parameters (2)
- Adaptive weighting coefficients =
not reported
- Permutation repeats K =
5
assumptions (3)
- domain assumption Trained classical model intrinsic importances (e.g., Gini importance) are a valid ground truth for feature importance in HQML models.
- domain assumption Accuracy on the reference dataset is a sufficient fidelity measure for feature attribution.
- domain assumption The simulated amplitude-encoded quantum feature map faithfully represents the quantum processing without hardware noise.
Cite this review
Pith. "Pith review of QuXAI: Explainers for Hybrid Quantum Machine Learning Models." pith.science (2026). https://pith.science/paper/CF4RIYQ3
@misc{pith2026250510167,
author = {Pith},
title = {Pith review of: QuXAI: Explainers for Hybrid Quantum Machine Learning Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/CF4RIYQ3}},
note = {Machine review of arXiv:2505.10167}
}
read the original abstract
The emergence of hybrid quantum-classical machine learning (HQML) models opens new horizons of computational intelligence but their fundamental complexity frequently leads to black box behavior that undermines transparency and reliability in their application. Although XAI for quantum systems still in its infancy, a major research gap is evident in robust global and local explainability approaches that are designed for HQML architectures that employ quantized feature encoding followed by classical learning. The gap is the focus of this work, which introduces QuXAI, an framework based upon Q-MEDLEY, an explainer for explaining feature importance in these hybrid systems. Our model entails the creation of HQML models incorporating quantum feature maps, the use of Q-MEDLEY, which combines feature based inferences, preserving the quantum transformation stage and visualizing the resulting attributions. Our result shows that Q-MEDLEY delineates influential classical aspects in HQML models, as well as separates their noise, and competes well against established XAI techniques in classical validation settings. Ablation studies more significantly expose the virtues of the composite structure used in Q-MEDLEY. The implications of this work are critically important, as it provides a route to improve the interpretability and reliability of HQML models, thus promoting greater confidence and being able to engage in safer and more responsible use of quantum-enhanced AI technology. Our code and experiments are open-sourced at: https://github.com/GitsSaikat/QuXAI
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
- [1]
-
[2]
D. Kreplin and M. Roth. Reduction of finite sampling noise in quantum neural networks.Quantum, 8:1385, 2024
work page 2024
- [3]
- [4]
- [5]
-
[6]
S. Mardirosian. Quantum-enhanced supervised learning with variational quantum circuits. 2019. Note: Abstract: S2 TL;DR: It is shown how near-term quantum devices open up a new avenue to combine quantum computing with classical machine learning methods, to achieve new quantum-enhanced classifiers, specifically using so-called variational quantum circuits f...
work page 2019
-
[7]
P. Steinmüller, T. Schulz, F. Graf, and D. Herr. eXplainable AI for quantum machine learning.arXiv preprint arXiv:2211.01441, 2022
arXiv 2022
-
[8]
S. Anagolum, N. Alavisamani, P. Das, M. Qureshi, and Y . Shi. Elivagar: Efficient quantum circuit search for classification. InProceedings of the 29th ACM International Conference on Architectural Support for Programming Languages and Operating Systems, Volume 2 (ASPLOS ’24), 2024
work page 2024
Show all 43 references
-
[9]
Pira and C
L. Pira and C. Ferrie. On the interpretability of quantum neural networks.Quantum Machine Intelligence, 6:52, 2023
2023
-
[10]
Khanal, P
B. Khanal, P. Rivas, A. Sanjel, K. Sooksatra, E. Quevedo, and A. R. Pérez. Generalization error bound for quantum machine learning in NISQ era - a survey.Quantum Machine Intelligence, 2024
2024
-
[11]
Macaluso
A. Macaluso. Quantum supervised learning.Künstliche Intelligenz, 38:277–291, 2024
2024
-
[12]
T. Hur, I. F. Araujo, and D. K. Park. Neural quantum embedding: Pushing the limits of quantum supervised learning.Physical Review A, 110:022411, 2024
2024
-
[13]
Y . Du, Y . Qian, and D. Tao. Accelerating variational quantum algorithms with multiple quantum processors.arXiv preprint arXiv:2106.12819, 2021. 14 QuXAI
2021 arXiv
-
[14]
Burge, M
I. Burge, M. Barbeau, and J. García. Quantum algorithms for shapley value calculation. In2023 IEEE International Conference on Quantum Computing and Engineering (QCE), volume 01, pages 1–9, 2023
2023
-
[15]
Ibrahim, H
M. Ibrahim, H. Mohammadbagherpoor, C. Rios, N. Bronn, and G. T. Byrd. Evaluation of parameterized quantum circuits with cross-resonance pulse-driven entanglers.IEEE Transactions on Quantum Engineering, 3:1–13, 2022
2022
-
[16]
Stein, T
J. Stein, T. Rohe, F. Nappi, J. Hager, D. Bucher, M. Zorn, M. Kölle, and C. Linnhoff-Popien. Introducing reducing-width-QNNs, an AI-inspired ansatz design pattern.arXiv preprint arXiv:2306.05047, 2023
2023 arXiv
-
[17]
Heese, T
R. Heese, T. Gerlach, S. Mucke, S. Müller, M. Jakobs, and N. Piatkowski. Explainable quantum machine learning. arXiv preprint arXiv:2301.09138, 2023
2023 arXiv
-
[18]
T. Haug, C. Self, and M. Kim. Large-scale quantum machine learning.arXiv preprint arXiv:2108.01039, 2021
2021 arXiv
-
[19]
Blank, A
C. Blank, A. J. da Silva, L. P. de Albuquerque, F. Petruccione, and D. Park. Compact quantum kernel-based binary classifier.Quantum Science & Technology, 7:045013, 2022
2022
-
[20]
Incudini, M
M. Incudini, M. Grossi, A. Ceschini, A. Mandarino, M. Panella, S. Vallecorsa, and D. Windridge. Resource saving via ensemble techniques for quantum neural networks.Quantum Machine Intelligence, 5:30, 2023
2023
-
[21]
T. Haug, C. Self, and M. S. Kim. Quantum machine learning of large datasets using randomized measurements. Machine Learning: Science and Technology, 4:015019, 2023
2023
-
[22]
Miroszewski, M
A. Miroszewski, M. F. Asiani, J. Mielczarek, B. L. Saux, and J. Nalepa. In search of quantum advantage: Estimating the number of shots in quantum kernel methods.arXiv preprint arXiv:2407.15776, 2024
2024 arXiv
-
[23]
Kashif and S
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, 4:015027, 2023
2023
-
[24]
Barua, S
S. Barua, S. E. U. Shubha, M. Rahman, A. J. Uchash, and M. Mahdy. RESCUED: Robust quantum error correction with surface code in noisy channels using ensemble decoder. In2023 IEEE International Conference on Telecommunications and Photonics (ICTP), pages 01–05. IEEE, 2023
2023
-
[25]
Burge, M
I. Burge, M. Barbeau, and J. García. A quantum algorithm for shapley value estimation.arXiv preprint arXiv:2301.04727, 2023
2023 arXiv
-
[26]
Barua and S
S. Barua and S. Momen. Kaxai: An integrated environment for knowledge analysis and explainable AI.arXiv preprint arXiv:2401.00193, 2023
2023 arXiv
-
[27]
Stein, T
J. Stein, T. Rohe, F. Nappi, J. Hager, D. Bucher, M. Zorn, M. Kölle, and C. Linnhoff-Popien. Introducing reduced-width QNNs, an AI-inspired ansatz design pattern. InProceedings of the 15th International Conference on Agents and Artificial Intelligence - Volume 3: ICAART, pages...
2023
-
[28]
S. Park, D. Park, and J. Rhee. Variational quantum approximate support vector machine with inference transfer. Scientific Reports, 13:3159, 2023
2023
-
[29]
Heimann, G
D. Heimann, G. Schonhoff, E. Mounzer, H. Hohenfeld, and F. Kirchner. Learning capability of parametrized quantum circuits.arXiv preprint arXiv:2209.10345, 2022
2022 arXiv
-
[30]
Mercaldo, G
F. Mercaldo, G. Ciaramella, G. Iadarola, M. Storto, F. Martinelli, and A. Santone. Towards explainable quantum machine learning for mobile malware detection and classification.Applied Sciences, 12(23):12025, 2022
2022
-
[31]
Zhang, Z
S. Zhang, Z. Qin, Y . Zhou, R. Li, C. Du, and Z. Xiao. Single entanglement connection architecture between multi-layer HEA for distributed VQE. 2023. Note: No DOI or arXiv ID provided in Semantic Scholar entry for this one
2023
-
[32]
Mangini, F
S. Mangini, F. Tacchino, D. Gerace, D. Bajoni, and C. Macchiavello. Quantum computing models for artificial neural networks.Europhysics Letters, 134:10002, 2021
2021
-
[33]
Ibrahim, H
M. Ibrahim, H. Mohammadbagherpoor, C. Rios, N. Bronn, and G. T. Byrd. Pulse-level optimization of parameter- ized quantum circuits for variational quantum algorithms. 2022. Note: Abstract: S2 TL;DR: Pulse-level access to quantum machines and understanding of their two-qubit in...
2022
-
[34]
H.-Y . Wu, V . Elfving, and O. Kyriienko. Multidimensional quantum generative modeling by quantum Hartley transform.Advanced Quantum Technologies, page 2400337, 2024
2024
-
[35]
Wang and B
Y . Wang and B. Qi. Enhanced generalization of variational quantum learning under reduced-domain initialization. In2023 42nd Chinese Control Conference (CCC), pages 6771–6776, 2023
2023
-
[36]
Gil-Fuster, J
E. Gil-Fuster, J. Eisert, and C. Bravo-Prieto. Understanding quantum machine learning also requires rethinking generalization.Nature Communications, 15:1968, 2024. 15 QuXAI
1968
-
[37]
Weigold, J
M. Weigold, J. Barzen, F. Leymann, and D. Vietz. Patterns for hybrid quantum algorithms. In W. Hasselbring, S. Eicker, and R. H. Reussner, editors,Software Architecture - ECSA 2021 Tracks and Workshops, volume 12884 ofLecture Notes in Computer Science, pages 18–31. Springer In...
2021
-
[38]
J. Liu, K. Najafi, K. Sharma, F. Tacchino, L. Jiang, and A. Mezzacapo. An analytic theory for the dynamics of wide quantum neural networks.arXiv preprint arXiv:2203.16711, 2022
2022 arXiv
-
[39]
T. Goto, Q. Tran, and K. Nakajima. Universal approximation property of quantum machine learning models in quantum-enhanced feature spaces.Physical Review Letters, 127(9):090506, 2021
2021
-
[40]
Moussa, J
C. Moussa, J. N. Rijn, T. Back, and V . Dunjko. Hyperparameter importance of quantum neural networks across small datasets. In T. Bäck, M. Preuss, A. Deutz, H. Wang, C. Doerr, M. Emmerich, and H. Trautmann, editors, Parallel Problem Solving from Nature – PPSN XVII, volume 1339...
2022
-
[41]
Cugini, D
D. Cugini, D. Gerace, P. Govoni, A. Perego, and D. Valsecchi. Comparing quantum and classical machine learning for vector boson scattering background reduction at the large hadron collider.Quantum Machine Intelligence, 5:21, 2023
2023
-
[42]
Q. Li, Y . Huang, X. Hou, Y . Li, X. Wang, and A. Bayat. Ensemble-learning variational shallow-circuit quantum classifiers. 2023. Note: Abstract: S2 TL;DR: While both of the protocols substantially outperform error-mitigated primitive classifiers, the adaptive boosting shows b...
2023
-
[43]
Ciaramella, G
G. Ciaramella, G. Iadarola, F. Mercaldo, M. Storto, A. Santone, and F. Martinelli. Introducing quantum computing in mobile malware detection. InProceedings of the 17th International Conference on Availability, Reliability and Security (ARES ’22), Article No. 61, pages 10, 2022. 16
2022
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.