Login using Social Account
     Continue with GoogleLogin using your credentials
Now we will evaluate our SVC model.
Import cross_val_score
from sklearn.model_selection import << you code goes here >>
Generate cross validation score for the model:
svm_scores = << your code goes here >>(svm_clf, X_train, y_train, cv=10)
svm_scores.mean()
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
Loading comments...