如何修复混淆矩阵图的 google colab 切割

How to fix google colab cutting of plots of confusion matrices

我正在尝试在 google colab 上创建一个混淆矩阵,但是一旦我绘制它并尝试保存它,绘图的顶部和底部就会被切断。有没有什么办法解决这一问题?

%matplotlib inline
import seaborn as sn
import pandas as pd
import matplotlib.pyplot as plt
from google.colab import files
array =  [[1, 0, 0], 
       [0, 1, 0.0101], 
      [0, 0, 0.9898]]
df_cm = pd.DataFrame(array, index = ["REM", "Wake", "NREM"],
              columns = ["REM", "Wake", "NREM"],)
plt.figure(figsize = (10,7))
sn.heatmap(df_cm, annot=True, cmap="YlGnBu", linewidths=0.5)
plt.savefig("Fid.pdf", bbox_inches='tight')
files.download("Fid.pdf")

这是我得到的结果。 https://imgur.com/a/Y0RwHis

尝试恢复到 matplotlib 3.1.0

!pip install matplotlib==3.1.0

或者您可以使用预发布版本 (3.2.0rc)

!pip install --pre -U matplotlib