gpt4 book ai didi

python - 混淆矩阵 "Can' t处理多类和未知的混合"

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

我的混淆矩阵显示了一个我无法理解的错误。我想要一个混淆矩阵来显示两个数组 y_predy_test 之间的混淆。

import numpy as np
import matplotlib.pyplot as plt
from sklearn.metrics import confusion_matrix, roc_curve, auc
from sklearn.metrics import accuracy_score
import pylab as pl

# Code that fills up two numpy arrays, y_test and y_pred with integers

print y_test.shape
print y_pred.shape

cm = confusion_matrix(y_test,y_pred)
plt.matshow(cm)
plt.title('Confusion matrix')
plt.colorbar()
plt.ylabel('True label')
plt.xlabel('Predicted label')
plt.show()

错误是:

Traceback (most recent call last):
File "C:\work_asaaki\code\test_samme_46_classes_unconfused.py", line 159, in <module>
cm = confusion_matrix(y_test,y_pred)
File "C:\Anaconda\lib\site-packages\sklearn\metrics\metrics.py", line 742, in confusion_matrix
y_type, y_true, y_pred = _check_clf_targets(y_true, y_pred)
File "C:\Anaconda\lib\site-packages\sklearn\metrics\metrics.py", line 115, in _check_clf_targets
"".format(type_true, type_pred))
ValueError: Can't handle mix of multiclass and unknown

这个错误是什么意思?当我打印 y_pred.shapey_test.shape 时,我得到相同的形状(318L)。两个数组的值范围都在 0 到 29 之间。

最佳答案

没关系,我找到了答案,很简单。问题是在代码(未显示)中,我使用 dtype=object 将 y_pred 填充为 numpy 数组,喜欢这样:

y_pred = np.array(pickle.load(file("PATH_TO_FILE")), dtype=object)

我删除了 dtype=object 部分,它工作得很好。

关于python - 混淆矩阵 "Can' t处理多类和未知的混合",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28321117/

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