混淆矩阵的两种计算方法

更新时间:2023-07-20 18:30:41 阅读: 评论:0

房地产调研报告混淆矩阵的两种计算⽅法import numpy as np
朝鲜闵妃ics import classification_report
ics import confusion_matrix
def fast_hist(label_pred, label_true, num_class):
mask =(label_true >=0)&(label_true < num_class)
青春的味道作文hist = np.bincount(
num_class * label_true[mask].astype(int)+
label_pred[mask], minlength=num_class **2).reshape(num_class, num_class)
return hist
label_pred = np.array([np.arange(3, dtype='int32')]*3)
label_true = np.array([np.ones(3, dtype='int32')]*3)20000大写
# 第⼀种⽅式
关于友谊的名言num_class =3
hist = fast_hist(label_pred, label_true, num_class)
print(hist)
# 第⼆种⽅式
label_pred = shape(1,-1)[0]
label_true = shape(1,-1)[0]
print(classification_report(label_true, label_pred))
print(confusion_matrix(label_true, label_pred))
金牛座男明星
[[0 0 0]
[3 3 3]
[0 0 0]]
'recall', 'true', average, warn_for)
precision    recall  f1-score  support
工作总结简短
0      0.00      0.00      0.00        0
1      1.00      0.33      0.50        9
2      0.00      0.00      0.00        0
micro avg      0.33      0.33      0.33        9
macro avg      0.33      0.11      0.17        9
蘑菇的英文weighted avg      1.00      0.33      0.50        9
[[0 0 0]
[3 3 3]
[0 0 0]]

本文发布于:2023-07-20 18:30:41,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/1089439.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:矩阵   混淆   青春   简短   味道   总结   作文   工作
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图