Bagging

From Cohen Courses
Revision as of 18:00, 30 November 2010 by PastStudents (talk | contribs)
Jump to navigationJump to search

Summary

Bagging (a.k.a bootstrap aggregating) is an ensemble machine learning method introduced by Leo Brieman for classification and regression, which generates multiple versions of a predictor, by making bootstrap replications of the learning set and using them as the new learning set, and uses them to produce an aggregated predictor, which does voting over the different versions for classification and averages outcomes when predicting numerical values. Brieman showed that bagging can best improve accuracy when the predictors are good but unstable (when perturbing the learning set results in significant changes in the predictors).

Procedure

...

References / Links

Relevant Papers