Bagging

In bagging, we create many different copies of same data by slight difference (in data points and/or number of features). Then we train same number of weak learner on those data and combine them for final prediction.

One most used bagging method is Random Forest.


Related Notes