Project - Predicting Titanic Passenger Survival using Machine Learning and Python

You are currently auditing this course.
19 / 21

Titanic Machine Learning Project - Evaluate our SVC Model

Now we will evaluate our SVC model.

INSTRUCTIONS

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()
Get Hint See Answer

Loading comments...