InterviewSolution
Saved Bookmarks
| 1. |
What is a Random Forest? How does it work? |
|
Answer» Random forest is a versatile MACHINE learning method capable of performing both regression and classification tasks. Like bagging and boosting, random forest WORKS by combining a set of other tree models. Random forest builds a tree from a random sample of the columns in the test data. Here’s are the steps how a random forest creates the trees:
|
|