ML-learning-path

Self learning guide for machine learning

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

Boost Trees

Back to Index


Objective

Learn Boost Tree algorithms

Prerequisite Reading

Essentials Reading

Boost Trees

Extra Reading

Implementing Boosting trees in Scikit-Learn

Knowledge Check

Exercises

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

Difficulty Level

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

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

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

Try to separate them using BT

EX-2: Classification (★★☆)

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

Use Scikit’s make_regression to generate some sample data.

Use RandomForestRegressor to solve this

EX-4: Regression (★★☆)

More Exercises


Index