January 13, 2021
Following are differences between Bagging & boosting:
- Like Bagging, Boosting also employs bootstrapping but the resampling in done is a strategic manner to ensure that the consecutive Decision Tree gets more informative training data.
- There is a mathematical certainty that ensemble model built using Boosting would perform better than individual algorithms, using which it was built. No such thing can be said about bagging.
- In Boosting sequential learning happens, while in bagging all the individual models work independently.
- In Bagging equal weightage is given to output from all trees while Boosting algorithm gives gives preference to high performers.
by : Monis Khan
Quick Summary:
Following are differences between Bagging & boosting: Like Bagging, Boosting also employs bootstrapping but the resampling in done is a strategic manner to ensure that the consecutive Decision Tree gets more informative training data. There is a mathematical certainty that ensemble model built using Boosting would perform better than individual algorithms, using which it was […]