2- Random Forests

This lesson will provide an overview of random forests and go over the steps involved in their implementation.

We'll cover the following...

Introduction to random forests

While decision trees are useful for explaining a model’s decision structure, they are also prone to overfitting.

In general, decision trees are accurate at decoding patterns using the training data, but since there is a fixed sequence of decision paths, any variance in the test data or any new data can result in poor predictions. The fact that there is only one tree design also limits the ...