AdaBoost Flashcards
What is AdaBoost?
AdaBoost also called Adaptive Boosting is a technique in Machine Learning used as an Ensemble Method.
What is the most common algorithm used with AdaBoost ?
Decision trees with one level that means with Decision trees with only 1 split. These trees are also called Decision Stumps.
How do Decision Stumps work?
What this algorithm does is that it builds a model and gives equal weights to all the data points. It then assigns higher weights to points that are wrongly classified. Now all the points which have higher weights are given more importance in the next model. It will keep training models until and unless a lowe error is received.
What happens when the classifier predicts half right and half wrong ?
Then the Total Error = 0.5 and the importance (amount of say) of the classifier will be 0.
The amount of say (alpha) will be negative when ?
the sample is correctly classified.
The amount of say (alpha) will be positive when?
the sample is miss-classified.