Last active
August 31, 2017 06:04
-
-
Save duyet/55bf2c3f4cd124a6a32b96463b92f505 to your computer and use it in GitHub Desktop.
A pretty confusion matrix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def plot_confusion_matrix(cm, classes, | |
| normalize=False, | |
| title='Confusion matrix', | |
| cmap=plt.cm.Blues): | |
| """ | |
| See full source and example: | |
| http://scikit-learn.org/stable/auto_examples/model_selection/plot_confusion_matrix.html | |
| This function prints and plots the confusion matrix. | |
| Normalization can be applied by setting `normalize=True`. | |
| """ | |
| plt.imshow(cm, interpolation='nearest', cmap=cmap) | |
| plt.title(title) | |
| plt.colorbar() | |
| tick_marks = np.arange(len(classes)) | |
| plt.xticks(tick_marks, classes, rotation=45) | |
| plt.yticks(tick_marks, classes) | |
| if normalize: | |
| cm = cm.astype('float') / cm.sum(axis=1)[:, np.newaxis] | |
| print("Normalized confusion matrix") | |
| else: | |
| print('Confusion matrix, without normalization') | |
| thresh = cm.max() / 2. | |
| for i, j in itertools.product(range(cm.shape[0]), range(cm.shape[1])): | |
| plt.text(j, i, cm[i, j], | |
| horizontalalignment="center", | |
| color="white" if cm[i, j] > thresh else "black") | |
| plt.tight_layout() | |
| plt.ylabel('True label') | |
| plt.xlabel('Predicted label') | |
| clf = MultinomialNB() | |
| clf.fit(tfidf_train, y_train) | |
| pred = clf.predict(tfidf_test) | |
| score = metrics.accuracy_score(y_test, pred) | |
| print("accuracy: %0.3f" % score) | |
| cm = metrics.confusion_matrix(y_test, pred, labels=['FAKE', 'REAL']) | |
| plot_confusion_matrix(cm, classes=['FAKE', 'REAL']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment