Classification and Regression Tree
Version 1.0.0 · Updated 2026-07-30
CORE DEFINITION
A decision tree algorithm proposed by Leo Breiman et al. in 1984. Core features: - Binary tree structure: each node produces only two branches - Classification and regression: can handle both classification and regression problems - Splitting criterion: uses Gini Index for classification, and least squares error for regression - Pruning mechanism: prevents overfitting through cost-complexity pruning. Scaffolding role: interpretable decisions, balancing accuracy and simplicity. Compared to "black box" models, the decision trees produced by CART are highly visual, with transparent and interpretable decision paths, especially suitable for scenarios where decision logic needs to be explained to non-technical personnel.
SCAFFOLDING EFFECT
Reduce cognitive load
Interpretable decisions, balancing accuracy and simplicity. Compared to "black box" models, the decision trees produced by CART are highly visual, with transparent and interpretable decision paths, especially suitable for scenarios where decision logic needs to be explained to non-technical personnel.
Anchor fast decisions
Based on "recursive binary splitting + impurity reduction". Select the optimal split using Gini (classification) or MSE (regression), recursively build the tree, and prune to control complexity and prevent overfitting.
MINIMUM ACTION
In progress 0/1Practice this model in one real situation:
account_treeGenealogyexpand_more
menu_bookReferencesexpand_more
Source support: Explicit
- en.wikipedia.orghttps://en.wikipedia.org/wiki/Decision_tree_learningverified
PRIVATE NOTES · Only visible to you
SAVED Q&A
ENTRY Q&A · Private saving available
Ask with a clear boundary
thinkingmodels answers from published entry context only.
Your question is sent to thinkingmodels. The answer uses public entry context only.
RELATED MODELS