About 8,220 results
Open links in new tab
  1. AdaBoost - Wikipedia

    AdaBoost (short for Ada ptive Boost ing) is a statistical classification meta-algorithm formulated by Yoav Freund and Robert Schapire in 1995, who won the 2003 Gödel Prize for their work.

  2. AdaBoost in Machine Learning - GeeksforGeeks

    Nov 14, 2025 · AdaBoost is a boosting technique that combines several weak classifiers in sequence to build a strong one. Each new model focuses on correcting the mistakes of the previous one until all …

  3. AdaBoost - An Introduction to AdaBoost - machinelearningplus

    AdaBoost is one of the first boosting algorithms to have been introduced. It is mainly used for classification, and the base learner (the machine learning algorithm that is boosted) is usually a …

  4. AdaBoostClassifier — scikit-learn 1.8.0 documentation

    An AdaBoost regressor that begins by fitting a regressor on the original dataset and then fits additional copies of the regressor on the same dataset but where the weights of instances are adjusted …

  5. AdaBoost Algorithm: Complete Adaptive Boosting Guide

    Nov 6, 2025 · AdaBoost is a sequential ensemble method that builds a strong classifier by chaining together many weak learners, typically decision stumps (trees with a single split, depth = 1). Unlike …

  6. The main advantage of AdaBoost is that you can specify a large set of weak classi ers and the algorithm decides which weak classi er to use by assigning them non-zero weights.

  7. AdaBoost: Adavptive Boosting Algorithm in Machine Learning

    Dec 1, 2025 · AdaBoost (short for Adaptive Boosting) is a supervised machine learning algorithm used for classification. It is part of a family of algorithms known as Ensemble Methods.

  8. AdaBoost, Step-by-Step - Towards Data Science

    Aug 3, 2022 · AdaBoost is now continuing with the sequential building of stumps. What is special about AdaBoost is that the errors that the first stump makes will influence the model-building process of the …

  9. AdaBoost | Machine Learning Theory

    Above is a sketch of AdaBoost. We shall explain how to solve each base learner and update the weights in details. AdaBoost: Solving the Base Learner To solve the base learner, one need to use an …

  10. The AdaBoost algorithm of Freund and Schapire was the first practical boosting algorithm, and remains one of the most widely used and studied, with applications in numerous fields.