Concept

Bagging

Bootstrap aggregation, or bagging, is a way to help construct more powerful prediction models by reducing high variance of a statistical learning method. It is often used to improve the performance of decision trees. In order to reduce the variance, BB different bootstrapped training data sets are produced (typically taken from a single training data set). It then uses the bbth bootstrapped training data set to train the method to produce f^b(x)\hat{f}^{*b}(x). Afterwards, all the predictions are then averaged in order to get f^bag(x)=1Bb=1Bf^b(x)\hat{f}_{bag}(x) = \frac{1}{B} \sum_{b=1}^B \hat{f}^{*b}(x).

0

5

Updated 2020-04-05

Tags

Data Science

Related