Lead Data Scientist Question:
Download Job Interview Questions and Answers PDF
Tell me what is Random Forest? How does it work?
Answer:
Random forest is a versatile machine learning method capable of performing both regression and classification tasks. It is also used for dimentionality reduction, treats missing values, outlier values. It is a type of ensemble learning method, where a group of weak models combine to form a powerful model.
In Random Forest, we grow multiple trees as opposed to a single tree. To classify a new object based on attributes, each tree gives a classification. The forest chooses the classification having the most votes(Over all the trees in the forest) and in case of regression, it takes the average of outputs by different trees.
In Random Forest, we grow multiple trees as opposed to a single tree. To classify a new object based on attributes, each tree gives a classification. The forest chooses the classification having the most votes(Over all the trees in the forest) and in case of regression, it takes the average of outputs by different trees.
Download Lead Data Scientist Interview Questions And Answers
PDF
Previous Question | Next Question |
Tell me what is bias, variance trade off? | Do you know what regularization is and why it is useful? |