Writing on AI, education, and running a business
• 5 min read
Bagging, aka bootstrap aggregation, is a relatively simple way to increase the power of a predictive statistical model by taking multiple random samples(with replacement) from your training data set, and using each of these samples to construct a separate model and separate predictions for your test set. These predictions are then averaged to create a, hopefully more accurate, final prediction value.
• 4 min read
I recently posted an [introduction](http://viksalgorithms.blogspot.com/2012/01 /introduction-to-kaggle-algorithmic.html) to the Kaggle Algorithmic Trading Challenge, which I competed in.