我尝试使用https://scikit-learn.org/stable/auto_examples/model_selection/plot_confusion_matrix.html#sphx-glr-auto-examples-model-selection-plot-confusion-matrix-py中的混淆矩阵示例代码,但结果却很奇怪。 Y轴的边缘已被切割。我为程序使用jupyter笔记本。谁能告诉我如何解决这个问题?
https://i.ibb.co/98RQCgF/download-1.png
我也尝试过scikitplot中的plot_confusion_matrix,但结果是相同的。
import scikitplot as skplt
skplt.metrics.plot_confusion_matrix(
val_y,
y_pred_,
figsize=(10,10))