Confusion Matrix and Classification Report
y_pred = model.predict(X_trainsc) print metrics.confusion_matrix(y_test, y_pred) print metrics.classification_report(y_test, y_pred)