Boosting

From Cohen Courses
Revision as of 18:35, 13 October 2011 by Brendan (talk | contribs)
Jump to navigationJump to search

Summary

The underlying idea of this method is to combine simple "rules" or weak learners, each performing only slightly better than random, to form an ensemble such that the performance of the single ensemble member is improved, i.e "boosted". Let be a set of hypotheses, and consider the composite ensemble hypothesis

Here denotes the coefficient with which the ensemble member is combined; both and the learner or the hypotheses are to be learned within the Boosting procedure. The coefficients (or weights) are set in iterations. The intuitive idea is that examples that are misclassified get higher weights in the next iteration, for instance the examples near the decision boundary are usually harder to classify and therefor get high weights after a few iterations.

AdaBoost

Tha AdaBoost algorithm by Freund and Schapire is one of the most successful Boosting algorithm. We focus on the problem of binary classfication and present the AdaBoost algorithm for it.

AdaBoost.jpg

A non negative weighting is assigned to the data at step , and a weak learner is constructed based on . This weighting is updated at each iteration according to the weighted error incurred by the weak learner in the last iteration. At each step , the weak learner is required to produce a small weighted empirical error defined by

After selecting the hypothesis , its weight is computed such that it minimizes a certain loss function. In AdaBoost one minimizes

,

where is the combined hypotheses of the previous iteration given by

For AdaBoost it has been shown that can be computed analytically leading to the expression in step (3c) of the algorithm. Based on the new combined hypotheses, the weighting of the sample is updated as in step (3d) of algorithm. The initial weighting is chosen uniformly:

Relevant Papers

Comment

An interesting take on boosting is contained in Friedman et al. 2000, "Additive Logistic Regression": http://www.stanford.edu/~hastie/Papers/AdditiveLogisticRegression/alr.pdf They also talk about it in the Hastie et al. "ESL" textbook.

--Brendan 22:35, 13 October 2011 (UTC)