The confusion matrix is displaying data out of frame. I tried resizing the figure where the figure area is changing but the data is still out of frame. Any idea? Thanks in advance.
cm = confusion_matrix(decoded_y_test, predictions)
cm_df = pd.DataFrame(cm,
index = ['HIT','AVERAGE','FLOP'],
columns = ['HIT','AVERAGE','FLOP'])
plt.figure(figsize=(5.5,4))
sns.heatmap(cm_df, annot=True)