rf-universally-applicable-ensemble
OUT derived (depth 1)
Created 2026-06-21T10:01:28+00:00
Random forests are universally applicable ensemble methods — no overfitting from added trees, built-in OOB validation, and robust variance reduction make them a safe default for any problem.
Justifications
SL — Three robustness properties suggest universal applicability, but poor performance on linear correlations and multiple categorical variables contradicts this — currently OUT
Antecedents (all must be IN):
- IN random-forest-more-trees-no-overfitting — Adding more trees to a random forest does not cause overfitting; training and test error plateau after a sufficient number of trees.
- IN random-forest-oob-error-no-test-set — Out-of-bag (OOB) error in random forests provides a valid generalization error estimate without requiring a separate test set, since each training sample is left out of approximately 37% of bootstrap samples.
- IN random-forest-reduces-variance-not-bias — Random forests reduce variance (not bias) compared to individual decision trees by averaging many decorrelated trees.
Unless (any of these IN defeats this justification):
- IN rf-no-benefit-linear-correlation — Random forests may not improve accuracy over a single decision tree when features are linearly correlated with the target variable.
- IN rf-struggles-multiple-categorical-variables — Random forests underperform on problems involving multiple categorical variables.