ML-learning-path

Self learning guide for machine learning

View the Project on GitHub elephantscale/ML-learning-path

Random Forest

Back to Index


Objective

Learn Random Forest algorithms

Prerequisite Reading

Essentials Reading

Random Forest

RF Feature Importance

Extra Reading

Implementing Random Forest in Scikit-Learn

Knowledge Check

Exercises

We will be using RF in the same exercises we did in Decision Trees section

Difficulty Level

★☆☆ - Easy
★★☆ - Medium
★★★ - Challenging
★★★★ - Bonus

EX-1: RF Classification - Synthetic data (★☆☆)

Use Scikit’s make_blobs or make_classification to generate some sample data.

Try to separate them using RF

EX-2: RF Classification (★★☆)

EX-3: RF Regression - Synthetic data (★☆☆)

Use Scikit’s make_regression to generate some sample data.

Use RandomForestRegressor to solve this

EX-4: RF Regression (★★☆)

More Exercises


Index