Pith. sign in

REVIEW 4 major objections 4 minor 31 references

Quantum Annealing for Machine Learning: Applications in Feature Selection, Instance Selection, and Clustering

T0 review · 4 major / 4 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read This paper aims to show that quantum annealing can solve discrete machine-learning optimization problems—feature selection, instance selection, and clustering—competitively with classical simulated annealing, at about a tenth of the…

desk verdict Honest working-notes paper with two genuinely new heuristics; the QA-efficiency claim rests on an unvalidated timing comparison and the abstract overstates the clustering results. read the letter →

arxiv 2507.15063 v1 pith:QQUQDSJ5 submitted 2025-07-20 quant-ph cs.ETcs.LG

classification quant-phcs.ETcs.LG
keywords quantumannealingQUBOsimulatedfeatureselectioninstanceclusteringmedoidrefinementhybridquantum-classicalpipeline
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper tries to establish that quantum annealing (QA) is already a competitive and practical solver for small discrete machine-learning optimization problems, not just a theoretical prospect. It casts feature selection, instance selection, and clustering as quadratic unconstrained binary optimization (QUBO) problems and runs the same formulations on a quantum annealer and on classical simulated annealing. The headline result is that QA matches simulated annealing's solution quality on feature selection while taking about one-tenth of the time, and that a classical-then-quantum pipeline for clustering consistently tightens clusters and improves retrieval. If true, it would mean current quantum hardware can be slotted into real ML workflows as a faster heuristic for combinatorial subproblems, with the caveat that the comparison depends on a fair timing measurement.

What carries the argument

The load-bearing object is the QUBO objective $f(x) = x^T Q x$, a quadratic function over binary variables that quantum annealers accept natively; every task in the paper is reduced to choosing the matrix $Q$ so that the minimum of $f$ encodes the desired subset or medoid selection. Feature selection puts importance scores on the diagonal and redundancy scores off the diagonal, with a penalty enforcing the number of selected features. Instance selection uses cosine similarities between embeddings off the diagonal and the paper's new SVC-distance or deletion-influence scores on the diagonal. Clustering uses the k-medoids QUBO objective, with pairwise distances converted by the Welsch M-estimator (a correntropy loss) and with the exact-k constraint generated through a dedicated quadratic constraint generator rather than a plain penalty; the quantum stage only refines medoids proposed by a classical clustering stage.

What would settle it

Run the same MQ2007 feature-selection QUBO many times on QA and SA with identical reads, and time the full pipeline from submission to returned samples; if QA's median time is not roughly one-tenth of SA's, or if the 13-feature outcome falls inside the run-to-run variance of the 15-feature outcome, the efficiency and competitiveness claim loses its support.

Watch

Extended reading notes

Core claim

On its own terms, the paper's central discovery is that a QUBO formulation of each task lets quantum annealing reach essentially the same solution quality as simulated annealing with far less compute. For feature selection on the MQ2007 collection, QA achieved a leaderboard nDCG@10 of 0.4552 with only 13 selected features, close to the top score of 0.4580 at 21 features, and did so in roughly one-tenth of the annealing time of SA. In instance selection, the paper extends the bcos QUBO with two new diagonal importance heuristics—distance to an SVM margin and an instance-deletion influence score—but finds no statistically significant difference among methods at 25% reduction on the provided datasets, which it argues are too easy. In clustering, the pipeline runs classical k-Medoids, HDBSCAN, or GMM to produce candidate medoids, then applies a fixed-k QUBO medoid refinement; the best submitted run outperformed the reported baselines, and the authors report consistent improvements in compactness and retrieval metrics.

Load-bearing premise

The central claims assume the timing comparison is apples-to-apples—same QUBO instance, same number of reads, and QA time reflecting solver time rather than queue or embedding overhead—and that the 13-feature QA result is a representative outcome rather than a lucky draw from a high-variance process.

Editorial extensions

If this is right

  • Feature-selection QUBOs of the size tested here (tens of features) can be solved by QA with quality on par with SA at about a tenth of the annealing time, so time-sensitive ML pipelines could offload this step to an annealer.
  • Very small feature subsets can carry most of the ranking signal: the 13-feature QA selection nearly matched a 21-feature leaderboard leader, so learned feature budgets may be tighter than commonly assumed.
  • A hybrid classical-quantum clustering pipeline—classical candidates, quantum-constrained medoid refinement—can enforce exact k while improving compactness and retrieval metrics, pointing to refinement rather than full-problem solving as the practical role of current annealers.
  • In instance selection, QUBO-based heuristics and random sampling are statistically indistinguishable on the provided sentiment datasets at 25% reduction, implying that harder benchmarks are needed before QA-based instance selection can show a measurable benefit.
  • Fixed-k constraints encoded as quadratic penalty terms through a dedicated constraint generator are more stable on quantum hardware than simple linear or diagonal penalties, which matters for any QUBO task requiring exact cardinality.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The reported 10x speedup is for annealing time, not end-to-end pipeline time; a full workflow benchmark that includes QUBO construction, embedding, and queue time would likely soften the advantage, so the competitive-efficiency claim should be read as solver-level, not system-level.
  • The two identical QA feature-selection submissions returning 13 and 15 features suggest high run-to-run variance; leaderboard comparisons built on a single QA draw may overstate the method's typical performance, and repeated sampling would give a fairer estimate.
  • The clustering pipeline's benefit probably depends on the upstream classical clustering quality: quantum refinement adds the most when classical candidates are noisy or overlapping, and could be neutral when classical clusters are already clean; this dependency is testable by ablating the refinement step.
  • The instance-selection diagonal heuristics are computed per 80-document batch, so a natural next test is computing the importance scores globally before batching; the paper's own batching discussion implies this could remove a known inconsistency.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 4 minor

Summary. The paper reports a QuantumCLEF 2025 competition entry in which three machine-learning tasks—feature selection, instance selection, and clustering—are formulated as QUBO problems and solved with both D-Wave quantum annealing (QA) and simulated annealing (SA). For feature selection, the authors construct QUBO matrices from mutual-information- and permutation-importance-based terms, report leaderboard nDCG scores for two QA runs (0.4552 with 13 features and 0.4436 with 15 features), and claim that QA is about ten times faster than SA. For instance selection, they extend the bcos QUBO approach with SVC-margin and instance-deletion diagonal heuristics, reporting F1 scores at 25% reduction. For clustering, they build a classical-to-quantum pipeline that pre-clusters documents and then uses a constrained QUBO medoid-refinement stage; their k-Medoids submission achieved a leaderboard nDCG of 0.58. The overall conclusion is that QA can be a competitive and efficient tool for discrete ML optimization on current hardware.

Significance. If the efficiency and competitiveness claims were fully substantiated, the paper would provide useful evidence that quantum annealing can serve as a practical heuristic for small-scale discrete optimization problems and as a component in hybrid classical-quantum ML pipelines. The paper has notable strengths: all code is made publicly available through three GitHub repositories; the QUBO formulations are grounded in prior work rather than invented ad hoc; and the authors are unusually candid about limitations, including the lack of statistical significance in Task 2, the all-teams-below-baseline result on the Vader dataset, and the invalid clustering submissions caused by a dimensionality mismatch. These strengths make the manuscript a useful working-notes record. However, the headline claims go beyond what the reported evidence supports, mainly because the timing comparison in Task 1 lacks methodology, the QA feature-selection advantage rests on two unreplicated runs, and the clustering improvements are not shown to come from the quantum refinement stage.

major comments (4)
  1. [Section 4.1, Figure 2(b) and Table 2] The claim that QA is 'computationally more efficient' rests on an unvalidated timing comparison. Figure 2(b) reports annealing time in milliseconds, but the paper never states whether the QA figure is QPU anneal time, access time, or submission-to-result wall time, nor whether the SA figure is wall-clock or CPU time for the same QUBO instance and the same number of reads. On D-Wave hardware, anneal time per read is on the order of microseconds, while queue, embedding, programming, and readout overhead are typically excluded; comparing only that component to a full SA runtime can produce a large speedup that has nothing to do with algorithmic advantage. The authors should specify exactly what was measured for both solvers, confirm that the comparison used the same QUBO and read count, and report variance over repeated runs. Without this, the central efficiency claim is not supported as reported.
  2. [Section 4.1, Table 2] The two QA feature-selection submissions had identical code and QUBO configuration but returned different feature counts, k=13 and k=15, with leaderboard nDCG scores of 0.4552 and 0.4436. The paper attributes the divergence to 'inherent randomness and probabilistic nature' but provides no repeated trials, no mean/standard deviation, and no significance analysis. The better score may therefore be a favorable draw from a high-variance process rather than a systematic QA advantage. At minimum, the authors should report multiple QA runs for the same configuration and compare the distribution of solution quality and runtime against SA; otherwise the statement that QA achieved 'comparable effectiveness' with fewer features is not established.
  3. [Section 4.2, Table 3] The Task 2 results do not support any claim of QA or SA advantage. The paper's own text states that differences are not statistically significant for the Yelp dataset and that all teams perform worse than the baseline on the Vader dataset. The submitted QA run on Vader, for example, has F1 62.6(7.5) versus the baseline 88.9(0.8). The conclusion that 'QA often matched or exceeded the performance of SA in less time' therefore cannot be justified by the instance-selection experiments. The authors should either restrict their claims to feature selection and clustering or provide additional evidence, such as significance testing or a more difficult benchmark, before generalizing beyond Task 1.
  4. [Section 4.3, Table 4] The abstract claims 'consistent improvements in cluster compactness and retrieval metrics' from the classical-to-quantum medoid-refinement pipeline, but Table 4 does not demonstrate consistency. For example, at k=10 the internal nDCG values range from 0.32 to 0.60 across configurations, with several runs (e.g., Runs 5, 6, 14, 15) far below the corresponding baselines. Moreover, the two submitted UMAP-based clustering runs (Experiments 2 and 12) were invalid because dimensionality-reduced centroids were evaluated against full-dimensional queries, so only one of three official clustering submissions was valid. The table also lacks an ablation that compares the same classical clustering method with and without the quantum refinement stage, so any DBI improvement cannot be attributed to the QUBO refinement rather than to the choice of classical clustering algorithm. The authors should provide a direct before/after comparison and clarify which configurations actually support the consistency claim.
minor comments (4)
  1. [Section 3.4, Equations (2)-(5)] The equation numbering in Section 3.4 is inconsistent: the text refers to 'Eq. (2)', 'Eq. (3)', and 'Eq. (5)' when the displayed equations are numbered (4) and (5), and the earlier general QUBO is Eq. (1). Please renumber or re-reference the equations so that the medoid objective, the Welsch similarity, and the parameter choices (alpha, beta, gamma) are clearly tied to the correct displayed formulas.
  2. [Table 1 and Table 2] The tables would be easier to interpret if the number of runs and variance were reported. In particular, Table 2 lists only two QA runs with no repeated trials, and Table 1 mixes local validation scores with leaderboard scores in the same cells using parentheses; a clearer separation (e.g., two columns) would avoid ambiguity.
  3. [Section 4.2, text after Figure 3] There are several typos and awkward phrasings, including 'Another argument that supports this insight can is illustrated' and 'statisticaly' in the conclusion. These should be corrected in a final revision.
  4. [References and notation] Some reference markers are inconsistently formatted, such as '[ch. 31][15]' in Section 3.3, and the citation style for the D-Wave Ocean SDK and dimod constraint generator could be made more uniform. Also, the term 'centroid embeddings' in the abstract is used interchangeably with 'medoids' in the body; please define the relationship clearly.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity found: all central evaluations use external metrics, and no load-bearing step reduces to a fitted parameter or a self-citation.

full rationale

After walking the paper's claimed derivation chain, I find no step in which an output is equivalent to an input by construction, no fitted quantity is renamed as a prediction, and no load-bearing argument rests on a self-citation. The feature-selection QUBOs (Section 3.2) are built explicitly from MI/CMI/PFI/CPFI measures with a quadratic cardinality penalty, and the reported nDCG scores come from the qCLEF leaderboard, which is external to the Q-matrix construction and to the validation-based tuning of k. The instance-selection heuristics (Section 3.3) are evaluated by downstream F1 on held-out folds, and the paper explicitly reports that differences are not statistically significant, so no result is forced by construction. The clustering pipeline (Section 3.4) uses the k-medoids QUBO from Bauckhage et al. with a fixed-size constraint generated by dimod; the reported DBI and nDCG are computed on the original embedding space after reassignment, not on the optimized QUBO objective itself, so the claimed improvements are empirical rather than definitional. The only notable weakness is the timing comparison in Section 4.1 and Figure 2, where no timing methodology is given; that is an evidence-quality or correctness concern, not circularity. There are no author-overlapping self-citations and no imported uniqueness theorem that forbids alternatives. The paper's central claims are therefore self-contained against external benchmarks.

Assumptions & free parameters 7 free parameters · 4 assumptions · 0 invented entities

The central claims rest on a modest number of hand-set constants and imported QUBO formulations. No new physical entities are introduced. The most consequential free choices are k, the fixed-k penalty scaling, and gamma; these are tuned or selected post hoc. The QUBO objectives come from cited prior work rather than from first principles, so the paper's novel contribution is the particular heuristic diagonal scores and the hybrid pipeline, which are not circular but are empirically fragile.

free parameters (7)
  • feature count k (Task 1) = 5 to 40; selected values 13, 15, 20, 25, etc.
    k was tuned to maximize validation nDCG; the best QA run used k=13 and is highlighted as the most efficient feature subset.
  • cluster count k (Task 3) = 10, 25, 50
    k was chosen by silhouette/DBI optimization or by the experimenter; the best submitted run used k=10.
  • QUBO penalty weight lambda (Task 1) = not reported
    The sparsity penalty lambda (sum x_i - k)^2 is introduced without a stated value or tuning procedure.
  • alpha, beta, gamma (Task 3) = alpha=1/k, beta=1/n, gamma=2
    These constants normalize the dispersion and centrality terms, and gamma=2 was chosen to prioritize the fixed-k constraint. They are hand-chosen, not derived.
  • fixed-k penalty scale multiplier (Task 3) = 2x maximum energy delta
    The paper states that doubling the penalty value consistently stabilized solutions; this is a tuned multiplier.
  • SVC hyperparameters (Task 2) = rbf kernel, C=1.0
    The authors say the hyperparameters are not important but settled on rbf with C=1.0 for all experiments.
  • UMAP reduction settings (Task 3) = not reported
    UMAP was explored as an optional preprocessing step, but no hyperparameters are given, which limits reproducibility.
assumptions (4)
  • domain assumption Quantum annealing reliably finds low-energy states of the QUBO objective.
    Section 3.1 invokes the adiabatic theorem, but hardware noise means QA outputs are not guaranteed optimal; the paper still interprets QA outputs as solutions to the optimization problems.
  • domain assumption The QUBO formulations from Mücke et al. [8], Pasin et al. [12], and Bauckhage et al. [17] correctly encode feature selection, instance selection, and k-medoids objectives.
    The methodology imports these formulations as given, so the central claims inherit their validity.
  • domain assumption The leaderboard metrics, nDCG@10, F1, and DBI, computed on held-out data are trusted as ground truth.
    Scores are taken from the qCLEF evaluation infrastructure; two clustering submissions were invalid due to a dimensionality mismatch, so metric handling is not automatically reliable.
  • standard math Quadratic penalties and dimod.generators.combinations enforce exact fixed-size selection constraints on the D-Wave hardware.
    Section 3.4 describes the fixed-k constraint as hard, but in Task 2 QA returned reduction sizes of 0.274 and 0.283 instead of the exact 0.25 target, so enforcement is only approximate in practice.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Quantum Annealing for Machine Learning: Applications in Feature Selection, Instance Selection, and Clustering." pith.science (2026). https://pith.science/paper/QQUQDSJ5

@misc{pith2026250715063,
  author       = {Pith},
  title        = {Pith review of: Quantum Annealing for Machine Learning: Applications in Feature Selection, Instance Selection, and Clustering},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/QQUQDSJ5}},
  note         = {Machine review of arXiv:2507.15063}
}
read the original abstract

This paper explores the applications of quantum annealing (QA) and classical simulated annealing (SA) to a suite of combinatorial optimization problems in machine learning, namely feature selection, instance selection, and clustering. We formulate each task as a Quadratic Unconstrained Binary Optimization (QUBO) problem and implement both quantum and classical solvers to compare their effectiveness. For feature selection, we propose several QUBO configurations that balance feature importance and redundancy, showing that quantum annealing (QA) produces solutions that are computationally more efficient. In instance selection, we propose a few novel heuristics for instance-level importance measures that extend existing methods. For clustering, we embed a classical-to-quantum pipeline, using classical clustering followed by QUBO-based medoid refinement, and demonstrate consistent improvements in cluster compactness and retrieval metrics. Our results suggest that QA can be a competitive and efficient tool for discrete machine learning optimization, even within the constraints of current quantum hardware.

Figures

Figures reproduced from arXiv: 2507.15063 by the authors.

Figure 1
Figure 1. The structure of a Pegasus topology, which defines the connection pattern between qubits in a D-Wave Advantage quantum chip. Blue dots are nodes (qubits) and connecting edges are couplers[23] [PITH_FULL_IMAGE:figures/full_fig_p004_1.png] view at source ↗
Figure 2
Figure 2. Comparison of Simulated Annealing (SA) and Quantum Annealing (QA) on feature selection task. Values in the chart only reflect the submissions made to the qCLEF leaderboard and official results. Furthermore, while SA and QA achieved comparable nDCG scores across the board, the computational effort differed significantly ( [PITH_FULL_IMAGE:figures/full_fig_p010_2.png] view at source ↗
Figure 3
Figure 3. Vader dataset: Average Performance (F1 Score) across test folds of a logistic regression model ran with different instance selection variants and reduction sizes: random sampling, distance to support-vector based method (svc) as well as instance deletion method [PITH_FULL_IMAGE:figures/full_fig_p011_3.png] view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: Experiment 1 (k-Medoids, 𝑘 = 10) clustering visualization using 2D UMAP projection. Left: initial clustering with centroids (black), right: quantum-refined medoid selection with final centroids (pink). Among all experiments, however, experiment 13 (GMM, k=10) achieved …
Figure 5
Figure 5. Figure 5: Experiment 13 (GMM, 𝑘 = 10) clustering visualization using 2D UMAP projection. Left: initial clustering with centroids (black), right: quantum-refined medoid selection with final centroids (pink) [PITH_FULL_IMAGE:figures/full_fig_p013_5.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

31 extracted references · 25 canonical work pages

  1. [1]

    Pasin, M

    A. Pasin, M. F. Dacrema, W. Cuhna, M. A. Gonçalves, P. Cremonesi, N. Ferro, Quantumclef 2025: Overview of the second quantum computing challenge for information retrieval and recommender systems at CLEF, in: G. Faggioli, N. Ferro, P. Rosso, D. Spina (Eds.), Working Notes of CLEF 2025 - Conference and Labs of the Evaluation Forum, CEUR Workshop Proceedings, 2025

  2. [2]

    Pasin, M

    A. Pasin, M. F. Dacrema, W. Cuhna, M. A. Gonçalves, P. Cremonesi, N. Ferro, Overview of quantum- clef 2025: The second quantum computing challenge for information retrieval and recommender systems at CLEF, in: J. Carrillo-de-Albornoz, J. Gonzalo, L. Plaza, A. G. S. de Herrera, J. Mothe, F. Piroi, P. Rosso, D. Spina, G. Faggioli, N. Ferro (Eds.), Experimen...

  3. [3]

    Farhi, J

    E. Farhi, J. Goldstone, S. Gutmann, M. Sipser, Quantum computation by adiabatic evolution, arXiv preprint quant-ph/0001106 (2000)

  4. [4]

    Boothby, P

    K. Boothby, P. Bunyk, J. Raymond, A. Roy, Next-generation topology of d-wave quantum processors, arXiv preprint arXiv:2003.00133 (2020)

  5. [5]

    L. P. Yulianti, K. Surendro, Implementation of quantum annealing: A systematic review, IEEE Transactions on Emerging Topics in Computing 11 (2023) 150–162

  6. [6]

    Lucas, Ising formulations of many np problems, Frontiers in Physics 2 (2014) 5

    A. Lucas, Ising formulations of many np problems, Frontiers in Physics 2 (2014) 5

  7. [7]

    P. Date, D. Arthur, L. Pusey-Nazzaro, Qubo formulations for training machine learning models, Quantum Computing Applications 1 (2023) 100–112

  8. [8]

    Mücke, R

    S. Mücke, R. Heese, S. Müller, M. Wolter, N. Piatkowski, Feature selection on quantum comput- ers, Quantum Machine Intelligence 5 (2023) 11. URL: https://doi.org/10.1007/s42484-023-00099-z. doi:10.1007/s42484-023-00099-z

Show all 31 references
  1. [9]

    Pranjić, B

    D. Pranjić, B. C. Mummaneni, C. Tutschku, Quantum annealing based feature selection in machine learning, Quantum Machine Learning 2 (2023) 11–19

  2. [10]

    Nembrini, M

    R. Nembrini, M. F. Dacrema, P. Cremonesi, Feature selection for recommender systems with quantum computing, Journal of Computing Frontiers 10 (2024) 45–57

  3. [11]

    Borle, N

    N. Borle, N. Zecevic, et al., Feature selection with quantum annealing for interpretable and robust machine learning, Quantum Machine Intelligence 5 (2023) 1–15

  4. [12]

    Pasin, W

    A. Pasin, W. Cunha, M. A. Gonçalves, N. Ferro, A quantum annealing instance selection approach for efficient and effective transformer fine-tuning, in: Proceedings of the 2024 ACM SIGIR International Conference on Theory of Information Retrieval, 2024, pp. 205–214

  5. [13]

    Cunha, C

    W. Cunha, C. França, G. Fonseca, L. Rocha, M. A. Gonçalves, An effective, efficient, and scalable confidence-based instance selection framework for transformer-based text classification, in: Proceedings of the 46th International ACM SIGIR Conference on Research and Development...

  6. [14]

    P. W. Koh, P. Liang, Understanding black-box predictions via influence functions, in: International conference on machine learning, PMLR, 2017, pp. 1885–1894

  7. [15]

    Molnar, Interpretable Machine Learning, 3 ed., 2025

    C. Molnar, Interpretable Machine Learning, 3 ed., 2025. URL: https://christophm.github.io/ interpretable-ml-book

  8. [16]

    A. S. Joaquin, B. Wang, Z. Liu, N. Asher, B. Lim, P. Muller, N. F. Chen, In2core: Leveraging influence functions for coreset selection in instruction finetuning of large language models, arXiv preprint arXiv:2408.03560 (2024)

  9. [17]

    Bauckhage, N

    C. Bauckhage, N. Piatkowski, R. Sifa, D. Hecker, S. Wrobel, A qubo formulation of the k-medoids problem., in: LWDA, 2019, pp. 54–63

  10. [18]

    Alvarez-Giron, J

    W. Alvarez-Giron, J. Téllez-Torres, J. Tovar-Cortes, H. Gómez-Adorno, Team qiimas on task 2 - clustering: Quantum annealing for k-medoids optimization, in: Working Notes of CLEF 2024 - Conference and Labs of the Evaluation Forum, Grenoble, France, 2024. URL: https://bitbucket....

  11. [19]

    Kurihara, S

    K. Kurihara, S. Tanaka, S. Miyashita, Quantum annealing for clustering, in: Proceedings of the Twenty-Fifth Conference on Uncertainty in Artificial Intelligence (UAI), AUAI Press, 2009, pp. 317–324

  12. [20]

    Zaech, M

    J.-N. Zaech, M. Danelljan, T. Birdal, L. Van Gool, Probabilistic sampling of balanced k-means using adiabatic quantum computing, arXiv preprint arXiv:2310.12153 (2023). URL: https://arxiv.org/abs/ 2310.12153

  13. [21]

    Matsumoto, Y

    N. Matsumoto, Y. Hamakawa, K. Tatsumura, K. Kudo, Distance-based clustering using qubo formulations, Scientific Reports 12 (2022) 2669. URL: https://doi.org/10.1038/s41598-022-06559-z. doi:10.1038/s41598-022-06559-z

  14. [22]

    D.-W. S. Inc., Ocean software documentation, 2023. URL: https://docs.ocean.dwavesys.com/

  15. [23]

    Morstyn, Annealing-based quantum computing for combinatorial optimal power flow, IEEE Transactions on Smart Grid PP (2022) 1–1

    T. Morstyn, Annealing-based quantum computing for combinatorial optimal power flow, IEEE Transactions on Smart Grid PP (2022) 1–1. doi:10.1109/TSG.2022.3200590

  16. [24]

    T. M. Cover, J. A. Thomas, Elements of Information Theory, 2nd ed., Wiley-Interscience, 2006

  17. [25]

    Breiman, Random forests, Machine Learning 45 (2001) 5–32

    L. Breiman, Random forests, Machine Learning 45 (2001) 5–32

  18. [26]

    Debeer, C

    D. Debeer, C. Strobl, Conditional permutation importance revisited, BMC Bioinformatics 21 (2020) 1–19

  19. [27]

    W. Liu, P. P. Pokharel, J. C. Principe, Correntropy: Properties and applications in non-gaussian signal processing, IEEE Transactions on Signal Processing 55 (2007) 5286–5298. doi: 10.1109/ TSP.2007.898255

  20. [28]

    Pasvolsky, D.-W

    J. Pasvolsky, D.-W. S. Inc., dimod.generators.combinations — constraint generator for fixed- 𝑘 selection, 2019. URL: https://github.com/dwavesystems/dimod/blob/main/dimod/generators/ constraints.py, accessed: 2025-06-12

  21. [29]

    Hutter, H

    F. Hutter, H. H. Hoos, K. Leyton-Brown, Efficient functional anova: Insights into high-dimensional model performance, in: Proceedings of the 30th Conference on Uncertainty in Artificial Intelligence (UAI), 2014

  22. [30]

    A. Abid, A. Kamel, J. Zou, Lofo importance: Leave one feature out based feature importance score, https://github.com/aerdem4/lofo-importance, 2020

  23. [31]

    K. Kira, L. A. Rendell, The feature selection problem: Traditional methods and a new algorithm, AAAI (1992) 129–134

Pith tools

Reviewed August 6, 2026 · model on record in the stance chip above.