Back

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

We know there are like a thousand of classifiers, recently I was told that some people say AdaBoost is like the out of the shell one.

  • Are There better algorithms (with that voting idea)

  • What is the state of the art in the classifiers? Do you have an example?

1 Answer

0 votes
by (108k points)

Firstly, AdaBoost is a meta-algorithm that is used in conjunction with (on top of) your favorite classifier. It 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 a 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. Secondly, classifiers that work well in one problem domain often don't work well in another. 

You can refer the following link for knowing the up-to-date comparison of state-of-the-art classification algorithms: https://www.sciencedirect.com/science/article/pii/S0957417417302397

Browse Categories

...