IniziaInizia gratis

Train the SGB regressor

In this exercise, you'll train the SGBR sgbr instantiated in the previous exercise and predict the test set labels.

The bike sharing demand dataset is already loaded processed for you; it is split into 80% train and 20% test. The feature matrices X_train and X_test, the arrays of labels y_train and y_test, and the model instance sgbr that you defined in the previous exercise are available in your workspace.

Questo esercizio fa parte del corso

Machine Learning with Tree-Based Models in Python

Visualizza il corso

Istruzioni dell'esercizio

  • Fit sgbr to the training set.
  • Predict the test set labels and assign the results to y_pred.

Esercizio pratico interattivo

Prova a risolvere questo esercizio completando il codice di esempio.

# Fit sgbr to the training set
____

# Predict test set labels
y_pred = ____
Modifica ed esegui il codice