I have plotted the confusion matrix this way:
import pandas as pd
array = [[tn, fp],
[fn, tp]]
df_cm = pd.DataFrame(array, index = [i for i in classes],
columns = [i for i in classes])
plt.figure(figsize = (12, 12))
sns.heatmap(df_cm, annot = True, cmap = 'Oranges')
How to change scientific notation format to integer, without **"e"** ?
And how to remove colorbar