Random Forest

random-forestcartensemblemachine-learningbaggingvariable-importanceout-of-bag

Definition

A random forest (Breiman 2001) is an ensemble of decision trees (CART) in which each tree is grown on a bootstrap sample of the data and each node is split using a random subset of the candidate features; predictions are formed by majority vote (classification) or averaging (regression). The double randomization — bootstrap rows plus random features — decorrelates the trees so that averaging sharply reduces variance while keeping bias low.

Key Ideas

Why It Matters

Open Questions

Related