Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Solving Task Using AdaBoost Regressor | Commonly Used Boosting Models
Ensemble Learning

Challenge: Solving Task Using AdaBoost RegressorChallenge: Solving Task Using AdaBoost Regressor

AdaBoost Regressor is an ensemble learning algorithm used for regression tasks.

The principle of work of such a regressor coincides with the principle of work of the AdaBoost Classifier. The only difference is that we use some regression algorithms (linear regression, decision tree regressor, polynomial regression, etc.) as a base model.

The AdaBoostRegressor class in Python provides tools to train the model and make predictions.

Tarefa

Your task is to create a model to solve the regression task on the diabetes dataset:

  1. Use a simple Linear Regression model as the base model of an ensemble.
  2. Create an AdaBoost Regressor model with the 50 base estimators.
  3. Print MSE to estimate regression quality.

Tudo estava claro?

Seção 3. Capítulo 3
toggle bottom row
course content

Conteúdo do Curso

Ensemble Learning

Challenge: Solving Task Using AdaBoost RegressorChallenge: Solving Task Using AdaBoost Regressor

AdaBoost Regressor is an ensemble learning algorithm used for regression tasks.

The principle of work of such a regressor coincides with the principle of work of the AdaBoost Classifier. The only difference is that we use some regression algorithms (linear regression, decision tree regressor, polynomial regression, etc.) as a base model.

The AdaBoostRegressor class in Python provides tools to train the model and make predictions.

Tarefa

Your task is to create a model to solve the regression task on the diabetes dataset:

  1. Use a simple Linear Regression model as the base model of an ensemble.
  2. Create an AdaBoost Regressor model with the 50 base estimators.
  3. Print MSE to estimate regression quality.

Tudo estava claro?

Seção 3. Capítulo 3
toggle bottom row
some-alt