Skip to content
Snippets Groups Projects
Commit 7808fbd8 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent b15d2fe2
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ from sklearn.metrics import confusion_matrix
import matplotlib.pyplot as plt
def plot_confusion_matrix_values(correct_labels, predict_labels, labels, title='Confusion matrix', filename='confusion_matrix', normalize=False):
def confusion_matrix_values(correct_labels, predict_labels):
cm = confusion_matrix(correct_labels, predict_labels)
return cm
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment