matplotlib画混淆矩阵与正确率曲线的实例代码
作者:小鱼爱吃肉 时间:2021-09-21 05:41:10
混淆矩阵
混淆矩阵(Confusion Matrix)是机器学习中用来总结分类模型预测结果的一个分析表,是模式识别领域中的一种常用的表达形式。它以矩阵的形式描绘样本数据的真实属性和分类预测结果类型之间的关系,是用来评价分类器性能的一种常用方法。
我们可以通过一个简单的例子来直观理解混淆矩阵
#!/usr/bin/python3.5
# -*- coding: utf-8 -*-
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif'] = ['FangSong'] #可显示中文字符
plt.rcParams['axes.unicode_minus']=False
classes = ['a','b','c','d','e','f','g']
confusion_matrix = np.array([(99,1,2,2,0,0,6),(1,98,7,6,2,1,1),(0,0,86,0,0,2,0),(0,0,0,86,1,0,0),(0,0,0,1,94,1,0),(0,1,5,1,0,96,8),(0,0,0,4,3,0,85)],dtype=np.float64)
plt.imshow(confusion_matrix, interpolation='nearest', cmap=plt.cm.Oranges) #按照像素显示出矩阵
plt.title('混淆矩阵')
plt.colorbar()
tick_marks = np.arange(len(classes))
plt.xticks(tick_marks, classes, rotation=-45)
plt.yticks(tick_marks, classes)
thresh = confusion_matrix.max() / 2.
#iters = [[i,j] for i in range(len(classes)) for j in range((classes))]
#ij配对,遍历矩阵迭代器
iters = np.reshape([[[i,j] for j in range(7)] for i in range(7)],(confusion_matrix.size,2))
for i, j in iters:
plt.text(j, i, format(confusion_matrix[i, j]),fontsize=7) #显示对应的数字
plt.ylabel('真实类别')
plt.xlabel('预测类别')
plt.tight_layout()
plt.show()
正确率曲线
fig ,ax= plt.subplots()
plt.plot(np.arange(iterations), fig_acc,'b')
plt.plot(np.arange(iterations), fig_realacc, 'r')
ax.set_xlabel('迭代次数')
ax.set_ylabel('正确率(%)')
labels = ["训练正确率", "测试正确率"]
# labels = [l.get_label() for l in lns]
plt.legend( labels, loc=7)
plt.show()
总结
来源:https://blog.csdn.net/yuan0401yu/article/details/88730555
标签:matplotlib,混淆矩阵,曲线
0
投稿
猜你喜欢
Python实现 PS 图像调整中的亮度调整
2021-04-02 20:08:54
如何用idea+gitee来团队合作开发项目的教程
2023-02-19 13:31:13
利用OpenCV+Tensorflow实现的手势识别
2022-04-03 02:12:33
数据结构简明备忘录 线性表
2024-01-25 01:59:28
使用Python实现跳一跳自动跳跃功能
2023-04-07 01:57:55
Python学习之集合set
2021-07-25 10:44:34
Python运算符重载详解及实例代码
2021-07-11 23:48:41
golang常用库之gorilla/mux-http路由库使用详解
2024-04-29 13:04:01
使用 WinHttpRequest 伪造 Referer (附实战代码)
2010-08-24 18:28:00
python str字符串转uuid实例
2021-12-31 20:15:54
1秒50万字!js实现关键词匹配
2024-05-02 16:18:04
常见系统中文字体的英文名
2008-03-03 12:44:00
js自定义弹框插件的封装
2024-05-28 15:38:36
Python操作MySQL数据库的示例代码
2024-01-29 03:55:09
恢复master..xp_logattach(log explorer)
2010-07-01 19:19:00
解析MYSQL显示表信息的方法
2024-01-15 12:17:49
python wsgiref源码解析
2023-10-20 10:56:27
Mysql数据库的完全备份
2011-08-05 18:46:25
SQL 合并多行记录的方法总汇
2024-01-18 23:38:24
树莓派(python)与arduino串口通信的详细步骤
2022-05-29 15:31:06