Skip to content
Snippets Groups Projects
Commit 628391e4 authored by Alice Brenon's avatar Alice Brenon
Browse files

Lower the size of confusion matrices to get larger text

parent da045343
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ import seaborn
from sklearn.metrics import confusion_matrix
def heatmap(matrix, filePath, labels, **kwargs):
plot.figure(figsize=(16,13))
plot.figure(figsize=(8,7))
ax = seaborn.heatmap(
matrix, xticklabels=labels, yticklabels=labels, **kwargs
)
......
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