Train the GB regressor
You'll now train the gradient boosting regressor gb that you instantiated in the previous exercise and predict test set labels.
The dataset is split into 80% train and 20% test. Feature matrices X_train and X_test, as well as the arrays y_train and y_test are available in your workspace. In addition, we have also loaded the model instance gb that you defined in the previous exercise.
Questo esercizio fa parte del corso
Machine Learning with Tree-Based Models in Python
Istruzioni dell'esercizio
- Fit
gbto the training set. - Predict the test set labels and assign the result to
y_pred.
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
# Fit gb to the training set
____
# Predict test set labels
y_pred = ____