import numpy as np
import matplotlib.pyplot as plt
classes = ["Normal", "Benign", "Insitu", "Invasive"]
yClasses = ["", "Normal", "Benign", "Insitu", "Invasive", ""]
confusion_matrix = np.array([[1.0, 0.0, 0.0, 0.0],
[0.0, 1.0, 0.0, 0.0],
[0.07, 0.0, 0.86, 0.07],
[0.0, 0.04, 0.04, 0.92]])
plt.imshow(confusion_matrix, interpolation = "nearest", cmap = plt.cm.Blues)
plt.title("Normalized confusion_matrix")
plt.colorbar()
tick_marks = np.array([0.0, 1.0, 2.0, 3.0, 4.0])
plt.xticks([0, 1, 2, 3], classes)
plt.yticks([-0.5, 0.0, 1.0, 2.0, 3.0, 3.5], yClasses)
thresh = confusion_matrix.max() / 2.
iters = np.reshape([[[i, j] for j in range(4)] for i in range(4)], (confusion_matrix.size, 2))
for i, j in iters:
plt.text(j, i, format(confusion_matrix[i, j]))
plt.ylabel("Real label")
plt.xlabel("Prediction")
plt.tight_layout()
plt.savefig("confusion_matrix.png")
画混淆矩阵
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...