AdaBoost: Wikis

AdaBoost: Wikis

<a href='http://cas.criteo.com/delivery/ck.php?n=8aaca650&cb=4548c0a4b8' target='_blank'><img src='http://cas.criteo.com/delivery/avw.php?zoneid=20119&n=8aaca650&ct0=' border='0' alt='' /></a>
  

Note: Many of our articles have direct quotes from sources you can cite, within the Wikipedia article! This article doesn't yet, but we're working on it! See more info or our list of citable articles.

Encyclopedia

Updated live from Wikipedia, last check: April 25, 2012 08:40 UTC (45 seconds ago)


来源:http://www.thefullwiki.org/AdaBoost

From Wikipedia, the free encyclopedia

AdaBoost, short for Adaptive Boosting, is a machine learning algorithm, formulated by Yoav Freund and Robert Schapire. It is a meta-algorithm, and can be used in conjunction with many other learning algorithms to improve their performance. AdaBoost is adaptive in the sense that subsequent classifiers built are tweaked in favor of those instances misclassified by previous classifiers. AdaBoost is sensitive to noisy data and outliers. However it is less susceptible to the overfitting problem than most learning algorithms.

AdaBoost calls a weak classifier repeatedly in a series of rounds  t = 1,\ldots,T. For each call a distribution of weights Dt is updated that indicates the importance of examples in the data set for the classification. On each round, the weights of each incorrectly classified example are increased (or alternatively, the weights of each correctly classified example are decreased), so that the new classifier focuses more on those examples.

Contents

  • 1 The algorithm for the binary classification task
  • 2 Statistical Understanding of Boosting
  • 3 See also
  • 4 References
  • 5 External links

The algorithm for the binary classification task

Given: where x_{i} \in X,\, y_{i} \in Y = \{-1, +1\}

Initialize

For t = 1,\ldots,T:

  • Find the classifier that minimizes the error with respect to the distribution Dt:
h_{t} = \arg \min_{h_{j} \in \mathcal{H}} \epsilon_{j}, where  \epsilon_{j} = \sum_{i=1}^{m} D_{t}(i)[y_i \ne h_{j}(x_{i})]
  • if εt > = 0.5 then stop.
  • Choose , typically where εt is the weighted error rate of classifier ht.
  • Update:
D_{t+1}(i) = \frac{ D_t(i) \exp(-\alpha_t \cdot y_i \cdot h_t(x_i)) }{ Z_t }
where Zt is a normalization factor (chosen so that Dt + 1 will be a probability distribution, i.e. sum one over all x).

Output the final classifier:

H(x) = \textrm{sign}\left( \sum_{t=1}^{T} \alpha_{t}h_{t}(x)\right)

The equation to update the distribution Dt is constructed so that:

e^{- \alpha_{t} y_{i} h_{t}(x_{i})} \begin{cases} <1, & y(i)=h_{t}(x_{i}) \\ >1, & y(i) \ne h_{t}(x_{i}) \end{cases}

Thus, after selecting an optimal classifier h_{t} \, for the distribution D_{t} \,, the examples that the classifier h_{t} \, identified correctly are weighted less and those that it identified incorrectly are weighted more. Therefore, when the algorithm is testing the classifiers on the distribution D_{t+1} \,, it will select a classifier that better identifies those examples that the previous classifer missed.

Statistical Understanding of Boosting

Boosting can be seen as minimization of a convex loss function over a convex set of functions. [1] Specifically, the loss being minimized is the exponential loss

and we are seeking a function

f = αtht
  t  

See also

  • Bootstrap aggregating
  • LPBoost
  • GentleBoost

References

  1. ^ T. Zhang, "Convex Risk Minimization", Annals of Statistics, 2004.

External links

  • icsiboost, an open source implementation of Boostexter
  • NPatternRecognizer , a fast machine learning algorithm library written in C#. It contains support vector machine, neural networks, bayes, boost, k-nearest neighbor, decision tree, ..., etc.
  • Adaboost in C++, an implementation of Adaboost in C++ and boost by Antonio Gulli
  • Boosting.org, a site on boosting and related ensemble learning methods
  • JBoost, a site offering a classification and visualization package, implementing AdaBoost among other boosting algorithms.
  • AdaBoost Presentation summarizing Adaboost (see page 4 for an illustrated example of performance)
  • A Short Introduction to Boosting Introduction to Adaboost by Freund and Schapire from 1999
  • A decision-theoretic generalization of on-line learning and an application to boosting Journal of Computer and System Sciences, no. 55. 1997 (Original paper of Yoav Freund and Robert E.Schapire where Adaboost is first introduced.)
  • An applet demonstrating AdaBoost
  • Ensemble Based Systems in Decision Making, R. Polikar, IEEE Circuits and Systems Magazine, vol.6, no.3, pp. 21-45, 2006. A tutorial article on ensemble systems including pseudocode, block diagrams and implementation issues for AdaBoost and other ensemble learning algorithms.
  • A Matlab Implementation of AdaBoost
  • Additive logistic regression: a statistical view of boosting by Jerome Friedman, Trevor Hastie, Robert Tibshirani. Paper introducing probabilistic theory for AdaBoost, and introducing GentleBoost
  • OpenCV implementation of several boosting variants
  • MATLAB AdaBoost toolbox. Includes Real AdaBoost, Gentle AdaBoost and Modest AdaBoost implementations.
  • AdaBoost and the Super Bowl of Classifiers - A Tutorial on AdaBoost.







Got something to say? Make a comment.
Your name
Your email address
Message
Please enter the solution to case below
12+8=
 




 



你可能感兴趣的:(AdaBoost: Wikis)