CommencerCommencer gratuitement

Training a model

In the video, you learned how to train a model using scikit learn. In this exercise, you will demonstrate your new skills by training a support vector classifier (SVC) model on the heart disease dataset. Your job is to split the data into training and testing portions, define the necessary model with the correct parameters, and train it on the split data. The heart disease data features and target have been imported as heart_disease_X and heart_disease_y, respectively.

Cet exercice fait partie du cours

End-to-End Machine Learning

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Import required modules
from ____.____ import ____
from ____.____ import ____
Modifier et exécuter le code