Published online by Cambridge University Press: 05 June 2012
The clearest path into the Universe is through a forest wilderness.
John MuirThe world's a forest, in which all lose their way;
though by a different path each goes astray.
George VilliersHaving discussed single decision trees we move on to large collections of trees and Random Forests, RF. As a single scheme this began as a collection of methods smartly pulled together by Leo Breiman and Adele Cutler. They built on previous work, for example in doing bootstrap draws from the data upon which to train single trees, and also helped promote the novel idea of randomly sampling from the list of features; see Note 1.
RF continues to demonstrate excellent performance on a wide range of data. Currently it is our preferred learning machine, for its speed, convenience, and generally good performance.
Random Forests in less than five minutes
Here is an outline of the Random Forests procedure.
(1) Sample the data, using bootstrap draws; keep track of the data selected, and call the data not selected the (OOB) out-of-bag data; recall that bootstrap sampling means sampling with replacement.
(2) Sample the list of features; here we don't sample with replacement (as in boot draws), choosing in each draw only a small number of the features from the complete list (this small number is, basically, the main user-specified parameter for the whole RF scheme).
(3) Grow a single decision tree using the data and features selected; don't bother with pruning or finding the optimal size or complexity of the tree.
[…]
To save this book to your Kindle, first ensure [email protected] is added to your Approved Personal Document E-mail List under your Personal Document Settings on the Manage Your Content and Devices page of your Amazon account. Then enter the ‘name’ part of your Kindle email address below. Find out more about saving to your Kindle.
Note you can select to save to either the @free.kindle.com or @kindle.com variations. ‘@free.kindle.com’ emails are free but can only be saved to your device when it is connected to wi-fi. ‘@kindle.com’ emails can be delivered even when you are not connected to wi-fi, but note that service fees apply.
Find out more about the Kindle Personal Document Service.
To save content items to your account, please confirm that you agree to abide by our usage policies. If this is the first time you use this feature, you will be asked to authorise Cambridge Core to connect with your account. Find out more about saving content to Dropbox.
To save content items to your account, please confirm that you agree to abide by our usage policies. If this is the first time you use this feature, you will be asked to authorise Cambridge Core to connect with your account. Find out more about saving content to Google Drive.