gpt4 book ai didi

python - 混淆矩阵中的白线?

转载 作者:行者123 更新时间:2023-11-30 23:16:14 37 4
gpt4 key购买 nike

我有一个关于 numpy 矩阵的非常普遍的问题:我尝试根据行对结果进行标准化,但我得到了一些奇怪的白线。这是因为一些零卡在除法中的某个地方吗?

这是代码:

import numpy as np
from matplotlib.pylab import *

def confusion_matrix(results,tagset):
# results : list of tuples (predicted, true)
# tagset : list of tags
np.seterr(divide='ignore', invalid='ignore')
mat = np.zeros((len(tagset),len(tagset)))
percent = [0,0]
for guessed,real in results :
mat[tagset.index(guessed),tagset.index(real)] +=1
if guessed == real :
percent[0] += 1
percent[1] += 1
else :
percent[1] += 1
mat /= mat.sum(axis=1)[:,np.newaxis]
matshow(mat,fignum=100)
xticks(arange(len(tagset)),tagset,rotation =90,size='x-small')
yticks(arange(len(tagset)),tagset,size='x-small')
colorbar()
show()
#print "\n".join(["\t".join([""]+tagset)]+["\t".join([tagset[i]]+[str(x) for x in
(mat[i,:])]) for i in xrange(mat.shape[1])])
return (percent[0] / float(percent[1]))*100

感谢您的宝贵时间! (我希望答案不要太明显)

最佳答案

简而言之,您有一些标签,但从未猜测到该特定标签。因为您通过猜测标签的次数进行标准化,所以您有一行 0/0,它会生成 np.nan。默认情况下,matplotlib 的颜色条会将 NaN 设置为没有填充颜色,从而导致轴的背景显示出来(默认情况下为白色)。

这是一个重现您当前问题的简单示例:

import numpy as np
import matplotlib.pyplot as plt

def main():
tags = ['A', 'B', 'C', 'D']
results = [('A', 'A'), ('B', 'B'), ('C', 'C'), ('A', 'D'), ('C', 'A'),
('B', 'B'), ('C', 'B')]
matrix = confusion_matrix(results, tags)
plot(matrix, tags)
plt.show()

def confusion_matrix(results, tagset):
output = np.zeros((len(tagset), len(tagset)), dtype=float)
for guessed, real in results:
output[tagset.index(guessed), tagset.index(real)] += 1
return output / output.sum(axis=1)[:, None]

def plot(matrix, tags):
fig, ax = plt.subplots()
im = ax.matshow(matrix)
cb = fig.colorbar(im)
cb.set_label('Percentage Correct')

ticks = range(len(tags))
ax.set(xlabel='True Label', ylabel='Predicted Label',
xticks=ticks, xticklabels=tags, yticks=ticks, yticklabels=tags)
ax.xaxis.set(label_position='top')
return fig

main()

enter image description here

如果我们看一下混淆矩阵:

array([[ 0.5  ,  0.   ,  0.   ,  0.5  ],
[ 0. , 1. , 0. , 0. ],
[ 0.333, 0.333, 0.333, 0. ],
[ nan, nan, nan, nan]])

如果您想避免标签无法被猜测时出现的问题,您可以执行类似以下操作:

def confusion_matrix(results, tagset):
output = np.zeros((len(tagset), len(tagset)), dtype=float)
for guessed, real in results:
output[tagset.index(guessed), tagset.index(real)] += 1
num_guessed = output.sum(axis=1)[:, None]
num_guessed[num_guessed == 0] = 1
return output / num_guessed

其产量(其他一切相同):

enter image description here

关于python - 混淆矩阵中的白线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27803740/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com