Near Optimal Decision Trees in a SPLIT Second
Varun Babbar, Hayden McTavish, Cynthia Rudin, Margo Seltzer
TL;DR
This work addresses the challenge of building accurate yet sparse and interpretable decision trees at scale. It introduces SPLIT, a lookahead-based framework that searches shallow prefixes optimally while completing deeper parts greedily, achieving near-optimal accuracy with significantly faster runtimes than fully optimal methods. The authors extend SPLIT with LicketySPLIT (polynomial-time variant) and RESPLIT (Rashomon-set estimation) to balance scalability and search completeness, including theoretical runtime analyses and empirical validation across diverse datasets. The approach yields large speedups, maintains competitive test loss and sparsity, and enables scalable Rashomon-set analysis for reliable feature importance and model multiplicity assessments, with potential broad impact on interpretable ML deployment.
Abstract
Decision tree optimization is fundamental to interpretable machine learning. The most popular approach is to greedily search for the best feature at every decision point, which is fast but provably suboptimal. Recent approaches find the global optimum using branch and bound with dynamic programming, showing substantial improvements in accuracy and sparsity at great cost to scalability. An ideal solution would have the accuracy of an optimal method and the scalability of a greedy method. We introduce a family of algorithms called SPLIT (SParse Lookahead for Interpretable Trees) that moves us significantly forward in achieving this ideal balance. We demonstrate that not all sub-problems need to be solved to optimality to find high quality trees; greediness suffices near the leaves. Since each depth adds an exponential number of possible trees, this change makes our algorithms orders of magnitude faster than existing optimal methods, with negligible loss in performance. We extend this algorithm to allow scalable computation of sets of near-optimal trees (i.e., the Rashomon set).
