AdaBoost

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search

AdaBoost, short for Adaptive Boosting, is a machine learning meta-algorithm formulated by Yoav Freund and Robert Schapire, who won the 2003 Gödel Prize for their work. It can be used in conjunction with many other types of learning algorithms to improve performance. The output of the other learning algorithms ('weak learners') is combined into a weighted sum that represents the final output of the boosted classifier. AdaBoost is adaptive in the sense that subsequent weak learners are tweaked in favor of those instances misclassified by previous classifiers. AdaBoost is sensitive to noisy data and outliers. In some problems it can be less susceptible to the overfitting problem than other learning algorithms. The individual learners can be weak, but as long as the performance of each one is slightly better than random guessing, the final model can be proven to converge to a strong learner.

Every learning algorithm tends to suit some problem types better than others, and typically has many different parameters and configurations to adjust before it achieves optimal performance on a dataset, AdaBoost (with decision trees as the weak learners) is often referred to as the best out-of-the-box classifier.[1][2] When used with decision tree learning, information gathered at each stage of the AdaBoost algorithm about the relative 'hardness' of each training sample is fed into the tree growing algorithm such that later trees tend to focus on harder-to-classify examples.

Overview[edit]

Problems in machine learning often suffer from the curse of dimensionality — each sample may consist of a huge number of potential features (for instance, there can be 162,336 Haar features, as used by the Viola–Jones object detection framework, in a 24×24 pixel image window), and evaluating every feature can reduce not only the speed of classifier training and execution, but in fact reduce predictive power, per the Hughes Effect.[3] Unlike neural networks and SVMs, the AdaBoost training process selects only those features known to improve the predictive power of the model, reducing dimensionality and potentially improving execution time as irrelevant features need not be computed.

Training[edit]

AdaBoost refers to a particular method of training a boosted classifier. A boost classifier is a classifier in the form

where each is a weak learner that takes an object as input and returns a value indicating the class of the object. For example, in the two class problem, the sign of the weak learner output identifies the predicted object class and the absolute value gives the confidence in that classification. Similarly, the th classifier is positive if the sample is in the positive class and negative otherwise.

Each weak learner produces an output hypothesis, , for each sample in the training set. At each iteration , a weak learner is selected and assigned a coefficient such that the sum training error of the resulting -stage boost classifier is minimized.

Here is the boosted classifier that has been built up to the previous stage of training, is some error function and is the weak learner that is being considered for addition to the final classifier.

Weighting[edit]

At each iteration of the training process, a weight is assigned to each sample in the training set equal to the current error on that sample. These weights can be used to inform the training of the weak learner, for instance, decision trees can be grown that favor splitting sets of samples with high weights.

Derivation[edit]

This derivation follows Rojas (2009):[4]

Suppose we have a data set where each item has an associated class , and a set of weak classifiers each of which outputs a classification for each item. After the -th iteration our boosted classifier is a linear combination of the weak classifiers of the form:

At the -th iteration we want to extend this to a better boosted classifier by adding a multiple of one of the weak classifiers:

So it remains to determine which weak classifier is the best choice for , and what its weight should be. We define the total error of as the sum of its exponential loss on each data point, given as follows:

Letting and for , we have:

We can split this summation between those data points that are correctly classified by (so ) and those that are misclassified (so ):

Since the only part of the right-hand side of this equation that depends on is , we see that the that minimizes is the one that minimizes , i.e. the weak classifier with the lowest weighted error (with weights ).

To determine the desired weight that minimizes with the that we just determined, we differentiate:

Setting this to zero and solving for yields:

We calculate the weighted error rate of the weak classifier to be , so it follows that:

which is the negative logit function multiplied by 0.5.

Thus we have derived the AdaBoost algorithm: At each iteration, choose the classifier , which minimizes the total weighted error , use this to calculate the error rate , use this to calculate the weight , and finally use this to improve the boosted classifier to .

Statistical understanding of boosting[edit]

Boosting is a form of linear regression in which the features of each sample are the outputs of some weak learner applied to . Specifically, in the case where all weak learners are known a priori, AdaBoost corresponds to a single iteration of the backfitting algorithm in which the smoothing splines are the minimizers of , that is: fits an exponential cost function and is linear with respect to the observation.[citation needed] Thus, boosting is a specific type of linear regression.

While regression tries to fit to as precisely as possible without loss of generalization, typically using least square error , the AdaBoost error function takes into account the fact that only the sign of the final result is used, thus can be far larger than 1 without increasing error. However, the exponential increase in the error for sample as increases results in excessive weight being assigned to outliers.

One feature of the choice of exponential error function is that the error of the final additive model is the product of the error of each stage, that is, . Thus it can be seen that the weight update in the AdaBoost algorithm is equivalent to recalculating the error on after each stage.

There is a lot of flexibility allowed in the choice of loss function. As long as the loss function is monotonic and continuously differentiable, the classifier is always driven toward purer solutions.[5] Zhang (2004) provides a loss function based on least squares, a modified Huber loss function:

This function is more well-behaved than LogitBoost for close to 1 or -1, does not penalise ‘overconfident’ predictions (), unlike unmodified least squares, and only penalises samples misclassified with confidence greater than 1 linearly, as opposed to quadratically or exponentially, and is thus less susceptible to the effects of outliers.

Boosting as gradient descent[edit]

Boosting can be seen as minimization of a convex loss function over a convex set of functions.[6] Specifically, the loss being minimized by AdaBoost is the exponential loss , whereas LogitBoost performs logistic regression, minimizing .

In the gradient descent analogy, the output of the classifier for each training point is considered a point in n-dimensional space, where each axis corresponds to a training sample, each weak learner corresponds to a vector of fixed orientation and length, and the goal is to reach the target point (or any region where the value of loss function is less than the value at that point), in the least number of steps. Thus AdaBoost algorithms perform either Cauchy (find with the steepest gradient, choose to minimize test error) or Newton (choose some target point, find that brings closest to that point) optimization of training error.

Example algorithm (Discrete AdaBoost)[edit]

With:

  • Samples
  • Desired outputs
  • Initial weights set to
  • Error function
  • Weak learners

For in :

  • Choose :
    • Find weak learner that minimizes , the weighted sum error for misclassified points
    • Choose
  • Add to ensemble:
  • Update weights:
    • for all i
    • Renormalize such that
    • (Note: It can be shown that at every step, which can simplify the calculation of the new weights.)

Choosing αt[edit]

is chosen as it can be analytically shown to be the minimizer of the exponential error function for Discrete AdaBoost.[7]

Minimize:

Using the convexity of the exponential function, and assuming that we have:

We then differentiate that expression with respect to and set it to zero to find the minimum of the upper bound:

Note that this only applies when , though it can be a good starting guess in other cases, such as when the weak learner is biased (), has multiple leaves () or is some other function . In such cases the choice of weak learner and coefficient can be condensed to a single step in which is chosen from all possible as the minimizer of by some numerical searching routine.

Variants[edit]

Real AdaBoost[edit]

The output of decision trees is a class probability estimate , the probability that is in the positive class.[5] Friedman, Hastie and Tibshirani derive an analytical minimizer for for some fixed (typically chosen using weighted least squares error):

.

Thus, rather than multiplying the output of the entire tree by some fixed value, each leaf node is changed to output half the logit transform of its previous value.

LogitBoost[edit]

LogitBoost represents an application of established logistic regression techniques to the AdaBoost method. Rather than minimizing error with respect to y, weak learners are chosen to minimize the (weighted least-squares) error of with respect to

where

That is is the Newton–Raphson approximation of the minimizer of the log-likelihood error at stage , and the weak learner is chosen as the learner that best approximates by weighted least squares.

As p approaches either 1 or 0, the value of becomes very small and the z term, which is large for misclassified samples, can become numerically unstable, due to machine precision rounding errors. This can be overcome by enforcing some limit on the absolute value of z and the minimum value of w

Gentle AdaBoost[edit]

While previous boosting algorithms choose greedily, minimizing the overall test error as much as possible at each step, GentleBoost features a bounded step size. is chosen to minimize , and no further coefficient is applied. Thus, in the case where a weak learner exhibits perfect classification performance, GentleBoost chooses exactly equal to , while steepest descent algorithms try to set . Empirical observations about the good performance of GentleBoost appear to back up Schapire and Singer's remark that allowing excessively large values of can lead to poor generalization performance.[7][8]

Early Termination[edit]

A technique for speeding up processing of boosted classifiers, early termination refers to only testing each potential object with as many layers of the final classifier necessary to meet some confidence threshold, speeding up computation for cases where the class of the object can easily be determined. One such scheme is the object detection framework introduced by Viola and Jones:[9] in an application with significantly more negative samples than positive, a cascade of separate boost classifiers is trained, the output of each stage biased such that some acceptably small fraction of positive samples is mislabeled as negative, and all samples marked as negative after each stage are discarded. If 50% of negative samples are filtered out by each stage, only a very small number of objects would pass through the entire classifier, reducing computation effort. This method has since been generalized, with a formula provided for choosing optimal thresholds at each stage to achieve some desired false positive and false negative rate.[10]

In the field of statistics, where AdaBoost is more commonly applied to problems of moderate dimensionality, early stopping is used as a strategy to reduce overfitting.[11] A validation set of samples is separated from the training set, performance of the classifier on the samples used for training is compared to performance on the validation samples, and training is terminated if performance on the validation sample is seen to decrease even as performance on the training set continues to improve.

Totally corrective algorithms[edit]

For steepest descent versions of AdaBoost, where is chosen at each layer t to minimize test error, the next layer added is said to be maximally independent of layer t:[12] it is unlikely to choose a weak learner t+1 that is similar to learner t. However, there remains the possibility that t+1 produces similar information to some other earlier layer. Totally corrective algorithms, such as LPBoost, optimize the value of every coefficient after each step, such that new layers added are always maximally independent of every previous layer. This can be accomplished by backfitting, linear programming or some other method.

Pruning[edit]

Pruning is the process of removing poorly performing weak classifiers to improve memory and execution-time cost of the boosted classifier. The simplest methods, which can be particularly effective in conjunction with totally corrective training, are weight- or margin-trimming: when the coefficient, or the contribution to the total test error, of some weak classifier falls below a certain threshold, that classifier is dropped. Margineantu & Dietterich[13] suggest an alternative criterion for trimming: weak classifiers should be selected such that the diversity of the ensemble is maximized. If two weak learners produce very similar outputs, efficiency can be improved by removing one of them and increasing the coefficient of the remaining weak learner.[14]

See also[edit]

References[edit]

  1. ^ Kégl, Balázs (20 December 2013). "The return of AdaBoost.MH: multi-class Hamming trees". arXiv:1312.6086 [cs.LG].
  2. ^ Joglekar, Sachin. "adaboost – Sachin Joglekar's blog". codesachin.wordpress.com. Retrieved 3 August 2016.
  3. ^ Hughes, G.F. (January 1968). "On the mean accuracy of statistical pattern recognizers". IEEE Transactions on Information Theory. 14 (1): 55–63. doi:10.1109/TIT.1968.1054102.
  4. ^ Rojas, R. (2009). AdaBoost and the super bowl of classifiers a tutorial introduction to adaptive boosting. Freie University, Berlin, Tech. Rep.
  5. ^ a b Friedman, Jerome; Hastie, Trevor; Tibshirani, Robert (1998). "Additive Logistic Regression: A Statistical View of Boosting". CiteSeerX 10.1.1.51.9525.
  6. ^ T. Zhang, "Statistical behavior and consistency of classification methods based on convex risk minimization", Annals of Statistics 32 (1), pp. 56-85, 2004.
  7. ^ a b Schapire, Robert; Singer, Yoram (1999). "Improved Boosting Algorithms Using Confidence-rated Predictions". CiteSeerX 10.1.1.33.4002.
  8. ^ Freund; Schapire (1999). "A Short Introduction to Boosting" (PDF):
  9. ^ Viola, Paul; Jones, Robert (2001). "Rapid Object Detection Using a Boosted Cascade of Simple Features". CiteSeerX 10.1.1.10.6807.
  10. ^ McCane, Brendan; Novins, Kevin; Albert, Michael (2005). "Optimizing cascade classifiers".
  11. ^ Trevor Hastie; Robert Tibshirani; Jerome Friedman (2009). The Elements of Statistical Learning: Data Mining, Inference, and Prediction (2nd ed.). New York: Springer. ISBN 978-0-387-84858-7.
  12. ^ Šochman, Jan; Matas, Jiří (2004). "Adaboost with Totally Corrective Updates for Fast Face Detection". ISBN 0-7695-2122-3.
  13. ^ Margineantu, Dragos; Dietterich, Thomas (1997). "Pruning Adaptive Boosting". CiteSeerX 10.1.1.38.7017.
  14. ^ Tamon, Christino; Xiang, Jie (2000). "On the Boosting Pruning Problem".