REVIEW 3 major objections 4 minor 145 references
ArborEnum: Decision Tree Rashomon Sets over Continuous Features
T0 review · 3 major / 4 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read ArborEnum is the first framework that exactly enumerates decision-tree Rashomon sets over continuous features, using ordered-threshold pruning so that no coarse binarization is needed.
desk verdict Novel and mostly sound exact enumeration algorithm; the anytime convergence claim is broken because the root budget is never recomputed after proxy strengthening. 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
Three mechanisms carry the argument. (1) The proxy-robustness condition: moving $k$ active training samples across a threshold changes the proxy-completed objective by at most $k$; combined with the active-sample distance $\mathrm{dist}_D(s,t)$ (the number of active samples whose branch assignment changes between thresholds $s$ and $t$), it turns one evaluated threshold into a certificate that prunes every threshold closer than the budget deficit $\Delta = P - \varepsilon_{\text{abs}}$ on either side, via binary-search boundary routines. (2) The minimum-objective AND/OR graph, in which each node is a (subproblem bitvector, remaining depth) pair indexed independently of the budget, so a single canonical subgraph is extended in place as budgets grow instead of being rebuilt — eliminating the factorial path duplication of trie-style representations. (3) The LicketySNIP proxy, a relaxation of LicketySPLIT whose greedy completions are memoized, cached across visits to the same subproblem, and reused under different budgets and threshold sets.
What would settle it
On a small dataset, brute-force enumerate every decision tree over all thresholds between consecutive distinct feature values and compare the resulting tree count and objective histogram with ArborEnum's output under an optimal proxy, the same leaf penalty, and the same Rashomon budget — any mismatch refutes the exact-enumeration claim. A sharper test searches for a subproblem where an optimal proxy's completed objective changes by more than the number of active samples moved across a threshold, directly violating the robustness condition on which the interval pruning rests.
Extended reading notes
Core claim
ArborEnum expands every continuous feature into its full block of nested threshold columns (rules of the form $x_j \le \nu$) and searches these blocks interval by interval. The search is driven by a proxy algorithm: a threshold whose proxy-completed objective $P = P_L + P_R$ exceeds the budget $\varepsilon_{\text{abs}}$ certifies its neighbors, because moving the threshold so that $k$ active samples switch branches can change any proxy-completed objective by at most $k$ (the robustness condition). Any threshold within active-sample distance less than $\Delta = P - \varepsilon_{\text{abs}}$ of the failed threshold must also fail, so the whole interval is pruned by binary search. When the proxy is optimal the pruning removes no feasible split, and the AND/OR graph left behind encodes exactly the continuous-feature Rashomon set; with the LicketySNIP greedy proxy the same machinery is a relaxation, and the anytime variant activates progressively more thresholds and can strengthen the proxy to optimality, converging to the same exact set. The paper thereby claims to close the gap that forced every previous decision-tree Rashomon enumerator to commit in advance to a binarization of the data.
Load-bearing premise
The load-bearing premise is the proxy robustness condition — moving $k$ active samples across a threshold changes the proxy-completed objective by at most $k$ — which the paper asserts holds for optimal proxies and cites to prior work rather than proving in the text; if a proxy violates the condition, the interval pruning can discard feasible thresholds and return a strict subset of the true Rashomon set.
Editorial extensions
If this is right
- On any dataset where an optimal proxy is affordable, the algorithm returns a certificate that no tree within the Rashomon budget over the exhaustive set of continuous thresholds has been missed — a guarantee no binarization-based enumerator can offer.
- The approximate variants make near-complete Rashomon sets practical where exact enumeration previously timed out (100 hours) or exhausted memory (128 GB), with worst-case recall of at least 94.5% across the 20 datasets and tree counts recoverable by loosening the root budget.
- Downstream analyses — feature importance, predictive multiplicity, and the set of high-quality trees — change when continuous thresholds are allowed, so conclusions drawn from a fixed coarse binarization can be incomplete in a way the anytime refinement makes visible.
- Because subgraphs are budget-independent, a user can start with a conservative Rashomon budget and widen it after the fact without restarting, which also supports incrementally choosing $\varepsilon_{\text{mult}}$ until a target stopping criterion is met.
Reading between the lines
- The interval-pruning rule is effectively a Lipschitz-style sensitivity certificate on the proxy objective, so the same evaluate-one-point-prune-a-neighborhood pattern could transfer to other structured hypothesis classes with an ordering — piecewise-constant regression trees, rule lists, or continuous split search in boosting — the classes the paper names as future work.
- The anytime algorithm could double as a diagnostic: the rate at which feature counts and predictive-multiplicity counts stabilize across refinement rounds quantifies how much information a chosen binarization was destroying.
- The near-perfect recall of the greedy proxies suggests the optimal-proxy requirement may matter mainly for the certificate of exactness rather than for the recovered trees; a testable consequence is that budget extension alone, without raising proxy strength, closes most of the remaining recall gap.
- A more rigorous convergence measure than the paper uses — for example, the symmetric difference or histogram distance between successive anytime graphs — would give an early-stopping rule with a proven error bound.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. ArborEnum introduces a family of algorithms for enumerating decision-tree Rashomon sets over continuous features by exploiting the ordered structure of thresholds. The exact variant (Algorithm 1 with an optimal proxy) uses interval pruning and a budget-independent AND/OR graph to enumerate all trees whose regularized objective is within a multiplicative budget. Approximate variants use greedy proxies such as LicketySNIP, and an anytime variant (Algorithm 4) progressively activates additional thresholds and optionally strengthens the proxy, with the abstract and Section 3 claiming convergence to the exact continuous-feature Rashomon set. Experiments on 20 datasets compare runtimes, memory, and recall against prior binary-feature enumeration methods, reporting large speedups and near-perfect recall.
Significance. If the correctness claims hold, exact enumeration over continuous thresholds is a significant advance over binarization-dependent Rashomon set algorithms, since coarse binarization can miss trees, features, and predictive multiplicity. The paper also contributes theoretical bounds on the discretization optimality gap (Theorems 4–9), a fixed-binarization superset guarantee (Theorem 10), and an empirical demonstration of budget-independent subgraph caching that substantially reduces OR-node counts. The release of code and the detailed pseudocode support reproducibility. However, the anytime algorithm's advertised convergence to the exact continuous-feature Rashomon set is not supported by the presented pseudocode, and the recall metric is weakened by being measured against the best completing method rather than against the exact set. These issues affect major advertised claims and require correction.
major comments (3)
- [Algorithm 4, Section 3 (Anytime Algorithm)] The anytime algorithm does not converge to the exact continuous-feature Rashomon set as claimed. In Algorithm 4, line 6 sets ε_abs = (1+ε_mult)·Proxy(D_root,d,γ,S_root) once, using the initial, potentially suboptimal proxy. The subsequent while loop (lines 16–20 of the main-text listing; Algorithm 16 in Appendix A.8) strengthens the proxy but never recomputes ε_abs. Since a suboptimal proxy returns a tree with objective at least the optimal objective, Proxy(D_root) ≥ Optimal(D_root), so the fixed ε_abs is an overestimate of the intended multiplicative budget. RefineGraph (Algorithm 14) only extends the existing graph in place; it never removes or filters splits that were added under the looser budget. Consequently, when the proxy is strengthened to optimality, the returned graph still contains every tree with objective below the stale ε_abs, which is a strict superset of the multiplicative Rashomon set {T : Obj(T) ≤ (1+ε_mult)·Optimal}. This contradicts the abstract and the Section 3 statement that the anytime variant 'converges to the complete continuous-feature Rashomon set.' The central issue is not a minor implementation detail: as written, the algorithm returns a superlevel set of the objective, not the Rashomon set. To fix it, ε_abs must be updated after each proxy-strengthening step, or the graph must be rebuilt/restricted against the new budget.
- [Table 2 and Appendix E.2 (Recall metric)] The near-perfect recall claims for the approximate variants are measured relative to the 'best method that finished' using the minimum objective found by any method as the guessed Rashomon bound, rather than against the exact continuous-feature Rashomon set. On datasets where the optimal proxy does not finish (e.g., Credit, Helena, Heloc, Jasmine, Shopping, Spambase at λ=0.02 in Table 5), a recall of 1.000 only certifies agreement with the best approximate method, not recovery of the true Rashomon set. The paper acknowledges this in the table footnotes, but the abstract's statement that approximations 'maintain near-perfect recall' is only established on datasets where an exact reference is available. I recommend reporting recall relative to the exact set for all datasets where the optimal proxy completes, and clearly labeling the other comparisons as agreement rates among approximate methods.
- [Section 3 (proxy robustness condition)] The exactness of the continuous-feature pruning rules rests on the proxy robustness condition stated in Section 3: moving k active samples across a threshold changes the proxy-completed objective by at most k. The paper asserts that optimal proxies satisfy this condition but does not provide a proof or a precise reference. This condition is load-bearing: Algorithm 2 lines 16–22 and Algorithm 11 lines 43–51 prune entire ranges of thresholds based on it, and if it fails for the chosen optimal proxy, the algorithm can discard feasible splits and return a strict subset of the true Rashomon set. I believe the condition is true for the optimal objective by a 1-Lipschitz argument applied to the minimum over trees, but the authors should supply a complete, self-contained proof (or an exact statement of where it is proven in the cited literature) in the paper or appendix.
minor comments (4)
- [Appendix A.10] In the paragraph beginning 'This does not lose information', the sentence 'we claim that these choices are can be ignored' contains a typing error ('are can' should be 'can').
- [Algorithms 1 and 4] The pseudocode for Algorithm 4 in the main text and Algorithm 16 in Appendix A.8 differ slightly in comments and line numbering; please unify them so readers can cross-reference the anytime convergence argument.
- [Section 2, related work citation] The citation to 'Brit,a, van der Linden, and Demirović (2025)' contains an encoding artifact in the author name; the correct rendering appears to be 'Briña' and should be fixed throughout the text and references.
- [Section 3, anytime description] The text says 'This variant is truly anytime: it can begin with no active continuous thresholds and, as the proxy is strengthened to optimality, converges to the complete continuous-feature Rashomon set.' Given the budget-freezing issue in Algorithm 4, this sentence is misleading; please revise it to describe what the algorithm actually guarantees (e.g., convergence to the set defined by the initial proxy budget) or correct the algorithm.
Circularity Check
No significant circularity: the exact continuous-feature enumeration is derived from first-principles threshold-interval pruning; self-citations to PRAXIS/Heile et al. are building blocks, not forced inputs.
full rationale
ArborEnum's core exactness claim is grounded in the combinatorial interval-pruning argument (Algorithms 2-3) plus an explicit proxy robustness condition, not in fitting a parameter to the target Rashomon set. The multiplicative Rashomon set is defined with εabs=(1+εmult)Optimal(D,d,γ), and the exact regime uses an optimal proxy; the stated Lipschitz-style robustness condition is an assumption about the objective/proxy, not a definitional rewording of the output. The approximate regime explicitly sets εabs=(1+εmult)Proxy(D,d,γ) and is presented as a relaxation, so its proxy-relative budget is not disguised as an exact prediction. Thresholds chosen by XGBoost for LSR and SNIP+GR are declared heuristics, and recall is measured against exact or best-available baselines, giving external content. Self-citations to Heile et al. (2026) supply shared proxy-optimizer caching and some approximation-side guarantees; these are reused components, while the paper's advertised exact continuous-threshold claim depends on the new interval-pruning derivations and is compared against SORTeD, TreeFARMS, and other external methods. The reader-supplied AnyTimeArborEnum concern (root εabs fixed from the initial proxy and never updated when the proxy is strengthened) is a substantive correctness issue: the final graph can be a stale superlevel set rather than the exact Rashomon set. That is a bug in the convergence claim, not a circularity, because the returned set is not equal to its input by construction. No specific equation reduces to an earlier input, so no circular step is exhibited.
Assumptions & free parameters
free parameters (2)
- Bproxy (XGBoost-selected threshold set) =
150 depth-2 gradient-boosted estimators with seed 0 plus backward elimination
- Rashomon budget and depth parameters (d, lambda, epsilon_mult) =
d=5; lambda in {0.02, 0.01, 0.005}; epsilon_mult = 0.03 in main tables, with additional values in appendices
assumptions (4)
- domain assumption Proxy robustness: moving k active samples across a threshold changes the proxy-completed objective by at most k.
- domain assumption Finite threshold representation: each continuous feature is expanded into an ordered block of threshold columns between unique values, and the Rashomon set is over these columns.
- domain assumption Binarization Hamming snapping condition: every continuous split has a selected binary split within Hamming distance delta, as assumed in Theorem 4.
- domain assumption 64-bit subproblem fingerprints do not collide.
Cite this review
Pith. "Pith review of ArborEnum: Decision Tree Rashomon Sets over Continuous Features." pith.science (2026). https://pith.science/paper/V3Q4K3Z4
@misc{pith2026260804310,
author = {Pith},
title = {Pith review of: ArborEnum: Decision Tree Rashomon Sets over Continuous Features},
year = {2026},
howpublished = {\url{https://pith.science/paper/V3Q4K3Z4}},
note = {Machine review of arXiv:2608.04310}
}
read the original abstract
The Rashomon effect describes the phenomenon that many models can achieve nearly equivalent performance on the same learning task, with significant ramifications for robustness, feature importance, and customizability. These use cases motivate the computation of Rashomon sets: the set of all models whose regularized loss is near-optimal. Decision trees are one of the few model classes for which Rashomon sets can be fully enumerated, but this computation has always been conditional on a binarization of the original data, either restricting which splits each tree is allowed to make or substantially increasing the complexity of an already difficult combinatorial problem. We introduce the first algorithm that exactly enumerates decision-tree Rashomon sets while exploiting the ordered structure of continuous features. We further develop a relaxation for approximate enumeration and an anytime algorithm that progressively refines the set of candidate thresholds, producing increasingly detailed approximations that converge to the continuous-feature Rashomon set. Experiments show that coarse binarization can miss many trees, important features, and predictive multiplicity; our algorithms achieve orders-of-magnitude speedups over existing enumeration methods, with approximations providing further speedups while maintaining near-perfect recall.
Figures
Reference graph
Works this paper leans on
-
[1]
International Conference on Machine Learning , year=
Gaining no or low-cost transparency with interpretable partial substitute , author=. International Conference on Machine Learning , year=
-
[2]
Wang, Tong and Lin, Qihang , title =. J. Mach. Learn. Res. , month = jan, articleno =. 2021 , issue_date =
2021
-
[3]
International conference on artificial intelligence and statistics , pages=
Interpretable companions for black-box models , author=. International conference on artificial intelligence and statistics , pages=. 2020 , organization=
2020
-
[4]
arXiv preprint arXiv:2303.04437 , year=
Learning hybrid interpretable models: Theory, taxonomy, and methods , author=. arXiv preprint arXiv:2303.04437 , year=
-
[5]
International conference on machine learning , pages=
Born-again tree ensembles , author=. International conference on machine learning , pages=. 2020 , organization=
2020
-
[6]
Forty-second International Conference on Machine Learning , year=
Compressing tree ensembles through Level-wise Optimization and Pruning , author=. Forty-second International Conference on Machine Learning , year=
-
[7]
Journal of Computer Science and Technology , volume=
Lossless compression of random forests , author=. Journal of Computer Science and Technology , volume=. 2019 , publisher=
2019
-
[8]
Advances in Neural Information Processing Systems , volume=
Human expertise in algorithmic prediction , author=. Advances in Neural Information Processing Systems , volume=
Show all 145 references
-
[9]
Information Sciences , volume=
Approximating XGBoost with an interpretable decision tree , author=. Information Sciences , volume=. 2021 , publisher=
2021
-
[10]
Chen, Tianqi and Guestrin, Carlos , booktitle=
-
[11]
Advances in neural information processing systems , volume=
Predict responsibly: improving fairness and accuracy by learning to defer , author=. Advances in neural information processing systems , volume=
-
[12]
International conference on machine learning , pages=
Consistent estimators for learning to defer to an expert , author=. International conference on machine learning , pages=. 2020 , organization=
2020
-
[13]
Proceedings of the 2001 IEEE computer society conference on computer vision and pattern recognition
Rapid object detection using a boosted cascade of simple features , author=. Proceedings of the 2001 IEEE computer society conference on computer vision and pattern recognition. CVPR 2001 , volume=. 2001 , organization=
2001
-
[14]
Machine learning , volume=
Cascade generalization , author=. Machine learning , volume=. 2000 , publisher=
2000
-
[15]
Advances in neural information processing systems , volume=
Decision jungles: Compact and rich models for classification , author=. Advances in neural information processing systems , volume=
-
[16]
IEEE Transactions on information theory , volume=
On optimum recognition error and reject tradeoff , author=. IEEE Transactions on information theory , volume=. 2003 , publisher=
2003
-
[17]
Machine Learning , volume=
Random Forests , author=. Machine Learning , volume=. 2001 , publisher=
2001
-
[18]
2014 , publisher=
C4.5: Programs for Machine Learning , author=. 2014 , publisher=
2014
-
[19]
Journal of Machine Learning Research , volume=
Murtree: Optimal decision trees via dynamic programming and search , author=. Journal of Machine Learning Research , volume=
-
[20]
Machine Learning , volume=
Research note on decision lists , author=. Machine Learning , volume=. 1993 , publisher=
1993
-
[21]
Proceedings of the twenty-ninth annual ACM symposium on Theory of computing , pages=
Using and combining predictors that specialize , author=. Proceedings of the twenty-ninth annual ACM symposium on Theory of computing , pages=
-
[22]
, author=
On the Foundations of Noise-free Selective Classification. , author=. Journal of Machine Learning Research , volume=
-
[23]
Artificial Intelligence Review , volume=
Recent advances in decision trees: An updated survey , author=. Artificial Intelligence Review , volume=. 2023 , publisher=
2023
-
[24]
Machine Learning , volume=
Optimal classification trees , author=. Machine Learning , volume=. 2017 , publisher=
2017
-
[25]
Proceedings of the AAAI Conference on Artificial Intelligence , volume=
Learning optimal classification trees using a binary linear program formulation , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=
-
[26]
Machine learning , volume=
Induction of decision trees , author=. Machine learning , volume=. 1986 , publisher=
1986
-
[27]
International Conference on Machine Learning , pages=
Blossom: an anytime algorithm for computing optimal decision trees , author=. International Conference on Machine Learning , pages=. 2023 , organization=
2023
-
[28]
Advances in Neural Information Processing Systems , volume=
Harnessing the power of choices in decision tree learning , author=. Advances in Neural Information Processing Systems , volume=
-
[29]
Optimal Sparse Decision Trees , volume =
Hu, Xiyang and Rudin, Cynthia and Seltzer, Margo , booktitle =. Optimal Sparse Decision Trees , volume =
-
[30]
Mazumder, Rahul and Meng, Xiang and Wang, Haoyue , booktitle =. Quant-. 2022 , volume =
2022
-
[31]
Proceedings of the AAAI Conference on Artificial Intelligence , volume=
Optimal classification trees for continuous feature data using dynamic programming with branch-and-bound , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=
-
[32]
arXiv preprint arXiv:2601.14765 , year=
Anytime Optimal Decision Tree Learning with Continuous Features , author=. arXiv preprint arXiv:2601.14765 , year=
-
[33]
International Symposium on Intelligent Data Analysis , pages=
Efficient Lookahead Decision Trees , author=. International Symposium on Intelligent Data Analysis , pages=. 2024 , organization=
2024
-
[35]
2021 IEEE 33rd International Conference on Tools with Artificial Intelligence (ICTAI) , pages=
Assessing optimal forests of decision trees , author=. 2021 IEEE 33rd International Conference on Tools with Artificial Intelligence (ICTAI) , pages=. 2021 , organization=
2021
-
[36]
International Conference on Machine Learning , pages=
Generalized and scalable optimal sparse decision trees , author=. International Conference on Machine Learning , pages=. 2020 , organization=
2020
-
[37]
Machine Learning and Knowledge Extraction , volume=
A Meta Algorithm for Interpretable Ensemble Learning: The League of Experts , author=. Machine Learning and Knowledge Extraction , volume=. 2024 , publisher=
2024
-
[38]
International conference on algorithmic learning theory , pages=
Partially interpretable models with guarantees on coverage and accuracy , author=. International conference on algorithmic learning theory , pages=. 2024 , organization=
2024
-
[39]
Proceedings of the 37th International Conference on Machine Learning , pages =
Consistent Estimators for Learning to Defer to an Expert , author =. Proceedings of the 37th International Conference on Machine Learning , pages =. 2020 , editor =
2020
-
[40]
2024 , isbn =
Pisztora, Vincent and Li, Jia , title =. 2024 , isbn =. doi:10.1609/aaai.v38i13.29378 , booktitle =
2024 doi
-
[41]
Advances in Neural Information Processing Systems , volume=
A Path to Simpler Models Starts With Noise , author=. Advances in Neural Information Processing Systems , volume=
-
[42]
2022 ACM Conference on Fairness, Accountability, and Transparency , pages=
On the existence of simpler machine learning models , author=. 2022 ACM Conference on Fairness, Accountability, and Transparency , pages=
2022
-
[43]
Advances In Neural Information Processing Systems , year=
Using Noise to Infer Aspects of Simplicity Without Learning , author=. Advances In Neural Information Processing Systems , year=
-
[44]
Proceedings of the AAAI Conference on Artificial Intelligence , volume=
Free lunch in the forest: Functionally-identical pruning of boosted tree ensembles , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=
-
[45]
Proceedings of the National Academy of Sciences , volume =
Yan Shuo Tan and Chandan Singh and Keyan Nasseri and Abhineet Agarwal and James Duncan and Omer Ronen and Matthew Epland and Aaron Kornblith and Bin Yu , title =. Proceedings of the National Academy of Sciences , volume =. 2025 , doi =
2025
-
[46]
2026 , journal =
Yifan Li and Shuhan Qi and Lei Cui and Chao Xing and Lei Zhang and Xuan Wang , title =. 2026 , journal =
2026
-
[47]
2023 , eprint=
Plugin estimators for selective classification with out-of-distribution detection , author=. 2023 , eprint=
2023
-
[48]
Santos-Pereira and Ana M
Carla M. Santos-Pereira and Ana M. Pires , keywords =. On optimal reject rules and ROC curves , journal =. 2005 , issn =. doi:https://doi.org/10.1016/j.patrec.2004.09.042 , url =
2005 doi
-
[49]
and Singer, Yoram , title =
Schapire, Robert E. and Singer, Yoram , title =. 1998 , isbn =. doi:10.1145/279943.279960 , booktitle =
1998
-
[50]
2017 , howpublished =
2017
-
[51]
and Kullgren, Jeffrey and Solway, Erica , title =
Malani, Preeti N. and Kullgren, Jeffrey and Solway, Erica , title =. 2019 , publisher =. doi:10.3886/ICPSR37305.v1 , url =
2019 doi
-
[52]
and Rita, P
Moro, S. and Rita, P. and Cortez, P. , title =. 2014 , howpublished =
2014
-
[53]
A data-driven approach to predict the success of bank telemarketing , author=. Decis. Support Syst. , year=
-
[54]
Progress in Artificial Intelligence , year=
Event labeling combining ensemble detectors and background knowledge , author=. Progress in Artificial Intelligence , year=
-
[55]
2013 , howpublished =
Fanaee-T, Hadi , title =. 2013 , howpublished =
2013
-
[56]
1994 , howpublished =
Bain, Michael and Hoff, Arthur , title =. 1994 , howpublished =
1994
-
[57]
AutoML , series =
Isabelle Guyon and Lisheng Sun-Hosoya and Marc Boull\'e and Hugo Jair Escalante and Sergio Escalera and Zhengying Liu and Damir Jajetic and Bisakha Ray and Mehreen Saeed and Mich\'ele Sebag and Alexander Statnikov and WeiWei Tu and Evelyne Viegas , title =. AutoML , series =. ...
2019
-
[58]
2018 , publisher =
OpenML , title =. 2018 , publisher =
2018
-
[59]
2025 , eprint=
TabArena: A Living Benchmark for Machine Learning on Tabular Data , author=. 2025 , eprint=
2025
-
[60]
Marcoulides , title =
George A. Marcoulides , title =. 2005 , publisher =
2005
-
[61]
Bao, Michelle and Zhou, Angela and Zottola, A. S. and Brubach, Brian and Desmarais, Sarah and Horowitz, Seth A. and Lum, Kristian and Venkatasubramanian, Suresh , title =. Proceedings of the Thirty-Fifth Conference on Neural Information Processing Systems (NeurIPS) , year =
-
[62]
1998 , howpublished =
Blackard, Jock , title =. 1998 , howpublished =
1998
-
[63]
2009 , howpublished =
Yeh, I-Cheng , title =. 2009 , howpublished =
2009
-
[64]
Expert Syst
The comparisons of data mining techniques for the predictive accuracy of probability of default of credit card clients , author=. Expert Syst. Appl. , year=
-
[65]
Burrows, N. R. and Hora, I. and Geiss, L. S. and Gregg, E. W. and Albright, A. , title =. MMWR. Morbidity and Mortality Weekly Report , year =. doi:10.15585/mmwr.mm6643a2 , url =
-
[66]
2021 , howpublished =
Mathur, Akshay , title =. 2021 , howpublished =
2021
-
[67]
2021 , url=
Poster: NATICUSdroid: A malware detection framework for Android using native and custom , author=. 2021 , url=
2021
-
[68]
Electricity Dataset , year =
-
[69]
1989 , howpublished =
Janosi, Andras and Steinbrunn, William and Pfisterer, Matthias and Detrano, Robert , title =. 1989 , howpublished =
1989
-
[70]
, author=
International application of a new probability algorithm for the diagnosis of coronary artery disease. , author=. The American journal of cardiology , year=
-
[71]
Helena Dataset , year =
-
[72]
Home Equity Line of Credit (HELOC) Dataset , year =
-
[73]
2014 , howpublished =
Whiteson, Daniel , title =. 2014 , howpublished =
2014
-
[74]
and Sadowski, P
Baldi, P. and Sadowski, P. and Whiteson, D. , year=. Searching for exotic particles in high-energy physics with deep learning , volume=. Nature Communications , publisher=. doi:10.1038/ncomms5308 , number=
-
[75]
and Nagapadma, Rohini , title =
S., B. and Nagapadma, Rohini , title =. 2023 , howpublished =
2023
-
[76]
Cybersecurity , year=
Quantized autoencoder (QAE) intrusion detection system for anomaly detection in resource-constrained IoT devices using RT-IoT2022 dataset , author=. Cybersecurity , year=
-
[77]
Jannis Dataset , year =
-
[78]
Jasmine Dataset , year =
-
[79]
Madeline Dataset , year =
-
[80]
2004 , howpublished =
Guyon, Isabelle , title =. 2004 , howpublished =
2004
-
[81]
, title =
Bock, R. , title =. 2004 , howpublished =
2004
-
[82]
1991 , url=
The MONK''s Problems-A Performance Comparison of Different Learning Algorithms, CMU-CS-91-197, Sch , author=. 1991 , url=
1991
-
[83]
, title =
Wnek, J. , title =. 1993 , howpublished =
1993
-
[84]
1981 , howpublished =
1981
-
[85]
2015 , howpublished =
Fernandes, Kelwin and Vinagre, Pedro and Cortez, Paulo and Sernadela, Pedro , title =. 2015 , howpublished =
2015
-
[86]
Portuguese Conference on Artificial Intelligence , year=
A Proactive Intelligent Decision Support System for Predicting the Popularity of Online News , author=. Portuguese Conference on Artificial Intelligence , year=
-
[87]
2012 , howpublished =
Mohammad, Rami and McCluskey, Lee , title =. 2012 , howpublished =
2012
-
[88]
2012 International Conference for Internet Technology and Secured Transactions , year=
An assessment of features related to phishing websites using an automated technique , author=. 2012 International Conference for Internet Technology and Secured Transactions , year=
2012
-
[89]
2002 , howpublished =
Cattral, Robert and Oppacher, Franz , title =. 2002 , howpublished =
2002
-
[90]
and Kastro, Yomi , title =
Sakar, C. and Kastro, Yomi , title =. 2018 , howpublished =
2018
-
[91]
Neural Computing and Applications , year=
Real-time prediction of online shoppers’ purchasing intention using multilayer perceptron and LSTM recurrent neural networks , author=. Neural Computing and Applications , year=
-
[92]
1999 , howpublished =
Hopkins, Mark and Reeber, Erik and Forman, George and Suermondt, Jaap , title =. 1999 , howpublished =
1999
-
[93]
2008 , howpublished =
Cortez, Paulo , title =. 2008 , howpublished =
2008
-
[94]
2008 , url=
Using data mining to predict secondary school student performance , author=. 2008 , url=
2008
-
[95]
NYC Taxi Green Trips, December 2016 , year =
2016
-
[96]
1991 , howpublished =
Aha, David , title =. 1991 , howpublished =
1991
-
[97]
Wine Dataset , year =
-
[98]
Pol Dataset , year =
-
[99]
Diamonds Dataset , year =
-
[100]
California Dataset , year =
-
[101]
Abalone Dataset , year =
-
[102]
Near-Optimal Decision Trees in a
Varun Babbar and Hayden McTavish and Cynthia Rudin and Margo Seltzer , booktitle=. Near-Optimal Decision Trees in a
-
[103]
1984 , publisher=
Classification and regression trees , author=. 1984 , publisher=
1984
-
[104]
Proceedings of the 18th International Conference on Machine Learning and Data Mining (MLDM 2022) , year =
Computing the Collection of Good Models for Rule Lists , author =. Proceedings of the 18th International Conference on Machine Learning and Data Mining (MLDM 2022) , year =
2022
-
[105]
, title =
Norton, Steven W. , title =. Proceedings of the International Joint Conference on Artificial Intelligence (IJCAI) , year =
-
[106]
, title =
Sarkar, Soumya and White, Martha E. , title =. Proceedings of the International Conference on Machine Learning , year =
-
[107]
Efficient Exploration of the
Ciaperoni, Martino and Xiao, Han and Gionis, Aristides , booktitle =. Efficient Exploration of the. 2024 , pages =
2024
-
[108]
Joint European Conference on Machine Learning and Knowledge Discovery in Databases , pages=
Time constrained dl8.5 using limited discrepancy search , author=. Joint European Conference on Machine Learning and Knowledge Discovery in Databases , pages=. 2022 , organization=
2022
-
[109]
Advances in Neural Information Processing Systems , year=
Exploring and Interacting with the Set of Good Sparse Generalized Additive Models , author=. Advances in Neural Information Processing Systems , year=
-
[110]
Proceedings of the
Fast sparse decision tree optimization via reference ensembles , author=. Proceedings of the
-
[111]
Proceedings of the AAAI Conference on Artificial Intelligence , volume=
Maptree: Beating “optimal” decision trees with bayesian decision trees , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=
-
[112]
Forty-second International Conference on Machine Learning , year=
Branches: Efficiently Seeking Optimal Sparse Decision Trees via AO , author=. Forty-second International Conference on Machine Learning , year=
-
[113]
Journal of heuristics , volume=
Rollout algorithms for combinatorial optimization , author=. Journal of heuristics , volume=. 1997 , publisher=
1997
-
[114]
Annals of Operations Research , volume=
Looking ahead with the pilot method , author=. Annals of Operations Research , volume=. 2005 , publisher=
2005
-
[115]
Operations Research Proceedings 1993: DGOR/NSOR Papers of the 22nd Annual Meeting of DGOR in Cooperation with NSOR/Vortr
Steiner tree heuristics—a survey , author=. Operations Research Proceedings 1993: DGOR/NSOR Papers of the 22nd Annual Meeting of DGOR in Cooperation with NSOR/Vortr. 1994 , organization=
1993
-
[116]
Rashomon Sets of Falling Trees
Varun Babbar and Zachery Boner and Margo Seltzer and Cynthia Rudin. Rashomon Sets of Falling Trees
-
[117]
Doctor Rashomon and the
Donnelly, Jon and Srikar Katta and Emanuele Borgonovo and Rudin, Cynthia , booktitle =. Doctor Rashomon and the
-
[118]
Advances in Neural Information Processing Systems , volume=
Necessary and sufficient conditions for optimal decision trees using dynamic programming , author=. Advances in Neural Information Processing Systems , volume=
-
[119]
Proceedings of the
Learning optimal decision trees using caching branch-and-bound search , author=. Proceedings of the
-
[120]
Browne , year=
Jon Donnelly and Srikar Katta and Cynthia Rudin and Edward P. Browne , year=. The. Proceedings of Neural Information Processing Systems (
-
[121]
Exploring the whole
Rui Xin and Chudi Zhong and Zhi Chen and Takuya Takagi and Margo Seltzer and Cynthia Rudin , booktitle=. Exploring the whole
-
[122]
International Conference on Machine Learning , year=
Amazing things come from having many good models , author=. International Conference on Machine Learning , year=
-
[123]
Donnelly, Jon and Katta, Srikar and Rudin, Cynthia and Browne, Edward , booktitle=. The
-
[124]
arXiv preprint arXiv:2511.03344 , year=
Arslan, Elif and van der Linden, Jacobus GM and Hoogendoorn, Serge and Rinaldi, Marco and Demirovi. arXiv preprint arXiv:2511.03344 , year=
-
[125]
arXiv preprint arXiv:2508.06064 , year=
A Generic Complete Anytime Beam Search for Optimal Decision Tree , author=. arXiv preprint arXiv:2508.06064 , year=
-
[126]
Warren, Greta and Byrne, Ruth M. J. and Keane, Mark T. , title =. Proceedings of the 28th International Conference on Intelligent User Interfaces , pages =. 2023 , publisher =
2023
-
[127]
The Double-Edged Nature of the
Hsu, Ethan and Chen, Harry and Zhong, Chudi and Semenova, Lesia , journal=. The Double-Edged Nature of the
-
[128]
On the Existence of Simpler Machine Learning Models , DOI=
Semenova, Lesia and Rudin, Cynthia and Parr, Ronald , year=. On the Existence of Simpler Machine Learning Models , DOI=. 2022 ACM Conference on Fairness Accountability and Transparency , publisher=
2022
-
[129]
2013 , isbn =
Motwani, Rajeev and Raghavan, Prabhakar , title =. 2013 , isbn =
2013
-
[130]
2025 , author=
Leveraging Predictive Equivalence in Decision Trees , booktitle =. 2025 , author=
2025
-
[131]
1996 , howpublished =
Becker, Barry and Kohavi, Ronny , title =. 1996 , howpublished =
1996
-
[132]
Journal of Machine Learning Research , year =
Aaron Fisher and Cynthia Rudin and Francesca Dominici , title =. Journal of Machine Learning Research , year =
-
[133]
Forty-third International Conference on Machine Learning , year=
Efficient Rashomon Set Approximation for Decision Trees , author=. Forty-third International Conference on Machine Learning , year=
-
[134]
Rashomon Sets for Prototypical-Part Networks: Editing Interpretable Models in Real-Time , year=
Donnelly, Jon and Guo, Zhicheng and Barnett, Alina Jade and McTavish, Hayden and Chen, Chaofan and Rudin, Cynthia , booktitle=. Rashomon Sets for Prototypical-Part Networks: Editing Interpretable Models in Real-Time , year=
-
[135]
2026 , eprint=
Multistage Defer Trees for Hybrid Interpretability: If at First You Can't Succeed, Tree Again , author=. 2026 , eprint=
2026
-
[136]
Communication, Simulation, and Intelligent Agents: Implications of Personal Intelligent Machines for Medical Education
Clancey, William J. Communication, Simulation, and Intelligent Agents: Implications of Personal Intelligent Machines for Medical Education. Proceedings of the Eighth International Joint Conference on Artificial Intelligence (IJCAI-83)
-
[137]
Classification Problem Solving
Clancey, William J. Classification Problem Solving. Proceedings of the Fourth National Conference on Artificial Intelligence
-
[138]
, title =
Robinson, Arthur L. , title =. 1980 , doi =. https://science.sciencemag.org/content/208/4447/1019.full.pdf , journal =
1980
-
[139]
New Ways to Make Microcircuits Smaller---Duplicate Entry
Robinson, Arthur L. New Ways to Make Microcircuits Smaller---Duplicate Entry. Science
-
[140]
Clancey and Glenn Rennels , abstract =
Diane Warner Hasling and William J. Clancey and Glenn Rennels , abstract =. Strategic explanations for a diagnostic consultation system , journal =. 1984 , issn =. doi:https://doi.org/10.1016/S0020-7373(84)80003-6 , url =
1984 doi
-
[141]
and Rennels, Glenn R
Hasling, Diane Warner and Clancey, William J. and Rennels, Glenn R. and Test, Thomas. Strategic Explanations in Consultation---Duplicate. The International Journal of Man-Machine Studies
-
[142]
Poligon: A System for Parallel Problem Solving
Rice, James. Poligon: A System for Parallel Problem Solving
-
[143]
Transfer of Rule-Based Expertise through a Tutorial Dialogue
Clancey, William J. Transfer of Rule-Based Expertise through a Tutorial Dialogue
-
[144]
The Engineering of Qualitative Models
Clancey, William J. The Engineering of Qualitative Models
-
[145]
2023 , eprint=
Attention Is All You Need , author=. 2023 , eprint=
2023
-
[146]
Pluto: The 'Other' Red Planet
NASA. Pluto: The 'Other' Red Planet
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.