分类模型混淆矩阵:从枯燥到精美的可视化升级
创作时间:
作者:
@小白创作中心
分类模型混淆矩阵:从枯燥到精美的可视化升级
引用
1
来源
1.
https://www.cainiaoxueyuan.com/ai/66183.html
混淆矩阵是评估分类模型性能的重要工具,但传统的混淆矩阵往往缺乏美感,信息表达不够直观。本文将介绍如何通过数据可视化技巧对混淆矩阵进行美化,使其在保持信息完整性的基础上,更加清晰直观。
二分类模型实现
模型构建
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams['font.family'] = 'Times New Roman'
plt.rcParams['axes.unicode_minus'] = False
import warnings
# 忽略所有警告
warnings.filterwarnings("ignore")
from sklearn.model_selection import train_test_split
df = pd.read_excel('2025-1-9公众号Python机器学习AI.xlsx')
# 划分特征和目标变量
X = df.drop(['y'], axis=1)
y = df['y']
# 划分训练集和测试集
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3,
random_state=42, stratify=df['y'])
from xgboost import XGBClassifier
from sklearn.model_selection import GridSearchCV, StratifiedKFold
from sklearn.metrics import accuracy_score
# 定义 XGBoost 二分类模型
model_xgb = XGBClassifier(use_label_encoder=False, eval_metric='logloss', random_state=8)
# 定义参数网格
param_grid = {
'n_estimators': [50, 100, 200],
'max_depth': [3, 5, 7],
'learning_rate': [0.01, 0.1, 0.2],
'subsample': [0.8, 1.0],
'colsample_bytree': [0.8, 1.0]
}
# 定义 K 折交叉验证 (Stratified K-Fold)
kfold = StratifiedKFold(n_splits=5, shuffle=True, random_state=8)
# 使用网格搜索寻找最佳参数
grid_search = GridSearchCV(estimator=model_xgb, param_grid=param_grid, scoring='accuracy',
cv=kfold, verbose=1, n_jobs=-1)
# 拟合模型
grid_search.fit(X_train, y_train)
# 使用最优参数训练模型
xgboost = grid_search.best_estimator_
使用XGBoost二分类模型,通过网格搜索和K折交叉验证优化超参数,以找到最佳模型并对数据进行训练和测试划分,从而提升二分类任务的预测性能。
基础二分类混淆矩阵
from sklearn.metrics import confusion_matrix, ConfusionMatrixDisplay
# 使用测试集进行预测
y_pred = xgboost.predict(X_test)
# 计算混淆矩阵
cm = confusion_matrix(y_test, y_pred)
# 绘制混淆矩阵
disp = ConfusionMatrixDisplay(confusion_matrix=cm, display_labels=xgboost.classes_)
fig, ax = plt.subplots(figsize=(6, 6)) # 调整图大小
disp.plot(cmap='Blues', values_format='d', ax=ax)
# 设置标题和字体加粗
plt.title("Confusion Matrix for XGBoost Model", fontweight='bold', fontsize=14)
# 加粗坐标轴标签
ax.set_xlabel('Predicted Label', fontweight='bold', fontsize=12)
ax.set_ylabel('True Label', fontweight='bold', fontsize=12)
# 调整刻度字体
ax.tick_params(axis='both', labelsize=10, width=2)
# 调整矩阵中的数值字体大小
for text in disp.text_.ravel():
text.set_fontsize(14) # 设置字体大小
text.set_fontweight('bold') # 设置字体加粗
plt.savefig("1.png", format='png', bbox_inches='tight')
plt.show()
优化二分类混淆矩阵
加入标准化混淆矩阵、总计行列和颜色区分,并对数据进行精细标注(如百分比和数值),优化混淆矩阵的可视化效果,使其更加直观和易于解读。
多分类模型实现
模型构建
import numpy as np
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif'] = 'SimHei' # 设置中文显示
plt.rcParams['axes.unicode_minus'] = False
import warnings
# 忽略所有警告
warnings.filterwarnings("ignore")
df = pd.read_excel('多类别数据.xlsx')
from sklearn.preprocessing import LabelEncoder
from sklearn.svm import SVC
from sklearn.model_selection import train_test_split
from hyperopt import fmin, tpe, hp
from sklearn.metrics import accuracy_score
# 对 Type 列进行编码
label_encoder = LabelEncoder()
df['Type_encoded'] = label_encoder.fit_transform(df['Type'])
# 分割数据集
X = df.drop(['Type', 'Type_encoded'], axis=1)
y = df['Type_encoded']
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.3, stratify=df['Type_encoded']
)
# 定义超参数空间
parameter_space_svc = {
'C': hp.loguniform('C', np.log(100), np.log(1000)), # 惩罚项
'kernel': hp.choice('kernel', ['rbf', 'poly']), # 核函数类型(选择 rbf 或 poly)
'gamma': hp.loguniform('gamma', np.log(100), np.log(1000)), # 核函数的系数
}
# 初始化计数器
count = 0
# 定义优化目标函数
def func(args):
global count
count += 1
print(f"\nIteration {count}: Hyperparameters - {args}")
# 创建 SVM 分类器,传递超参数
clf = SVC(**args)
# 训练模型
clf.fit(X_train, y_train)
# 预测测试集
prediction = clf.predict(X_test)
# 计算准确率
score = accuracy_score(y_test, prediction)
print(f'Test accuracy: {score}')
# 由于 fmin 函数默认是最小化目标函数,所以返回负准确率作为目标
return -score
# 使用 TPE 算法进行超参数优化,最大评估次数为 100
best = fmin(func, parameter_space_svc, algo=tpe.suggest, max_evals=100)
# 将最佳的核函数类型从索引值转换为相应的字符串
kernel_list = ['rbf', 'poly']
best['kernel'] = kernel_list[best['kernel']]
# 将最佳超参数保存到 best_params_ 中
best_params_ = {
'C': best['C'],
'kernel': best['kernel'],
'gamma': best['gamma']
}
# 输出最佳超参数
print('\nBest hyperparameters:', best_params_)
# 创建 SVM 分类器,并使用最佳超参数进行配置
clf = SVC(
C=best_params_['C'], # 惩罚项参数
kernel=best_params_['kernel'], # 核函数类型
gamma=best_params_['gamma'], # 核函数系数
decision_function_shape='ovr', # 多分类问题时使用 "ovr"(一对多)策略
cache_size=5000, # 缓存大小,单位为 MB
probability=True
)
# 使用训练数据进行模型训练
clf.fit(X_train, y_train)
通过超参数优化训练一个基于SVM的多分类模型,为后续生成和分析多分类混淆矩阵做好准备。
基础多分类混淆矩阵
from sklearn.metrics import confusion_matrix, ConfusionMatrixDisplay
# 使用测试集进行预测
y_pred = clf.predict(X_test)
# 计算混淆矩阵
cm = confusion_matrix(y_test, y_pred)
# 绘制混淆矩阵
disp = ConfusionMatrixDisplay(confusion_matrix=cm, display_labels=label_encoder.classes_) # 使用编码器的类标签
fig, ax = plt.subplots(figsize=(6, 6)) # 调整图大小
disp.plot(cmap='Blues', values_format='d', ax=ax)
# 设置标题和字体加粗
plt.title("Confusion Matrix for SVM Model", fontweight='bold', fontsize=14)
# 加粗坐标轴标签
ax.set_xlabel('Predicted Label', fontweight='bold', fontsize=12)
ax.set_ylabel('True Label', fontweight='bold', fontsize=12)
# 调整刻度字体
ax.tick_params(axis='both', labelsize=10, width=2)
# 调整矩阵中的数值字体大小
for text in disp.text_.ravel():
text.set_fontsize(14) # 设置字体大小
text.set_fontweight('bold') # 设置字体加粗
# 保存图像
plt.savefig("3.png", format='png', bbox_inches='tight')
plt.show()
优化多分类混淆矩阵
同样对于多分类模型,通过添加标准化、总计行列、颜色区分和精细标注,优化混淆矩阵的展示效果,使其更直观、全面且易于解读。
热门推荐
佛祖降临,运气之光照临信众 —— 探索佛教中的“运势”哲学
Nature Genetics:解析杂合基因变异的渐进效应:破解复杂疾病的关键
梦幻诛仙角色加点重置攻略
强制执行后利息会超过本金吗
小雏菊发芽后怎么浇水
星辰变手游攻略:灵胚战力提升与最强阵容打造
我国孩子姓氏的法律规范与探析
【健康科普】关于左氧氟沙星滴眼液,到底该如何使用?
宝宝爱吃手,多大需要干预?
又是樱花盛开的季节,除了赏它还能吃它哦
如何协商运费
如何理解后复权的计算方法?后复权计算在投资分析中的作用是什么?
前复权和后复权的本质是什么?这些本质对股票分析有何作用?
三角形的内心和外心
人群标签如何得到数据库
心理学:讨好型人格的危害与应对之道
如何评估一个城市的建设进展?这些进展对居民生活有何影响?
转存交易全攻略:概念、操作要点及注意事项
江南是指哪里,哪些地方,哪个省哪个市
如何在Windows 11中设置和使用外置麦克风
秋千怎么荡才好玩又安全?!
秋千,你真的会玩吗?荡出你的“童年回忆”和“科学秘密”!
宝宝辅食全攻略:何时开始,吃什么,品牌种草
如何掌握股票买卖的时机和方法?这些时机和方法在投资中如何灵活运用?
股票分时DDX指标详解:如何通过大单动向指数判断市场趋势
白糖期货价格波动周期规律及影响因素分析
袅袅古堤边,青青一树烟。48句含有“袅袅”的诗词,仙气十足
重组泡汤!上海莱士与海尔生物关系却更进一步?
打磨机器人如何精确控制打磨力度和速度
联征纪录怎么查看?自己查联征会有纪录吗?6大关键一次看