gpt4 book ai didi

python - 在 python 中打印混淆矩阵的精度

转载 作者:行者123 更新时间:2023-12-01 02:22:40 27 4
gpt4 key购买 nike

这是我的代码:

from sklearn.metrics import confusion_matrix

cm = confusion_matrix(y_test, y_pred)

这就是我得到的。

       0    1
0 [[102 39]
1 [ 73 29]]

我怎样才能打印分数29/(29+39),这意味着我的混淆矩阵的精度?

最佳答案

您需要的是 classification report来自 sklearn.

据说它返回:

Text summary of the precision, recall, F1 score for each class.

这是一个例子:

from sklearn.metrics import classification_report
y_true = [0, 1, 0, 1, 0]
y_pred = [0, 0, 1, 1, 1]
target =["yes", "no"]
print(classification_report(y_true, y_pred, target_names=target))

和输出:

enter image description here

关于python - 在 python 中打印混淆矩阵的精度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47792803/

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