|
Adaptive Boosting |
|
|
|
Bootstrap Estimation |
||
|
From Wikipedia: "Bootstrapping alludes to a German legend about a Baron Münchhausen,
who was able to lift himself out of a swamp by pulling himself up by his own hair. In later
versions he was using his own boot straps to pull himself out of the sea which gave rise to
the term bootstrapping."
See also cross-validation and jackknife. |
||
|
Bagging/Aggregate Bootstrapping/Bootstrap Aggregating |
||
|
Bagging is used to increase a classifier's stability, while reducing its variance. It follows these steps:
|
||
|
Boosting (Shapire 1989) |
||
|
. It follows these steps:
|
||
|
AdaBoost (Freund, Schapire) |
||
|
Adaboost stands for adaptive boosting. Given: classified samples: (x0,0,x0,1,...x0,n, c0), (x1,0,x1,1,...x1,n, c1), ..., (xN,0,xN,1,...xN,n, cN) where the classes ci are +1 or -1 (i=1..N) initial weights are starting all equal: w0,i = 1/N (i=1..N) Algorithm: for training iterations t (t=1..T) for all i classifiers (i=1..N): 1) Get all the classes back from the classifiers: hi 2) Calculate the error: E = P(hi!=ci)
3) Calculate alpha:
4) Update the weights:
5)
Result:
|
![]() ![]() ![]() |
|
| . | ||
|
|
||
| . | ||
| Links | ||
|
||
Compiled by Kristof Van Laerhoven.