how to make a figure of confsuion matrix done with sklearn bigger, in a way to wrapp all the numbers ina a normal way and not like my result. Hier is my code:
import sklearn
import numpy as np
from mlxtend.plotting import plot_confusion_matrix
import matplotlib.pyplot as plt
y_pred = model.predict(X_test)
Y_pred_classes = np.argmax(y_pred,axis=1)
Y_true = np.argmax(Y_test,axis=1)
confusion_mtx = sklearn.metrics.confusion_matrix(Y_true, Y_pred_classes)
plot_confusion_matrix(confusion_mtx, class_names = allCategories() )