Random Forest : In Slides
I. Introduction to Random Forests and Ensembles Definition of Random Forests (RF): A collection of decision trees that almost always outperforms a single decision tree in terms of accuracy. It is arguably the most popular model in the family of ensemble models. Definition of Ensembles: A group of models used together to make predictions, viewing the group as a whole rather than individually. Conditions for a Working Ensemble: Each component model must be diverse (making independent predictions) and acceptable (better than a random model). Accuracy Boost: An example shows that combining three models, each with 70% accuracy, can boost the overall ensemble accuracy to 78.4%. II. Foundation and Creation of a Random Forest Bagging (Bootstrap Aggregation): Random forests are created using this special ensemble method. Bootstrapping involves creating samples by sampling the given dataset uniformly and with replacement . A boot...