REVIEW 4 major objections 5 minor 42 references
Hadamard-Riemannian Optimization for Margin-Variance Ensemble
T0 review · 4 major / 5 minor · reviewed 2026-08-04 · deepseek-v4-flash
Pith's one-line read An ensemble loss that penalizes margin variance, optimized on the unit sphere via Riemannian gradients, is claimed to exceed the accuracy of 100-tree random forests with only 10 learners.
desk verdict A margin-variance ensemble idea spoiled by a false sphere-simplex equivalence and unconvincing experiments. 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 the Hadamard parameterization w = z ⊙ z, which maps the unit sphere ∥z∥=1 onto the probability simplex w≥0, Σw_i=1. Combined with Riemannian gradient descent on the sphere—projecting the Euclidean gradient onto the tangent space and retracting by normalization—this removes the O(n log n) simplex projection step. The margin is smoothed with log-sum-exp, and the loss combines negative expected margin with a variance term; the paper proves the loss is Lipschitz continuous and convex as a function of the margin vector, and states a theorem (Theorem 1) asserting that the simplex and sphere formulations have equivalent first- and second-order KKT conditions.
What would settle it
Take a two-class problem with two base classifiers and define the margin so that the optimal weight is on a simplex boundary (e.g., one classifier dominates). Run Riemannian gradient descent from an initialization that approaches this boundary; if it converges to a point with a zero coordinate that does not satisfy the simplex KKT conditions (e.g., the negative margin gradient still points along the boundary), the claimed equivalence fails. More directly, compare the set of KKT points of min f(w) over the simplex with those of min f(z⊙z) over the sphere for a simple quadratic f; any sphere cri
Extended reading notes
Core claim
The central claim is that minimizing L(W) = -1/n Σ m_i + λ Var(m) over ensemble weights, where m_i is the log-sum-exp smoothed margin of instance i, produces more accurate and less overfit ensembles than maximizing the expected margin alone. The paper argues this minimization can be performed efficiently by setting w = z ⊙ z (Hadamard parameterization) and running Riemannian gradient descent on the unit sphere ∥z∥=1, eliminating simplex projections. Experiments on eight datasets show the method achieves the highest test accuracy on most of them, with particularly strong results on high-dimensional data, and with only 10 learners exceeds the accuracy of 100-tree random forests.
Load-bearing premise
The proof that optimizing on the sphere is equivalent to optimizing on the simplex assumes that zero-weight boundary points impose no extra constraints in the sphere formulation, but simplex KKT conditions do constrain such points, so spurious sphere critical points could exist.
Editorial extensions
If this is right
- Small ensembles of 10 learners can match or exceed the accuracy of much larger random forests, lowering inference cost.
- Including margin variance in the loss reduces overfitting and improves generalization, especially on high-dimensional or noisy data.
- The Hadamard reparameterization makes weight optimization faster by avoiding simplex projections, with reported speedups up to roughly 59%.
- The method is data-efficient: competitive accuracy is achieved with limited training samples.
- The regularization parameter λ controls the accuracy–generalization gap tradeoff, with a moderate value improving both.
Reading between the lines
- The equivalence theorem's boundary case is delicate: when a coordinate z_i = 0, the sphere problem may have critical points that do not correspond to valid simplex KKT points, so the method's success may depend on the optimum being interior or on the retraction avoiding such spurious points.
- The convexity result holds in margin space, not in weight space after the Hadamard parameterization, so the spherical optimization landscape may still contain local minima; a direct test would be to compare solutions from multiple random initializations.
- The same Hadamard-plus-Riemannian trick could be applied to other simplex-constrained objectives (e.g., portfolio optimization, mixture weights) whenever the objective's gradient can be cheaply evaluated.
- The paper uses a fixed train/test split and a single random seed; measuring variance across seeds and folds would test whether the reported accuracy gaps are stable.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes an ensemble-weight learning method that minimizes a loss combining the negative average margin and the margin variance over training samples. To avoid simplex projections, it reparameterizes the weights as w = z ⊙ z on the unit sphere and applies Riemannian gradient descent. The paper claims three theoretical results (simplex-sphere KKT equivalence, Lipschitz continuity, and convexity in margin space) and reports experiments on eight benchmark datasets in which the proposed ensemble allegedly outperforms random forests, SVM, XGBoost, and LightGBM with shorter runtimes. I find that the central optimization theorem is false as stated, the convexity claim does not apply to the actual optimization landscape, the Lipschitz theorem is internally inconsistent, and the headline experimental comparison selects the regularization parameter using test accuracy. These issues undermine the paper's main claims.
Significance. The margin-variance loss and the Hadamard-sphere reparameterization are reasonable ideas, and the runtime comparison in Table II suggests potential practical efficiency. If the theory were correct and the experiments were properly controlled, the paper could make a useful contribution to margin-based ensemble learning. However, the paper's theoretical foundation fails exactly where it is needed: the claimed equivalence between the simplex and sphere KKT systems is false at boundary points, so the optimization guarantee for Algorithm 1 is unsupported. The empirical claim of state-of-the-art accuracy is also compromised by test-set-based model selection. The paper contains no code, no significance tests, and no reproducible experimental protocol. In its current form the contribution is not established.
major comments (4)
- [Section III, Theorem 1 (Eqs. (7)-(9))] The first-order equivalence is false at boundary points. For z_i=0, sphere stationarity 2z_i(∇f_i(w)+γ)=0 is vacuous, whereas simplex KKT requires μ_i=∇f_i(w)+λ≥0 when w_i=0 (Eq. (8)). Concrete counterexample: m=3, f(w)=-(5w_1+2w_2+2w_3), z=(0,1/√2,1/√2), so w=(0,1/2,1/2). With γ=2, the sphere KKT condition holds at this z. But the corresponding simplex KKT point would require λ=2 from the active coordinates, giving μ_1=-3<0, violating Eq. (8). Thus a sphere critical point need not project to a simplex KKT point. Since Algorithm 1 and the optimization rationale in Section III rely on this equivalence, the paper does not establish that Riemannian gradient descent solves the stated margin-variance problem. The proof's assertion that the sphere imposes no additional condition when w_i=0 is exactly the error; the theorem needs a correct treatment of boundary complementarity and second-order
- [Theorem 2, Eq. (13) vs. proof] The Lipschitz constant stated in Eq. (13) is M_g(1+√c)(1+4λM_m), but the proof concludes with L=3M_g(1+4λM_m) in Eq. (20). The factor (1+√c) is never derived. Moreover, the bound ∥G_i^T∥_2 ≤ M_g used before Eq. (17) does not follow from the column-wise assumption |g_k(x_i)|_2 ≤ M_g; the operator norm can be as large as √m M_g or √c M_g depending on the matrix dimensions. The theorem is therefore not proved as stated. This is a formal gap in the theoretical claims, even if less central than Theorem 1.
- [Section III, Theorem 3] The proof shows that L is convex as a function of the margin vector m, but this does not imply a benign landscape in the weight space W. The margin m_i in Eq. (4) is a concave (not affine) function of W because of the negative log-sum-exp term. Convexity is not preserved under composition with a concave map, so the statement that there is 'only a single global minimum without any local minima' does not follow. Indeed, the counterexample to Theorem 1 shows that the sphere problem can have stationary points that are not KKT points of the simplex problem. This claim should be corrected or removed.
- [Section IV-A and Table I] The 'Our-Bestλ' column selects λ per dataset, but no validation split is described; the text only mentions an 80:20 train-test split. If λ is chosen by maximizing test accuracy, the comparison is biased and the claim that the method 'consistently outperforms' baselines is not supported. The λ=0 row is more honest but does not by itself demonstrate the benefit of margin variance. In addition, the number of base learners is not specified in the experimental setup (the conclusion mentions 10 learners without a corresponding table or paragraph), no standard deviations or repeated splits are reported, and the baseline tuning procedure is not described.
minor comments (5)
- [Eq. (2)] The max in Eq. (2) lacks a subscript j; as written it is ambiguous which dimension is maximized.
- [Section III, complexity claim] The text says simplex projection has O(n log n) complexity, but projection onto the m-dimensional simplex costs O(m log m), where m is the number of learners, not the number of samples n. The algorithmic complexity statements should use consistent notation.
- [Theorem 2 proof] Several bounds in the proof are loose or unexplained, e.g., ∥∇s_i m_i∥_2 ≤ 3 in Eq. (16). Constants involving c and m should be made explicit, and the proof should match the statement.
- [References] Reference [26] already studies the Hadamard parametrization from simplex to sphere. The paper should position its contribution relative to that work and avoid re-deriving known facts without the correct conditions.
- [Figures] Figure 1 shows qualitative decision boundaries but is not connected to a quantitative claim. Figure 2 and Figure 3 would benefit from error bars or repeated runs to support the generalization and sensitivity statements.
Circularity Check
No significant circularity: the derivation of the loss, the Hadamard reparameterization, and the Riemannian optimization is self-contained. The main flagged issues are a test-set-selected hyperparameter and a flawed boundary argument in Theorem 1, both soundness/correctness concerns rather than circular reductions.
full rationale
The paper's mathematical derivation is not circular. The loss function L(W) in Eq. (5) is defined directly from the smoothed margin m_i, and the variance term is part of the objective rather than a conclusion imported into the optimization. The Hadamard reparameterization w = z⊙z is a genuine change of variables: for ||z||=1, w lies in the probability simplex, so the sphere problem is a reparameterization of the same objective and not an assumption of the desired result. The convergence- and regularity-related theorems (Lipschitz continuity, convexity in margin space) are proven from the explicit definitions rather than assumed. The paper does not rely on load-bearing self-citations; the cited Hadamard-parametrization and KKT-manifold results [26]-[28] are external prior work. The two substantive concerns are non-circular. First, Table I reports 'Our-Bestλ' per dataset, and the setup mentions only an 80:20 train-test split with no validation set; if λ was selected using test accuracy, the comparison between 'Our-Bestλ' and 'Our-λ=0' is a selection-bias artifact rather than independent evidence that margin variance improves generalization. This is an empirical soundness issue, not a definitional circularity. Second, Theorem 1's proof omits the simplex complementarity condition μ_i ≥ 0 on boundary coordinates: the statement 'When w_i=0: The sphere problem imposes no additional condition' ignores that the simplex KKT conditions require ∇f(w)_i + λ ≥ 0 at w_i=0. The sphere problem can therefore admit spurious boundary critical points, so the claimed equivalence is mathematically questionable. That is a correctness/proof-gap issue, not a case where a conclusion is equivalent to its input by construction. Weighing these, the derivation chain itself is self-contained, so the circularity score is low.
Assumptions & free parameters
free parameters (5)
- lambda, variance penalty weight =
Per dataset on test accuracy: BASEHOCK 500, Breast 0.1, Chess 40, MNIST 20, Jaffe 0.01, Pathbased 1.0, RELATHE 50, Wine
- alpha, log-sum-exp temperature =
Not reported
- learning rate schedule {alpha_t} =
Not reported
- number of base learners m =
10 (stated in conclusion only)
- tree depth for baselines and ensemble =
7
assumptions (7)
- standard math Log-sum-exp is a valid smoothing of the max function for the margin (Eq. 3)
- standard math Cauchy-Schwarz implies PSD-ness of the variance Hessian (Eq. 23)
- domain assumption Classifiers output real-valued score vectors g_k(x) and the ensemble decision is argmax of weighted scores
- domain assumption Labels are one-hot encoded and the problem is c-class
- ad hoc to paper The simplex and sphere KKT systems are equivalent including boundary points z_i = 0
- ad hoc to paper Convexity of the loss in margin space implies a benign landscape for gradient descent in W
- ad hoc to paper Column-wise score bounds |g_k(x_i)|_2 <= M_g imply the operator norm bound ||G_i^T||_2 <= M_g
Cite this review
Pith. "Pith review of Hadamard-Riemannian Optimization for Margin-Variance Ensemble." pith.science (2026). https://pith.science/paper/NL27BYJN
@misc{pith2026250910189,
author = {Pith},
title = {Pith review of: Hadamard-Riemannian Optimization for Margin-Variance Ensemble},
year = {2026},
howpublished = {\url{https://pith.science/paper/NL27BYJN}},
note = {Machine review of arXiv:2509.10189}
}
read the original abstract
Ensemble learning has been widely recognized as a pivotal technique for boosting predictive performance by combining multiple base models. Nevertheless, conventional margin-based ensemble methods predominantly focus on maximizing the expected margin while neglecting the critical role of margin variance, which inherently restricts the generalization capability of the model and heightens its vulnerability to overfitting, particularly in noisy or imbalanced datasets. Additionally, the conventional approach of optimizing ensemble weights within the probability simplex often introduces computational inefficiency and scalability challenges, complicating its application to large-scale problems. To tackle these limitations, this paper introduces a novel ensemble learning framework that explicitly incorporates margin variance into the loss function. Our method jointly optimizes the negative expected margin and its variance, leading to enhanced robustness and improved generalization performance. Moreover, by reparameterizing the ensemble weights onto the unit sphere, we substantially simplify the optimization process and improve computational efficiency. Extensive experiments conducted on multiple benchmark datasets demonstrate that the proposed approach consistently outperforms traditional margin-based ensemble techniques, underscoring its effectiveness and practical utility.
Figures
Reference graph
Works this paper leans on
-
[1]
A survey on ensemble learning,
X. Dong, Z. Yu, W. Cao, Y . Shi, and Q. Ma, “A survey on ensemble learning,”Frontiers of Computer Science, vol. 14, no. 2, pp. 241–258, Apr. 2020
2020
-
[2]
Polikar,Ensemble Learning
R. Polikar,Ensemble Learning. New York, NY: Springer New York, 2012, pp. 1–34
2012
-
[3]
On diversity and accuracy of homogeneous and heterogeneous ensembles,
S. Bian and W. Wang, “On diversity and accuracy of homogeneous and heterogeneous ensembles,”International Journal of Hybrid Intelligent Systems, vol. 4, no. 2, pp. 103–128, Jun. 2007
2007
-
[4]
Random Forests,
L. Breiman, “Random Forests,”Machine Learning, vol. 45, no. 1, pp. 5–32, Oct. 2001
2001
-
[5]
Cutler, D
A. Cutler, D. R. Cutler, and J. R. Stevens,Random Forests. New York, NY: Springer New York, 2012, pp. 157–175
2012
-
[6]
A comparison of random forest variable selection methods for classification prediction modeling,
J. L. Speiser, M. E. Miller, J. Tooze, and E. Ip, “A comparison of random forest variable selection methods for classification prediction modeling,” Expert Systems with Applications, vol. 134, pp. 93–101, 2019
2019
-
[7]
A comparative analysis of gradient boosting algorithms,
C. Bent ´ejac, A. Cs ¨org˝o, and G. Mart ´ınez-Mu˜noz, “A comparative analysis of gradient boosting algorithms,”Artificial Intelligence Review, vol. 54, no. 3, pp. 1937–1967, Mar. 2021
1937
-
[8]
Acceler- ating gradient boosting machines,
H. Lu, S. P. Karimireddy, N. Ponomareva, and V . Mirrokni, “Acceler- ating gradient boosting machines,” inProceedings of the Twenty Third International Conference on Artificial Intelligence and Statistics, ser. Proceedings of Machine Learning Research, S. Chiappa and R. Calandra, Eds., vol. 108. PMLR, 26–28 Aug 2020, pp. 516–526
2020
Show all 42 references
-
[9]
A margin-maximizing fine- grained ensemble method,
J. Yuan, H. Chen, R. Luo, and F. Nie, “A margin-maximizing fine- grained ensemble method,” inICASSP 2025 - 2025 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 2025, pp. 1–5
2025
-
[10]
Variance-reduced methods for machine learning,
R. M. Gower, M. Schmidt, F. Bach, and P. Richt ´arik, “Variance-reduced methods for machine learning,”Proceedings of the IEEE, vol. 108, no. 11, pp. 1968–1983, 2020
1968
-
[11]
Achieving more with less: A tensor-optimization-powered ensemble method,
J. Yuan, W. Jiang, Z. Cao, F. Xie, R. Wang, F. Nie, and Y . Yuan, “Achieving more with less: A tensor-optimization-powered ensemble method,”arXiv preprint arXiv:2408.02936, 2024
2024 arXiv
-
[12]
Large dimensional analysis of general margin based classification methods,
H. Huang and Q. Yang, “Large dimensional analysis of general margin based classification methods,”Journal of Statistical Mechanics: Theory and Experiment, vol. 2021, no. 11, p. 113401, Nov. 2021
2021
-
[13]
Margin Allocation and Tradeoff in Complex Systems Design and Optimization,
M. D. Guenov, X. Chen, A. Molina-Crist ´obal, A. Riaz, A. S. J. Van Heerden, and M. Padulo, “Margin Allocation and Tradeoff in Complex Systems Design and Optimization,”AIAA Journal, vol. 56, no. 7, pp. 2887–2902, Jul. 2018
2018
-
[14]
Max-margin action prediction machine,
Y . Kong and Y . Fu, “Max-margin action prediction machine,”IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 38, no. 9, pp. 1844–1858, 2016
2016
-
[15]
Margin maximization for robust classifi- cation using deep learning,
A. Matyasko and L.-P. Chau, “Margin maximization for robust classifi- cation using deep learning,” in2017 International Joint Conference on Neural Networks (IJCNN), 2017, pp. 300–307
2017
-
[16]
Maximizing margin quality and quantity,
Y . Bei and P. Hong, “Maximizing margin quality and quantity,” in2015 IEEE 25th International Workshop on Machine Learning for Signal Processing (MLSP), 2015, pp. 1–6
2015
-
[17]
An Overview of Overfitting and its Solutions,
X. Ying, “An Overview of Overfitting and its Solutions,”Journal of Physics: Conference Series, vol. 1168, p. 022022, Feb. 2019
2019
-
[18]
Projection onto the probability simplex: An efficient algorithm with a simple proof, and an application,
W. Wang and M. A. Carreira-Perpi ˜n´an, “Projection onto the probability simplex: An efficient algorithm with a simple proof, and an application,” 2013
2013
-
[19]
l 0 gradient projection,
S. Ono, “l 0 gradient projection,”IEEE Transactions on Image Process- ing, vol. 26, no. 4, pp. 1554–1564, 2017
2017
-
[20]
A survey on large- scale machine learning,
M. Wang, W. Fu, X. He, S. Hao, and X. Wu, “A survey on large- scale machine learning,”IEEE Transactions on Knowledge and Data Engineering, vol. 34, no. 6, pp. 2574–2594, 2022
2022
-
[21]
Identifying mislabeled data using the area under the margin ranking,
G. Pleiss, T. Zhang, E. Elenberg, and K. Q. Weinberger, “Identifying mislabeled data using the area under the margin ranking,” inAdvances in Neural Information Processing Systems, H. Larochelle, M. Ranzato, R. Hadsell, M. Balcan, and H. Lin, Eds., vol. 33. Curran Associates, I...
2020
-
[22]
Log-sum-exp optimization based on continu- ous piecewise linearization techniques,
X. Xi, J. Xu, and Y . Lou, “Log-sum-exp optimization based on continu- ous piecewise linearization techniques,” in2020 IEEE 16th International Conference on Control & Automation (ICCA), 2020, pp. 600–605
2020
-
[23]
Cooperation of experts: Fusing heterogeneous information with large margin,
S. Wang, S. Huang, J. Yuan, Z. Shen, and Z. Kang, “Cooperation of experts: Fusing heterogeneous information with large margin,”arXiv preprint arXiv:2505.20853, 2025
2025 arXiv
-
[24]
A mean-variance optimization algorithm,
I. Erlich, G. K. Venayagamoorthy, and N. Worawat, “A mean-variance optimization algorithm,” inIEEE Congress on Evolutionary Computa- tion, 2010, pp. 1–6
2010
-
[25]
On three concepts in robust design optimization: absolute robustness, relative robustness, and less variance,
Y . Kanno, “On three concepts in robust design optimization: absolute robustness, relative robustness, and less variance,”Structural and Mul- tidisciplinary Optimization, vol. 62, no. 2, pp. 979–1000, Aug. 2020
2020
-
[26]
From the simplex to the sphere: faster constrained optimization using the Hadamard parametrization,
Q. Li, D. McKenzie, and W. Yin, “From the simplex to the sphere: faster constrained optimization using the Hadamard parametrization,” Information and Inference: A Journal of the IMA, vol. 12, no. 3, pp. 1898–1937, Apr. 2023
1937
-
[27]
The KKT optimality conditions for optimization problem with interval-valued objective function on Hadamard manifolds,
S.-l. Chen, “The KKT optimality conditions for optimization problem with interval-valued objective function on Hadamard manifolds,”Opti- mization, vol. 71, no. 3, pp. 613–632, Mar. 2022
2022
-
[28]
Intrinsic Formulation of KKT Conditions and Constraint Qualifications on Smooth Manifolds,
R. Bergmann and R. Herzog, “Intrinsic Formulation of KKT Conditions and Constraint Qualifications on Smooth Manifolds,”SIAM Journal on Optimization, vol. 29, no. 4, pp. 2423–2444, Jan. 2019
2019
-
[29]
Optimization Techniques on Riemannian Manifolds,
S. T. Smith, “Optimization Techniques on Riemannian Manifolds,” 2014
2014
-
[30]
Riemannian optimization on relaxed indicator matrix manifold,
J. Yuan, F. Xie, F. Nie, and X. Li, “Riemannian optimization on relaxed indicator matrix manifold,”arXiv preprint arXiv:2503.20505, 2025
2025 arXiv
-
[31]
Projection-like Retractions on Matrix Mani- folds,
P.-A. Absil and J. Malick, “Projection-like Retractions on Matrix Mani- folds,”SIAM Journal on Optimization, vol. 22, no. 1, pp. 135–158, Jan. 2012
2012
-
[32]
Global optimization of Lipschitz func- tions,
C. Malherbe and N. Vayatis, “Global optimization of Lipschitz func- tions,” inProceedings of the 34th International Conference on Machine Learning, ser. Proceedings of Machine Learning Research, D. Precup and Y . W. Teh, Eds., vol. 70. PMLR, 06–11 Aug 2017, pp. 2314– 2323
2017
-
[33]
Constrained, Global Optimization of Unknown Functions with Lipschitz Continuous Gradients,
A. P. Vinod, A. Israel, and U. Topcu, “Constrained, Global Optimization of Unknown Functions with Lipschitz Continuous Gradients,”SIAM Journal on Optimization, vol. 32, no. 2, pp. 1239–1264, Jun. 2022
2022
-
[34]
Large margin classifiers based on convex class models,
H. Cevikalp and B. Triggs, “Large margin classifiers based on convex class models,” in2009 IEEE 12th International Conference on Computer Vision Workshops, ICCV Workshops, 2009, pp. 101–108
2009
-
[35]
Path-based clustering for grouping of smooth curves and texture segmentation,
B. Fischer and J. Buhmann, “Path-based clustering for grouping of smooth curves and texture segmentation,”IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 25, no. 4, pp. 513–518, 2003
2003
-
[36]
A Generalized Deep Learning Clustering Algorithm Based on Non- Negative Matrix Factorization,
D. Wang, T. Li, P. Deng, F. Zhang, W. Huang, P. Zhang, and J. Liu, “A Generalized Deep Learning Clustering Algorithm Based on Non- Negative Matrix Factorization,”ACM Transactions on Knowledge Dis- covery from Data, vol. 17, no. 7, pp. 1–20, Aug. 2023
2023
-
[37]
Addressing challenging problems using optimized deep learning classification algorithms on the mnist dataset,
O. S. Salman and A. S. Salman, “Addressing challenging problems using optimized deep learning classification algorithms on the mnist dataset,” inAdvances in Information and Communication, K. Arai, Ed. Cham: Springer International Publishing, 2022, pp. 247–260
2022
-
[38]
Face recognition under varying expressions and illumination using particle swarm opti- mization,
S. A. Khan, M. Ishtiaq, M. Nazir, and M. Shaheen, “Face recognition under varying expressions and illumination using particle swarm opti- mization,”Journal of Computational Science, vol. 28, pp. 94–100, 2018
2018
-
[39]
M. J. Wooldridge, J. Dy, S. Natarajan, and Association for the Advance- ment of Artificial Intelligence, Eds.,Thirty-Eighth AAAI Conference on Artificial Intelligence, Thirty-Sixth Conference on Innovative Applica- tions of Artificial Intelligence, Fourteenth Symposium on Educ...
2024
-
[40]
Washington, DC, USA: AAAI Press, 2024
——,Thirty-Eighth AAAI Conference on Artificial Intelligence, Thirty- Sixth Conference on Innovative Applications of Artificial Intelligence, Fourteenth Symposium on Educational Advances in Artificial Intelli- gence: February 20-27, 2024, Vancouver, Canada. Washington, DC, USA:...
2024
-
[41]
A comprehensive evaluation of various sensitivity analysis methods: A case study with a hydrological model,
Y . Gan, Q. Duan, W. Gong, C. Tong, Y . Sun, W. Chu, A. Ye, C. Miao, and Z. Di, “A comprehensive evaluation of various sensitivity analysis methods: A case study with a hydrological model,”Environmental Modelling & Software, vol. 51, pp. 269–285, 2014
2014
-
[42]
Over- fitting, Model Tuning, and Evaluation of Prediction Performance,
O. A. Montesinos L ´opez, A. Montesinos L ´opez, and J. Crossa, “Over- fitting, Model Tuning, and Evaluation of Prediction Performance,” in Multivariate Statistical Machine Learning Methods for Genomic Pre- diction. Cham: Springer International Publishing, 2022, pp. 109–139
2022
Reviewed August 4, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.