Pith. sign in

REVIEW 3 major objections 6 minor 67 references

ODTE -- An ensemble of multi-class SVM-based oblique decision trees

T0 review · 3 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash

Pith's one-line read ODTE, a bagging ensemble of SVM-based oblique decision trees, claims top accuracy and more compact trees than competing oblique ensembles and state-of-the-art classifiers on 49 datasets.

desk verdict Default results are honestly modest; the tuned-significance claim rests on an asymmetric and possibly leaky tuning protocol. read the letter →

arxiv 2411.13376 v2 pith:C2RF4ZD5 submitted 2024-11-20 cs.LG

classification cs.LG
keywords obliquedecisiontreessupportvectormachinesensemblelearningbaggingmulticlassclassificationone-vs-oneone-vs-resthyperparametertuning
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

The paper claims that a bagging ensemble of oblique decision trees with SVM-learned splits can outrank both specialized oblique-tree ensembles and general-purpose classifiers on tabular data. The base algorithm, STree, handles multi-class problems without clustering labels into artificial binary groups: at each node it trains several one-vs-one or one-vs-rest SVMs and keeps the single SVM whose induced split most reduces class impurity. On 49 datasets, the default ensemble ODTE posts the highest average accuracy (0.8391) and best average rank (3.88) among ten compared methods; the tuned version ODTET (rank 1.35) is statistically significantly better than all three tuned competitors after correction for multiple comparisons. STree's trees are also substantially more compact than the competitors' trees. If the tuned comparison is fair, the method is a strong, easily tunable option for structured-data classification.

What carries the argument

The load-bearing object is STree's node-level model selection. At a node with $k'$ classes, the algorithm enumerates either $r = k'(k'-1)/2$ one-vs-one SVM problems or $k'$ one-vs-rest problems, evaluates each learned SVM by the weighted impurity of the binary partition it induces, $$b^* = \arg\min_j \frac{|D'_+|}{|D'|} I(Y,D'_+) + \frac{|D'_-|}{|D'|} I(Y,D'_-),$$ and stores only the selected model. This selection turns the multi-class problem into a sequence of binary SVM splits without external clustering; bagging over many such trees produces the ensemble.

What would settle it

Re-run the ten-times five-fold cross-validation with the same ten seeds, giving each tuned baseline a grid search over the same hyperparameter ranges and number of configurations as ODTET. If ODTET no longer holds the best average rank or the adjusted post-hoc p-values climb above $\alpha = 0.05$, the paper's central superiority claim is falsified.

Watch

Extended reading notes

Core claim

The central discovery is a mechanism for building oblique trees that natively handle multi-class targets. Instead of reducing each node's data to a binary problem by grouping classes, STree fits one SVM for every one-vs-one pair (or every class versus the rest) and chooses the model whose partition minimizes weighted Shannon entropy. The selected hyperplane becomes the node test; recursion continues on the two sides. Wrapped in bagging with 100 trees, this yields ODTE. In the paper's 49-dataset, ten-times five-fold cross-validation study, ODTE has the best default mean accuracy and rank, and after per-dataset grid-search tuning, ODTET's superiority over the three tuned twin-bounded-SVM oblique competitors is statistically significant; normalized average tree size is 1.00 for ODTE versus 2.66 to 11.73 for its oblique competitors.

Load-bearing premise

The tuned comparison assumes that ODTET's grid search and the baselines' author-chosen hyperparameters represent equally thorough tuning; if ODTET received a more favorable search, the statistically significant tuned ranking would reflect tuning asymmetry rather than algorithm quality.

Editorial extensions

If this is right

  • In the tuned scenario, ODTET's rank of 1.35 beats all three tuned oblique competitors, and the adjusted post-hoc comparisons reject equivalence at $\alpha = 0.05$.
  • In the default scenario, ODTE has the best average accuracy and rank but is statistically significantly better only than XGBoost and TBRoF; against most other defaults the edge is not significant.
  • STree handles multi-class targets directly, so practitioners do not need to cluster classes into artificial binary groups before building oblique trees.
  • ODTE trees are the most compact among the compared oblique-tree methods, with normalized average size 1.00 versus 2.66 to 11.73 for competitors.
  • Both ODTE and STree are implemented as standard machine-learning library classifiers, so the method can be adopted and tuned with familiar tooling.

Reading between the lines

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

  • Because the default ODTE is not statistically distinguishable from most default competitors, the strongest claim rests on the tuned comparison; an equal-tuning comparison against RandomForest and XGBoost would reveal whether the margin is intrinsic to the algorithm or driven by tuning procedure.
  • STree's training cost scales with the number of classes: the one-vs-one strategy trains $O(k'^2)$ SVMs per node, so for datasets with many labels the one-vs-rest variant may be a substantially cheaper alternative that the paper does not systematically explore.
  • The reported compactness of ODTE trees likely translates into faster inference and a smaller memory footprint, but the paper reports tree size rather than measured inference latency; a latency benchmark is a natural extension.
  • The node-level selection of a single best SVM can be viewed as a greedy search over a restricted hypothesis space; combining it with random feature subspaces, as in Random Forest, is a testable direction the paper lists for future work.
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

3 major / 6 minor

Summary. The paper proposes ODTE, a bagging ensemble of oblique decision trees, and STree, a single oblique tree whose splits are SVM classifiers selected via one-vs-one or one-vs-rest multiclass embeddings. The method is evaluated on 49 datasets against several oblique-tree ensembles and standard classifiers under 10x5 cross-validation. In the default configuration, ODTE obtains the best average accuracy (0.8391) and best Friedman rank (3.88), though Holm post-hoc tests show significance only against XGBoost and TBRoF. In the tuned configuration, ODTET has rank 1.35 and differs significantly from all tuned baselines. The paper also reports that ODTE trees are substantially more compact than competitors, and it releases code and datasets for reproducibility.

Significance. If the empirical claims hold, the contribution is a useful, practically integrated oblique-tree ensemble with a simple multiclass handling scheme and a compact-tree property. The paper deserves credit for a standard evaluation protocol (10x5cv with shared seeds, Friedman plus Holm post hoc), a large benchmark, and public code and data. The default-setting results are reported honestly, including non-significant comparisons. The load-bearing strength of the paper, however, is the tuned comparison, and that part rests on an incompletely specified and asymmetric tuning protocol, which currently prevents the reader from interpreting the Holm-significant results as evidence of algorithmic superiority. The compactness result is interesting but is presented without statistical testing.

major comments (3)
  1. [Section 4.2 and Table 4] The manuscript does not state whether the gridsearch for ODTET hyperparameters was nested inside each 10x5CV fold or performed on the full dataset before cross-validation. Since Table 4 reports 10x5CV accuracy on the same 49 datasets, any full-data hyperparameter selection would leak test-fold information and bias ODTET's accuracy, rank, and Holm p-values. The authors should specify the exact selection protocol; if selection used full datasets, the tuned comparison must be rerun with nested or fold-specific tuning.
  2. [Section 4.2 and Table 6] The tuning effort is asymmetric across algorithms: ODTET receives a fresh gridsearch over STree's hyperparameters per dataset, while TBRaFT, TBRoFT, and TBRRoFT reuse hyperparameter values selected by the original authors in their provided code. No search budget, search space, or model-selection criterion is reported, so the Holm p-values in Table 6 do not establish that ODTET dominates these algorithms as algorithms. A matched tuning protocol, or at least a sensitivity analysis with a common hyperparameter budget, is needed to support the 'significant performance gains when hyperparameters are carefully tuned' claim.
  3. [Section 4.4 and Table 5] In the default setting, ODTE's rank advantage over TBRRoF is 3.88 versus 3.95 with Holm p = 1.0, and ODTE is not significantly better than most baselines; only XGBoost and TBRoF are clearly outperformed. The abstract's phrasing 'ranks consistently above its competitors' is defensible as a rank statement, but the conclusion in Section 5 that ODTE 'emerges as the outstanding algorithm in the comparison' overstates the default-setting evidence. The language should be moderated to reflect that the default advantage is largely not statistically significant.
minor comments (6)
  1. [Section 4.1 / Table 1] Table 1 lists 'oocytes merluccius nucleus 4d' and similar fishery datasets; a brief reference or description of these datasets beyond the pointer to Ganaie et al. (2020) would improve self-containedness.
  2. [Algorithm 2, line 9] The pseudocode says 'I(·) is an information theory meassure'; the spelling should be 'measure'.
  3. [Section 4.2] The URLs for tuned hyperparameters and supplementary materials are short links; expanding them or placing them in a stable repository reference would improve reproducibility.
  4. [Section 4.4] Table 7 reports normalized tree sizes and training times without variance or statistical testing; a confidence interval or at least a per-dataset breakdown would help assess the stability of the compactness claim.
  5. [Section 5] The sentence 'there is no doubt that ODTE emerges as the outstanding algorithm' is too strong given the default-setting significance results; please soften it or qualify it as applying primarily to the tuned scenario after the tuning-protocol issue is resolved.
  6. [Throughout] There are several typographical errors, e.g., 'facilitte' in the introduction, 'bewteen' in Section 4.4, and 'SckitLearn' in Section 1; a careful proofreading pass is needed.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity found: ODTE is an algorithmic contribution evaluated against external benchmarks, and its only self-citation is non-load-bearing.

full rationale

The paper does not derive ODTE's performance from an internal model whose parameters are fitted to the benchmark results; it presents a concrete algorithm (Algorithms 1 and 2), releases code and datasets, and evaluates 10x5CV accuracy on 49 external datasets against independent baselines. The only self-citation, 'A preliminary version of STree was presented in Montañana et al. (2021)' (Section 3), is contextual: the current manuscript fully specifies STree, so no load-bearing claim depends on the prior paper. The tuned comparison in Section 4.2 raises a legitimate experimental-fairness concern -- ODTET's gridsearch protocol and whether it was nested inside the cross-validation loop are not described, while TBRaFT, TBRoFT, and TBRRoFT reuse hyperparameters selected by the original authors -- but this is a comparison-quality issue, not circularity: the reported numbers are test-set accuracies, not quantities forced by construction. No fitted-parameter-renamed-as-prediction, no uniqueness theorem imported from the authors, and no ansatz smuggled via citation appear. The central claim is therefore self-contained with respect to the empirical evaluation reported.

Assumptions & free parameters 2 free parameters · 3 assumptions · 0 invented entities

The method introduces no new theoretical entities, forces, or formal objects. It relies on standard SVM, bagging, and information-theoretic machinery. The only experimenter-chosen quantities are hyperparameters and the choice of benchmark, which are standard in empirical ML papers.

free parameters (2)
  • STree hyperparameters (C, kernel, multiclass strategy, splitter, max features, max iter) = C=1, kernel=linear, strategy=OvO, splitter=random, max features=None, max iter=1e5
    These are model hyperparameters, not fitted constants, and they are default settings evaluated on held-out test folds. They are listed here because the tuned version per dataset is a free choice of the experimenters, though standard practice in ML evaluation.
  • Per-dataset tuned hyperparameters for ODTET = Available at https://t.ly/rEZLH
    The tuned accuracy results depend on per-dataset hyperparameter selection via gridsearch. These choices are part of the experimental comparison and are not derived from first principles.
assumptions (3)
  • domain assumption Accuracy is an appropriate performance measure for the benchmark datasets.
    Section 4.4 justifies this by citing that no severe class imbalance is present, referring to Table A1 of Ganaie et al. (2020). The validity of the comparison depends on this claim.
  • standard math The Friedman test with Holm post hoc procedure is an appropriate statistical framework for comparing classifiers across datasets.
    Invoked in Section 4.4 following Demsar (2006) and Garcia and Herrera (2008). This is standard practice in machine learning.
  • domain assumption The 49 datasets from Ganaie et al. (2020) are a representative benchmark for tabular classification.
    Section 4.1 states the datasets were previously used in Ganaie et al. (2020). The generality of the conclusions depends on this benchmark being representative.

how reviews work

0 comments
Cite this review

Pith. "Pith review of ODTE -- An ensemble of multi-class SVM-based oblique decision trees." pith.science (2026). https://pith.science/paper/C2RF4ZD5

@misc{pith2026241113376,
  author       = {Pith},
  title        = {Pith review of: ODTE -- An ensemble of multi-class SVM-based oblique decision trees},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/C2RF4ZD5}},
  note         = {Machine review of arXiv:2411.13376}
}
read the original abstract

We propose ODTE, a new ensemble that uses oblique decision trees as base classifiers. Additionally, we introduce STree, the base algorithm for growing oblique decision trees, which leverages support vector machines to define hyperplanes within the decision nodes. We embed a multiclass strategy -- one-vs-one or one-vs-rest -- at the decision nodes, allowing the model to directly handle non-binary classification tasks without the need to cluster instances into two groups, as is common in other approaches from the literature. In each decision node, only the best-performing model SVM -- the one that minimizes an impurity measure for the n-ary classification -- is retained, even if the learned SVM addresses a binary classification subtask. An extensive experimental study involving 49 datasets and various state-of-the-art algorithms for oblique decision tree ensembles has been conducted. Our results show that ODTE ranks consistently above its competitors, achieving significant performance gains when hyperparameters are carefully tuned. Moreover, the oblique decision trees learned through STree are more compact than those produced by other algorithms evaluated in our experiments.

Figures

Figures reproduced from arXiv: 2411.13376 by the authors.

Figure 1
Figure 1. Different decision boundaries and their corresponding decision trees: (left) axis [PITH_FULL_IMAGE:figures/full_fig_p005_1.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

67 extracted references · 63 canonical work pages

  1. [1]

    Zaki, , W

    M. Zaki, , W. Meira, Data Mining and Machine Learning: Fundamental Concepts and Algorithms, 2nd Edition, Cambridge University Press, New York, USA, 2020

  2. [2]

    C. C. Aggarwal, Data Classification: Algorithms and Applications, 1st Edition, Chapman & Hall/CRC, 2014

  3. [3]

    Zhang, X

    S. Zhang, X. Li, M. Zong, X. Zhu, R. Wang, Efficient knn classification with different numbers of nearest neighbors, IEEE Transactions on Neural Networks and Learning Systems 29 (5) (2018) 1774--1785

  4. [4]

    J. M. Hilbe, Logistic Regression Models, Chapman & Hall/CRC, 2009

  5. [5]

    Bielza, P

    C. Bielza, P. Larra\ n aga, Discrete bayesian network classifiers: A survey, ACM Computing Surveys 47 (1) (2014)

  6. [6]

    Flores, J

    M. Flores, J. Gámez, A. Martínez, Supervised Classification with Bayesian Networks: A Review on Models and Applications, 2012, pp. 72--102

  7. [7]

    S. B. Kotsiantis, Decision trees: A recent overview, Artificial Intelligence Review 39 (4) (2013) 261–283

  8. [8]

    V. N. Vapnik, The Nature of Statistical Learning Theory, Springer-Verlag, Berlin, Heidelberg, 1995

Show all 67 references
  1. [9]

    Cervantes, F

    J. Cervantes, F. Garcia-Lamont, L. Rodríguez-Mazahua, A. Lopez, A comprehensive survey on support vector machine classification: Applications, challenges and trends, Neurocomputing 408 (2020) 189--215

  2. [10]

    G. P. Zhang, Neural networks for classification: A survey, Transactions on Systems Man and Cybernetics Part C 30 (4) (2000) 451–462

  3. [11]

    Zhou, Ensemble Methods: Foundations and Algorithms, 1st Edition, Chapman & Hall/CRC, 2012

    Z.-H. Zhou, Ensemble Methods: Foundations and Algorithms, 1st Edition, Chapman & Hall/CRC, 2012

  4. [12]

    Rokach, Pattern Classification Using Ensemble Methods, World Scientific Publishing Co., Inc., USA, 2010

    L. Rokach, Pattern Classification Using Ensemble Methods, World Scientific Publishing Co., Inc., USA, 2010

  5. [13]

    Bengio, Y

    Y. Bengio, Y. Lecun, G. Hinton, Deep Learning for AI , Communications of the ACM 64 (7) (2021) 58–65

  6. [14]

    Goodfellow, Y

    I. Goodfellow, Y. Bengio, A. Courville, Deep Learning, The MIT Press, 2016

  7. [15]

    Shwartz-Ziv, A

    R. Shwartz-Ziv, A. Armon, Tabular data: Deep learning is not all you need, Information Fusion 81 (2022) 84--90

  8. [16]

    O. Sagi, L. Rokach, Ensemble learning: A survey, WIREs Data Mining Knowledge Discovery 8 (4) (2018)

  9. [17]

    Breiman, Bagging predictors, Machine Learning 24 (2) (1996) 123–140

    L. Breiman, Bagging predictors, Machine Learning 24 (2) (1996) 123–140

  10. [18]

    R. E. Schapire, The Boosting Approach to Machine Learning: An Overview, Springer New York, New York, NY, 2003, pp. 149--171

  11. [19]

    K. M. Ting, I. H. Witten, Issues in stacked generalization, Journal of Artificial Intelligence Research 10 (1) (1999) 271–289

  12. [20]

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

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

  13. [21]

    J. H. Friedman, Greedy function approximation: A gradient boosting machine. , The Annals of Statistics 29 (5) (2001) 1189 -- 1232

  14. [22]

    T. Chen, C. Guestrin, Xgboost: A scalable tree boosting system, in: Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, 2016, p. 785–794

  15. [23]

    J. R. Quinlan, C4.5: Programs for Machine Learning, Morgan Kaufmann Publishers Inc., San Francisco, CA, USA, 1993

  16. [24]

    Breiman, J

    L. Breiman, J. H. Friedman, R. A. Olshen, C. J. Stone, Classification and Regression Trees, Wadsworth and Brooks, Monterey, CA, 1984

  17. [25]

    S. M. Lundberg, G. Erion, H. Chen, A. DeGrave, J. M. Prutkin, B. Nair, R. Katz, J. Himmelfarb, N. Bansal, S.-I. Lee, From local explanations to global understanding with explainable AI for trees , Nature Machine Intelligence 2 (2020) 56--67

  18. [26]

    Shotton, R

    J. Shotton, R. Girshick, A. Fitzgibbon, T. Sharp, M. Cook, M. Finocchio, R. Moore, P. Kohli, A. Criminisi, A. Kipman, A. Blake, Efficient human pose estimation from single depth images, IEEE Transactions on Pattern Analysis and Machine Intelligence 35 (12) (2013) 2821--2840

  19. [27]

    X. Wu, V. Kumar, J. Ross Quinlan, J. Ghosh, Q. Yang, H. Motoda, G. J. McLachlan, A. Ng, B. Liu, P. S. Yu, Z.-H. Zhou, M. Steinbach, D. J. Hand, D. Steinberg, Top 10 algorithms in data mining, Knowledge and Information Systems 14 (1) (2007) 1–37

  20. [28]

    S. K. Murthy, S. Kasif, S. Salzberg, A system for induction of oblique decision trees, Journal of Artificial Intelligence Research 2 (1) (1994) 1–32

  21. [29]

    Jungermann, J

    F. Jungermann, J. Kretinsky, M. Weininger, Algebraically explainable controllers: Decision trees and support vector machines join forces, International Journal on Software Tools for Technology Transfer 25 (2023) 249--266

  22. [30]

    Bonifazi, F

    G. Bonifazi, F. Cauteruccio, E. Corradini, M. Marchetti, G. Terracina, D. Ursino, L. Virgili, A model-agnostic, network theory-based framework for supporting xai on classifiers, Expert Systems with Applications 241 (2024) 122588

  23. [31]

    H. Guo, S. Gelfand, Classification trees with neural network feature extraction, IEEE Transactions on Neural Networks 3 (6) (1992) 923--933

  24. [32]

    Yildiz, E

    C. Yildiz, E. Alpaydin, Omnivariate decision trees, IEEE Transactions on Neural Networks 12 (6) (2001) 1539--1546

  25. [33]

    Zhang , P

    L. Zhang , P. N. Suganthan , Oblique decision tree ensemble via multisurface proximal support vector machine, IEEE Trans. on Cybernetics 45 (10) (2015) 2165--2176

  26. [34]

    Menkovski , I

    V. Menkovski , I. T. Christou , S. Efremidis , Oblique decision trees using embedded support vector machines in classifier ensembles, in: 2008 7th IEEE International Conference on Cybernetic Intelligent Systems, 2008, pp. 1--6

  27. [35]

    Ganaie, M

    M. Ganaie, M. Tanveer, P. Suganthan, Oblique Decision Tree Ensemble via Twin Bounded SVM , Expert Systems with Applications 143 (2020) 113072

  28. [36]

    Yang, S.-Q

    B.-B. Yang, S.-Q. Shen, W. Gao, Weighted oblique decision trees, Proceedings of the AAAI Conference on Artificial Intelligence 33 (2019) 5621--5627

  29. [37]

    Rivera - L \' o pez, J

    R. Rivera - L \' o pez, J. Canul - Reich, J. A. G \' a mez, J. M. Puerta, OC1-DE: A differential evolution based approach for inducing oblique decision trees, in: Proceedings of the 16th Int. Conf. on Artificial Intelligence and Soft Computing, LNCS vol. 10245, Springer, 2017,...

  30. [38]

    X. Hu, C. Rudin, M. Seltzer, Optimal sparse decision trees, in: Advances in Neural Information Processing Systems, Vol. 32, 2019

  31. [39]

    M. A. Carreira-Perpinan, P. Tavallali, Alternating optimization of decision trees, with application to learning sparse oblique trees, in: Advances in Neural Information Processing Systems, Vol. 31, 2018

  32. [40]

    Demirović, P

    E. Demirović, P. J. Stuckey, Optimal decision trees for nonlinear metrics, Proceedings of the AAAI Conference on Artificial Intelligence 35 (5) (2021) 3733--3741

  33. [41]

    K. P. Bennett , J. A. Blue , A support vector machine approach to decision trees, in: 1998 IEEE International Joint Conference on Neural Networks Proceedings, Vol. 3, 1998, pp. 2396--2401

  34. [42]

    Kontschieder , M

    P. Kontschieder , M. Fiterau , A. Criminisi , S. R. Bulò , Deep neural decision forests, in: 2015 IEEE International Conference on Computer Vision (ICCV) , 2015, pp. 1467--1475

  35. [43]

    B. E. Boser, I. M. Guyon, V. N. Vapnik, A training algorithm for optimal margin classifiers, in: Proceedings of the Fifth Annual Workshop on Computational Learning Theory, COLT'92, 1992, p. 144–152

  36. [44]

    Zhang, W

    L. Zhang, W. Zhou, T. Su, L. Jiao, Decision tree support vector machine, Int. J. Artif. Intell. Tools 16 (1) (2007) 1--16

  37. [45]

    Manwani, P

    N. Manwani, P. S. Sastry, Geometric decision tree, IEEE Trans. Syst. Man Cybern. Part B 42 (1) (2012) 181--192

  38. [46]

    Blanco, A

    V. Blanco, A. Jap \'o n, J. Puerto, Multiclass optimal classification trees with svm-splits, Machine Learning (2023) 1--24

  39. [47]

    Pelleg, A

    D. Pelleg, A. W. Moore, X-means: Extending k-means with efficient estimation of the number of clusters, in: Proceedings of the Seventeenth International Conference on Machine Learning (ICML'00), 2000, p. 727–734

  40. [48]

    G. Chen, Z. Ge, SVM-tree and SVM-forest algorithms for imbalanced fault classification in industrial processes , IFAC Journal of Systems and Control 8 (2019) 100052

  41. [49]

    E. G. Rodrigo, J. C. Alfaro, J. A. Aledo, J. A. G \' a mez, Label ranking oblique trees, Knowledge Based Systems 296 (2024) 111882

  42. [50]

    P. J. Tan, D. L. Dowe, Decision forests with oblique decision trees, in: MICAI 2006: Advances in Artificial Intelligence, Springer Berlin Heidelberg, Berlin, Heidelberg, 2006, pp. 593--603

  43. [51]

    H. Zhan, Y. Liu, Y. Xia, Consistency of oblique decision tree and its boosting and random forest (2024). http://arxiv.org/abs/2211.12653 arXiv:2211.12653

  44. [52]

    Cantu-Paz, C

    E. Cantu-Paz, C. Kamath, Inducing oblique decision trees with evolutionary algorithms, IEEE Transactions on Evolutionary Computation 7 (1) (2003) 54--68

  45. [53]

    Huynh, V

    P.-H. Huynh, V. H. Nguyen, T.-N. Do, Random ensemble oblique decision stumps for classifying gene expression data, in: Proceedings of the 9th International Symposium on Information and Communication Technology, SoICT '18, Association for Computing Machinery, New York, NY, USA,...

  46. [54]

    Poona, A

    N. Poona, A. Van Niekerk, R. Ismail, Investigating the utility of oblique tree-based ensembles for the classification of hyperspectral data, Sensors 16 (11) (2016)

  47. [55]

    Singh Hada, M

    S. Singh Hada, M. A. Carreira-Perpiñán, Interpretable image classification using sparse oblique decision trees, in: ICASSP 2022 - 2022 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 2022, pp. 2759--2763

  48. [56]

    S. S. Hada, M. A. Carreira-Perpin'an, A. Zharmagambetov, Sparse oblique decision trees: a tool to understand and manipulate neural net features, Data Mining and Knowledge Discovery (2021) 1--40

  49. [57]

    B. Zhu, M. Farivar, M. Shoaran, Resot: Resource-efficient oblique trees for neural signal classification (2020). http://arxiv.org/abs/2006.07900 arXiv:2006.07900

  50. [58]

    Monta \ n ana, J

    R. Monta \ n ana, J. A. G \' a mez, J. M. Puerta, STree : A single multi-class oblique decision tree based on support vector machines, in: Advances in Artificial Intelligence - 19th Conference of the Spanish Association for Artificial Intelligence, CAEPIA 2020/2021, M \' a lag...

  51. [59]

    C. M. Bishop, Pattern Recognition and Machine Learning, Springer, 2006

  52. [60]

    D. Dua, C. Graff, http://archive.ics.uci.edu/ml UCI machine learning repository (2017). ://archive.ics.uci.edu/ml

  53. [61]

    Shao, C.-H

    Y.-H. Shao, C.-H. Zhang, X.-B. Wang, N.-Y. Deng, Improvements on twin support vector machines, IEEE Transactions on Neural Networks 22 (6) (2011) 962 – 968, cited by: 417. https://doi.org/10.1109/TNN.2011.2130540 doi:10.1109/TNN.2011.2130540

  54. [62]

    J. J. Rodríguez, L. I. Kuncheva, C. J. Alonso, Rotation forest: A new classifier ensemble method, IEEE Transactions on Pattern Analysis and Machine Intelligence 28 (10) (2006) 1619 – 1630, cited by: 1382. https://doi.org/10.1109/TPAMI.2006.211 doi:10.1109/TPAMI.2006.211

  55. [63]

    I. H. Witten, E. Frank, Data Mining: Practical Machine Learning Tools and Techniques, 2nd Edition, Morgan Kaufmann, San Francisco, 2005

  56. [64]

    Pedregosa, G

    F. Pedregosa, G. Varoquaux, A. Gramfort, V. Michel, B. Thirion, O. Grisel, M. Blondel, P. Prettenhofer, R. Weiss, V. Dubourg, et al., Scikit-learn: Machine learning in python, Journal of machine learning research 12 (Oct) (2011) 2825--2830

  57. [65]

    Demšar, Statistical Comparisons of Classifiers over Multiple Data Sets , Journal of Machine Learning Research 7 (2006) 1--30

    J. Demšar, Statistical Comparisons of Classifiers over Multiple Data Sets , Journal of Machine Learning Research 7 (2006) 1--30

  58. [66]

    Statistical Comparisons of Classifiers over Multiple Data Sets

    S. García, F. Herrera, An Extension on " Statistical Comparisons of Classifiers over Multiple Data Sets ” for all Pairwise Comparisons , Journal of Machine Learning Research 9 (2008) 2677--2694

  59. [67]

    Arias, J

    J. Arias, J. Cózar, ExReport : Fast , reliable and elegant reproducible research, https://cran.r-project.org/web/packages/exreport/index.html (last accessed: ) (2016)

Pith tools

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