04pallav
9/11/2017 - 10:23 PM

Confusion Matrix and Classification Report

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)