REVIEW 3 major objections 4 minor 47 references
Quantum Annealing based Feature Selection in Machine Learning
T0 review · 3 major / 4 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read The paper claims that solving a mutual-information QUBO on a hybrid quantum annealer selects feature sets that improve SVM price-prediction accuracy over MI-only selection when mutual information is spread thinly across features and few…
desk verdict The empirical claim is plausible but the QUBO encoding appears to drop half of the conditional mutual information terms, so the paper as written does not test its own objective. 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 object is the MIQUBO formulation of feature selection. Eq. (7) approximates the optimal feature set by maximizing, over the selected features, each feature's mutual information with the target plus the pairwise conditional mutual information of every other selected feature given it. That objective is turned into a QUBO by setting the diagonal coefficients to the negative individual MI values and the off-diagonal coefficients to the negative CMI values, so that minimizing the QUBO is the same as maximizing the feature-selection objective. The resulting binary quadratic model is solved with the Kerberos hybrid sampler, which runs tabu search, simulated annealing, and QPU sub-problem sampling in parallel. The comparison baseline is the top features by individual MI.
What would settle it
Solve Eq. (7) exhaustively on the Caterpillar all-models dataset for the smallest feature-set sizes tested, for example four and five features, and compare the resulting feature sets with Kerberos's selections on the same SVM train-test splits. If the exact CMI-based sets do not yield a higher mean $R^2$ than the MI-only top-k sets, the paper's central claim fails; a supporting check is whether Kerberos's QUBO objective values match the exact optimum on those instances.
Extended reading notes
Core claim
On its own terms, the paper's central claim is that maximizing the sum of mutual information and conditional mutual information over a selected feature set, the objective in Eq. (7) solved as the MIQUBO on an annealer, selects feature combinations whose information content is more independent, and this translates into better SVM regression performance than MI-only selection when the dataset has low MI concentration and the selected feature set is small. This is demonstrated on two Caterpillar excavator-price datasets. For the model-308 dataset, MI is concentrated in construction year and working hours, and CMI-based and MI-based selections show no visible difference in mean $R^2$. For the all-models dataset, MI is more evenly distributed, and CMI-based selection produces a statistically relevant $R^2$ gap for the smallest feature counts, which narrows as more features are selected. The paper explains the gap by the CMI-selected sets containing more independent information, citing information theory.
Load-bearing premise
The empirical comparison assumes that the Kerberos hybrid solver returns feature sets close enough to the true maximum of the CMI objective that the observed $R^2$ differences come from the choice of objective rather than from solver noise; the paper does not measure how close Kerberos is to that optimum.
Editorial extensions
If this is right
- On low-MI-concentration datasets, CMI-based MIQUBO selection yields higher mean SVM R² values than top-k MI selection for the smallest feature counts, with the gap narrowing as more features are added.
- On MI-concentrated datasets, CMI-based selection and MI-only selection converge to essentially the same feature sets and the same R² scores, so the annealing route offers no practical gain there.
- The selected features are the original one-hot-encoded inputs, preserving interpretable domain meaning that transformed dimensionality-reduction representations lack.
- Because feature selection is written as a QUBO, the search over feature combinations can be delegated to a hybrid annealer instead of enumerating all possible combinations.
Reading between the lines
- A natural extension the authors do not run is to verify Kerberos's solutions against exhaustive optimization on the small-k instances; that check would separate the information-theoretic benefit of the CMI objective from solver noise.
- Because the paper notes that lower MI concentration would make the QUBO matrices denser, datasets with near-uniform feature informativeness, such as image or audio representations, are a plausible place for annealing-specific gains to grow.
- The same QUBO encoding could be applied to other pairwise information-theoretic objectives, such as joint mutual information or interaction information, producing a family of annealer-based feature selectors beyond CMI.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a quantum-annealing-based feature selection method, MIQUBO, in which a QUBO is built from mutual information (MI) and conditional mutual information (CMI) terms, and solved with D-Wave's Kerberos hybrid solver. The selected feature sets are evaluated by training RBF-SVM regressors to predict used-excavator prices on two Caterpillar datasets: a small MI-concentrated dataset (model 308, 27 one-hot features) and a larger less MI-concentrated dataset (all models, 67 one-hot features, pre-pruned to 25). The central claim is that for datasets with low MI concentration, maximizing the sum of MI and CMI via MIQUBO yields better SVM R2 scores than maximizing MI alone, particularly for small numbers k of selected features. The paper reports R2 means over train-test splits and shows feature-selection maps for k=1,...,25.
Significance. If the central claim were established, the paper would provide a useful practical demonstration of quantum annealing in an ML feature-selection pipeline, with a concrete real-world dataset and a sparse QUBO structure. The application of a hybrid annealer to an information-theoretic feature-selection objective is timely, and the idea that MI concentration governs whether CMI-based selection helps is an interesting and falsifiable prediction. However, the current evidence is not yet convincing: the QUBO formulation appears not to match the stated objective, solver optimality is not validated, and the statistical support is thin. The paper's reproducible-description value is limited by the absence of code or data release, but the feature-selection maps and direct comparison to MI-only selection are potentially useful if the formulation is corrected.
major comments (3)
- [Section II.B and III, solver validation] The QUBO mapping does not encode the objective in Eq. (7). Eq. (7) contains, for each unordered feature pair {i,j}, both MI(X_j;Y|X_i) and MI(X_i;Y|X_j). The paper sets Q_ij = -MI(X_j;Y|X_i) and then uses the standard upper-triangular QUBO form sum_{i<j} q_ij x_i x_j, so for a selected pair the objective receives only one of the two CMI terms, with the direction determined by feature ordering. This makes the optimized objective order-dependent and different from Eq. (7). The text nowhere states that the coefficients are symmetrized to -(MI(X_j;Y|X_i)+MI(X_i;Y|X_j)), and Fig. 3's note that only the upper triangular matrix is shown is consistent with one coefficient per pair. Because the central R2 comparison is intended to test feature sets maximizing Eq. (7), this is a load-bearing inconsistency. The authors should state explicitly which Q matrix was used, provide the Q matrix or code, and rerun or re-interpret the experiments if the executed objective was not Eq. (7).
- [Section III, Fig. 5] No evidence is provided that the Kerberos hybrid solver returns solutions close to the true optimum of the QUBO. Kerberos is heuristic, and the paper reports no optimality gap, no comparison to an exact solver, and no comparison to a classical QUBO solver on the same instances. The feature-selection maps in Fig. 4c/d and the R2 comparisons in Fig. 5 could reflect solver artifacts rather than the choice of MI versus CMI objective. Since the largest dataset is pre-pruned to 25 features, a brute-force or exact classical check for small k is feasible and should be reported. This is necessary to support the claim that the observed gaps are due to the objective rather than to the solver.
- [Section II.A and III] The statistical support for the main empirical claim is weak. For the less MI-concentrated Caterpillar-all dataset, the R2 results are based on only 15 train-test splits, no error bars are shown, and no significance test is reported. The text states that 'a statistically relevant gap according to the standard deviation' opens, but the standard deviation is not shown and no test is described. The claim that the improvement is 'dependent on the dimension of the selected feature space' is not quantified. The authors should report per-k means with error bars or confidence intervals, the number of splits, and a significance test (e.g., paired t-test or Wilcoxon across splits) to support the conclusion.
minor comments (4)
- The notation for mutual information is inconsistent: Eq. (5) defines MI(X;Y|Z) with the target denoted X, while Eq. (7) uses Y for the target and X_i for features. This makes the derivation harder to follow and should be harmonized.
- [Section II.B] The sentence 'The restriction that led to Eq. (7) for MI-based feature selection naturally lends itself to being reformulated as a QUBO' is vague; the specific conditional-independence assumption used to derive Eq. (7) from Eq. (5) should be stated more precisely before the QUBO reformulation.
- [Section II.B, Fig. 3] The caption of Fig. 3 says 'Only upper triangular matrix is shown' but does not say whether the matrix is symmetric; after clarifying the QUBO coefficients, the symmetry or asymmetry should be stated explicitly.
- [General] There are several typos and grammatical issues, e.g., 'remians' in the introduction and 'probalites' in Eq. (1). These should be corrected in a revision.
Circularity Check
No circular reasoning in the MIQUBO derivation or the MI-vs-CMI comparison.
full rationale
The paper's central claim is an empirical comparison: feature sets selected by maximizing Eq. (7) are evaluated by train/test SVM R2 (Eq. 15), which is independent of the selection objective. The QUBO coefficients are computed directly from MI and CMI estimates, and the selected bitstrings are then used as SVM inputs; no fitted parameter is renamed as a prediction. The self-citations (Ref. [12] for dataset provenance and Ref. [41] for the Ising model) are not load-bearing: the datasets are described independently in Section II.A, and the Ising model citation is a standard background reference. The approximation leading to Eq. (7) is stated explicitly as an assumption, not smuggled in. The lack of validation of the Kerberos solver against exact optima is a correctness or robustness concern, not circularity, because the R2 metric does not depend on the solver's objective. Similarly, the potential mismatch between Eq. (7) and the QUBO coefficients described in Section II.B would be an implementation error, not a circular reduction. No step in the derivation is equivalent to its own input by construction.
Assumptions & free parameters
free parameters (3)
- SVM hyperparameters gamma, C, epsilon =
gamma=1, C=1, epsilon=1e-3
- Number of pre-selected features for Caterpillar (all models) =
25
- Number of train-test splits =
100 (Cat-308), 15 (Cat-All)
assumptions (4)
- standard math Definitions of MI, entropy, and SVR dual formulation are standard and correctly applied.
- domain assumption Conditional independence approximation p(Fi|Fj;Fk) = p(Fi|Fk), restricting CMI to triples (Eq. 7).
- ad hoc to paper QUBO coefficients Qii = -MI(Xi;Y) and Qi,j = -MI(Xj;Y|Xi) exactly encode Eq. (7) under the solver's QUBO convention.
- domain assumption D-Wave Kerberos returns sufficiently optimal solutions to the QUBO.
Cite this review
Pith. "Pith review of Quantum Annealing based Feature Selection in Machine Learning." pith.science (2026). https://pith.science/paper/CLLNF33R
@misc{pith2026241119609,
author = {Pith},
title = {Pith review of: Quantum Annealing based Feature Selection in Machine Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/CLLNF33R}},
note = {Machine review of arXiv:2411.19609}
}
read the original abstract
Feature selection is crucial for enhancing the accuracy and efficiency of machine learning (ML) models. This work investigates the utility of quantum annealing for the feature selection process in an ML-pipeline, used for maximizing the mutual information (MI) or conditional mutual information (CMI) of the underlying feature space. Calculating the optimal set of features that maximize the MI or CMI is computationally intractable for large datasets on classical computers, even with approximative methods. This study employs a Mutual Information Quadratic Unconstrained Binary Optimization (MIQUBO) formulation, enabling its solution on a quantum annealer. We demonstrate the capability of this approach to identify the best feature combinations that maximize the MI or CMI. To showcase its real-world applicability, we solve the MIQUBO problem to forecast the prices of used excavators. Our results demonstrate that for datasets with a small MI concentration the MIQUBO approach can provide a significant improvement over MI-only based approaches, dependent on the dimension of the selected feature space.
Reference graph
Works this paper leans on
-
[1]
Quantum machine learning in feature Hilbert spaces
Maria Schuld and Nathan Killoran. “Quantum machine learning in feature Hilbert spaces”. In: Physical review letters 122.4 (2019), p. 040504
work page 2019
-
[2]
Quantum machine learning
Jacob Biamonte et al. “Quantum machine learning”. In: Nature 549.7671 (2017), pp. 195–202
2017
-
[3]
Unknown Element of Owning Costs - Impact of Residual Value
Gunnar Lucko, Michael C V orster, and Christine M Anderson-Cook. “Unknown Element of Owning Costs - Impact of Residual Value”. In: JCEMD4 133.1 (2007)
work page 2007
-
[4]
CASH-FLOW AND RESIDUAL V ALUE ANALYSIS FOR CONSTRUCTION EQUIP- MENT
Martin Chiteri. “CASH-FLOW AND RESIDUAL V ALUE ANALYSIS FOR CONSTRUCTION EQUIP- MENT”. MA thesis. University of Alberta, 2018
work page 2018
-
[5]
Maintenance cost and residual value predic- tion of heavy construction equipment
Yi Zong. “Maintenance cost and residual value predic- tion of heavy construction equipment”. MA thesis. Uni- versity of Alberta, 2017
work page 2017
-
[6]
Estimating residual value of heavy construction equipment using ensemble learning
Igor Miloševi ´c, Miloš Kova ˇcevi´c, and Predrag Petron- ijevi´c. “Estimating residual value of heavy construction equipment using ensemble learning”. In:JCEMD4 147.7 (2021)
work page 2021
-
[7]
A. Shehadeh et al. “Machine learning models for predict- ing the residual value of heavy construction equipment: An evaluation of modified decision tree, LightGBM, and XGBoost regression”. In: Automation in Construction 129 (2021), p. 103827
work page 2021
-
[8]
O. Alshboul et al. “Deep and machine learning ap- proaches for forecasting the residual value of heavy construction equipment: a management decision support model”. In: Engineering, Construction and Architectural Management (2021)
work page 2021
Show all 47 references
-
[9]
Benchmarking Automated Machine Learning Methods for Price Forecasting Applications
Horst Stühler. et al. “Benchmarking Automated Machine Learning Methods for Price Forecasting Applications”. In: Proceedings of the 12th International Conference on Data Science, Technology and Applications - DATA. IN- STICC. SciTePress, 2023, pp. 30–39.isbn: 978-989-758- 664-4...
2023 doi
-
[10]
Incremental search space construction for ma- chine learning pipeline synthesis
Marc-André Zöller, Tien-Dung Nguyen, and Marco F Huber. “Incremental search space construction for ma- chine learning pipeline synthesis”. In: Advances in Intel- ligent Data Analysis XIX. 2021
2021
-
[11]
Neural architecture search with reinforcement learning
Barret Zoph and Quoc V Le. “Neural architecture search with reinforcement learning”. In: arXiv preprint arXiv:1611.01578 (2016)
2016 arXiv
-
[12]
Evaluating Quantum Support Vector Regression Meth- ods for Price Forecasting Applications
Horst Stühler, Daniel Pranji ´c, and Christian Tutschku. “Evaluating Quantum Support Vector Regression Meth- ods for Price Forecasting Applications”. In:Proceedings of the 16th International Conference on Agents and Ar- tificial Intelligence. V ol. 3. INSTICC. SciTePress, 2024...
2024
-
[13]
Support vector machines
Ingo Steinwart and Andreas Christmann. Support vector machines. Springer Science & Business Media, 2008
2008
-
[14]
Power of data in quantum machine learning
Hsin-Yuan Huang et al. “Power of data in quantum machine learning”. In: Nature Communications 12.1 (2021), p. 2631
2021
-
[15]
Exponential concentration and untrainability in quantum kernel methods
Supanut Thanasilp et al. “Exponential concentration and untrainability in quantum kernel methods”. In: arXiv preprint arXiv:2208.11060 (2022)
2022 arXiv
-
[16]
Quantum annealing: A new method for minimizing multidimensional functions
Aleta Berk Finnila et al. “Quantum annealing: A new method for minimizing multidimensional functions”. In: Chemical physics letters 219.5-6 (1994), pp. 343–348
1994
-
[17]
QUBO formulations for training machine learning models
Prasanna Date, Davis Arthur, and Lauren Pusey- Nazzaro. “QUBO formulations for training machine learning models”. In: Scientific reports 11.1 (2021), p. 10029
2021
-
[18]
Support vector machines on the D- Wave quantum annealer
D. Willsch et al. “Support vector machines on the D- Wave quantum annealer”. In: Computer Physics Com- munications 248 (2020), p. 107006. issn: 0010-4655. doi: https : / / doi . org / 10 . 1016 / j . cpc . 2019 . 107006. url: https : / / www . sciencedirect . com / science/art...
2020
-
[19]
Mixed Quantum–Classical Method for Fraud Detection With Quantum Feature Se- lection
Michele Grossi et al. “Mixed Quantum–Classical Method for Fraud Detection With Quantum Feature Se- lection”. In: IEEE Transactions on Quantum Engineer- ing 3 (2022), pp. 1–12. doi: 10 . 1109 / TQE . 2022 . 3213474
2022
-
[20]
A re- view of feature selection methods with applications
Alan Jovi ´c, Karla Brki ´c, and Nikola Bogunovi ´c. “A re- view of feature selection methods with applications”. In: 2015 38th international convention on information and communication technology, electronics and microelec- tronics (MIPRO). Ieee. 2015, pp. 1200–1205
2015
-
[21]
D-Wave Ocean Soft- ware Documentation, [Online]
D-Wave Systems, Inc. D-Wave Ocean Soft- ware Documentation, [Online]. Available: https://docs.ocean.dwavesys.com. 2024
2024
-
[22]
Quantum computer based feature selection in machine learning
Gerhard Hellstern, Vanessa Dehn, and Martin Zaef- ferer. “Quantum computer based feature selection in machine learning”. In: IET Quantum Communication n/a.n/a (2024). doi: https : / / doi . org / 10 . 1049 / qtc2 . 12086 . eprint: https : / / ietresearch . onlinelibrary . wile...
2024
-
[23]
Breast Cancer Wisconsin (Diagnostic)
William Wolberg et al. Breast Cancer Wisconsin (Diagnostic). UCI Machine Learning Repository. https://doi.org/10.24432/C5DW2B. 1995
1995 doi
-
[24]
https://www.kaggle.com/datasets/wordsforthewise/lending- club. 2024
2024
-
[25]
Statlog (German Credit Data)
Hans Hofmann. Statlog (German Credit Data). UCI Machine Learning Repository. https://doi.org/10.24432/C5NC77. 1994
1994 doi
-
[26]
Machine learning and deep learn- ing for phishing email classification using one-hot en- coding
Sikha Bagui et al. “Machine learning and deep learn- ing for phishing email classification using one-hot en- coding”. In: Journal of Computer Science 17 (2021), pp. 610–623
2021
-
[27]
E fficient approximate so- lutions to mutual information based global feature selec- tion
Hemanth Venkateswara et al. “E fficient approximate so- lutions to mutual information based global feature selec- tion”. In: 2015 IEEE International Conference on Data Mining. IEEE. 2015, pp. 1009–1014. Preprint – Quantum Annealing based Feature Selection in Machine Learning 9
2015
-
[28]
A fast information- theoretic approximation of joint mutual information fea- ture selection
Heng Liu and Gregory Ditzler. “A fast information- theoretic approximation of joint mutual information fea- ture selection”. In: 2017 International Joint Conference on Neural Networks (IJCNN) . IEEE. 2017, pp. 4610– 4617
2017
-
[29]
E ffective global approaches for mutual information based feature selection
Xuan Vinh Nguyen et al. “E ffective global approaches for mutual information based feature selection”. In:Pro- ceedings of the 20th ACM SIGKDD International Con- ference on Knowledge Discovery and Data Mining . KDD’14. Association for Computing Machinery, 2014, 512–521. isbn: ...
2014
-
[30]
Quantum annealing in the transverse Ising model
Tadashi Kadowaki and Hidetoshi Nishimori. “Quantum annealing in the transverse Ising model”. In: (1998)
1998
-
[31]
Op- timization by Simulated Annealing
S. Kirkpatrick, C. D. Gelatt, and M. P. Vecchi. “Op- timization by Simulated Annealing”. In: Science 220 (4598 May 1983), pp. 671–680.issn: 00368075. doi: 10. 1126/SCIENCE.220.4598.671 . url: https://www. science.org/doi/10.1126/science.220.4598. 671
1983 doi
-
[32]
Theory of Quantum Annealing of an Ising Spin Glass
“Theory of Quantum Annealing of an Ising Spin Glass”. In: 78 (2001), p. 923. url: www . sciencemag . orgSCIENCEVOL
2001
-
[33]
Quantum annealing of the traveling-salesman prob- lem
Roman Martonak, Giuseppe E. Santoro, and Erio Tosatti. “Quantum annealing of the traveling-salesman prob- lem”. In: Physical Review E - Statistical Physics, Plas- mas, Fluids, and Related Interdisciplinary Topics 70 (5 Nov. 2004), p. 4. issn: 1063651X. doi: 10 . 1103 / PHYSREV...
2004
-
[34]
What is the Computational Value of Finite-Range Tunneling?
Vasil S Denchev et al. “What is the Computational Value of Finite-Range Tunneling?” In: (). doi: 10 . 1103 / PhysRevX.6.031015
-
[35]
Optimization by quantum annealing: Lessons from hard satisfiability problems
Demian A. Battaglia, Giuseppe E. Santoro, and Erio Tosatti. “Optimization by quantum annealing: Lessons from hard satisfiability problems”. In: Physical Review E - Statistical, Nonlinear, and Soft Matter Physics 71 (6 June 2005), p. 066707. issn: 15393755. doi: 10.1103/ PHYSRE...
2005
-
[36]
Deploying a quantum annealing processor to detect tree cover in aerial imagery of California
“Deploying a quantum annealing processor to detect tree cover in aerial imagery of California”. In: PLOS ONE 12 (2 Feb. 2017), e0172505. issn: 1932-6203. doi: 10. 1371 / JOURNAL . PONE . 0172505 . url: https : / / journals . plos . org / plosone / article ? id = 10 . 1371/jour...
2017
-
[37]
Tra ffic flow optimization using a quantum annealer
Florian Neukart et al. “Tra ffic flow optimization using a quantum annealer”. In: Frontiers in ICT 4 (DEC Dec. 2017), p. 301656. issn: 2297198X. doi: 10.3389/FICT. 2017.00029/BIBTEX
2017
-
[38]
Nonnegative /binary matrix fac- torization with a D-Wave quantum annealer
Daniel O’Malley et al. “Nonnegative /binary matrix fac- torization with a D-Wave quantum annealer”. In: PLoS ONE 13 (12 Apr. 2017).doi: 10.1371/journal.pone. 0206653. url: http : / / arxiv . org / abs / 1704 . 01605http : / / dx . doi . org / 10 . 1371 / journal . pone.0206653
2017 doi
-
[39]
Adiabatic Quantum Compu- tation and Quantum Annealing
Catherine C. McGeoch. “Adiabatic Quantum Compu- tation and Quantum Annealing”. In: (2014). doi: 10 . 1007/978- 3- 031- 02518- 1 . url: https://link. springer.com/10.1007/978-3-031-02518-1
2014 doi
-
[40]
Adiabatic quantum computation
“Adiabatic quantum computation”. In: Reviews of Mod- ern Physics 90 (1 Jan. 2018), p. 015002. issn: 15390756. doi: 10 . 1103 / REVMODPHYS . 90 . 015002 / FIGURES / 11/MEDIUM. url: https://journals.aps.org/rmp/ abstract/10.1103/RevModPhys.90.015002
2018 doi
-
[41]
Fluctuating interface with a pinning po- tential
Daniel Pranji ´c. “Fluctuating interface with a pinning po- tential”. PhD thesis. Universität Stuttgart Stuttgart, 2019
2019
-
[42]
On the theory of the Ising model of ferromagnetism
Gordon F Newell and Elliott W Montroll. “On the theory of the Ising model of ferromagnetism”. In: Reviews of Modern Physics 25.2 (1953), p. 353
1953
-
[43]
Multistart tabu search strategies for the unconstrained binary quadratic optimization problem
Gintaras Palubeckis. “Multistart tabu search strategies for the unconstrained binary quadratic optimization problem”. In: Annals of Operations Research 131 (1- 4 Oct. 2004), pp. 259–282. issn: 02545330. doi: 10 . 1023 / B : ANOR . 0000039522 . 58036 . 68 / METRICS. url: https:...
2004
-
[44]
LIBSVM: a li- brary for support vector machines
Chih-Chung Chang and Chih-Jen Lin. “LIBSVM: a li- brary for support vector machines”. In: ACM transac- tions on intelligent systems and technology (TIST) 2.3 (2011), pp. 1–27
2011
-
[45]
New support vector algo- rithms
Bernhard Schölkopf et al. “New support vector algo- rithms”. In: Neural computation 12.5 (2000), pp. 1207– 1245
2000
-
[46]
Support vector re- gression model for the prediction of loadability mar- gin of a power system
MV Suganyadevi and CK Babulal. “Support vector re- gression model for the prediction of loadability mar- gin of a power system”. In: Applied Soft Computing 24 (2014), pp. 304–315
2014
-
[47]
Information theory
Robert B Ash. Information theory. Courier Corporation, 2012
2012
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.