混乱矩阵显示的数据不合帧。我尝试调整图的大小,以改变图的区域,但数据仍然超出框架。任何想法?预先感谢。
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)
答案 0 :(得分:0)
这似乎与此matplotlib/seaborn: first and last row cut in half of heatmap plot
类似您正在使用哪个版本的matplotlib?恢复到版本3.1.0似乎可以解决此问题。