Booz Allen Hamilton Interview Question

Describe the difference between a Boosted Decision Tree and a Random Forest

Interview Answer

Anonymous

May 9, 2016

A Random Forest is a bagging algorithm which uses parallel models to reduce variance. A Boosted Decision Tree is an iterative algorithm that improves on the decision tree model at each iteration.

3