Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in AI and Deep Learning by (50.2k points)

I am trying to implement an application that uses the AdaBoost algorithm. I know that AdaBoost uses a set of weak classifiers, but I don't know what these weak classifiers are. Can you explain it to me with an example and tell me if I have to create my own weak classifiers or I'm supposed to use some kind of algorithm?

1 Answer

0 votes
by (108k points)

Weak classifiers (or weak learners) are classifiers that perform only slightly better than a random classifier. These are thus classifiers that have some clue on how to predict the right labels, but not as much as strong classifiers have like, e.g., Naive Bayes, Neural Network or SVM.

Ada-boost classifier combines the weak classifier algorithm to form a strong classifier. A single algorithm may classify the objects poorly. But if we combine multiple classifiers with the selection of training set at every iteration and assigning the right amount of weight in the final voting, we can have a good accuracy score for the overall classifier.

In short Ada-boost,

  • It retrains the algorithm iteratively by choosing the training set based on the accuracy of previous training.

  • The weight-age of each trained classifier at any iteration depends on the accuracy achieved.

Browse Categories

...