From 628391e44e5e4ca3dd21d3f4fd1769310ca19c0e Mon Sep 17 00:00:00 2001 From: Alice BRENON <alice.brenon@ens-lyon.fr> Date: Thu, 21 Mar 2024 15:12:04 +0100 Subject: [PATCH] Lower the size of confusion matrices to get larger text --- GEODE/Visualisation/ConfusionMatrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GEODE/Visualisation/ConfusionMatrix.py b/GEODE/Visualisation/ConfusionMatrix.py index 042ddca..df0f5aa 100644 --- a/GEODE/Visualisation/ConfusionMatrix.py +++ b/GEODE/Visualisation/ConfusionMatrix.py @@ -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 ) -- GitLab