python使用sklearn的ConfusionMatrixDisplay来可视化混淆矩阵
Posted Data+Science+Insight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用sklearn的ConfusionMatrixDisplay来可视化混淆矩阵相关的知识,希望对你有一定的参考价值。
python使用sklearn的ConfusionMatrixDisplay来可视化混淆矩阵
目录
python使用sklearn的ConfusionMatrixDisplay来可视化混淆矩阵
#ConfusionMatrixDisplay来可视化混淆矩阵
#模型构建
print(__doc__)
from sklearn.datasets import fetch_openml
from sklearn.preprocessing import StandardScaler
from sklearn.pipeline import make_pipeline
from sklearn.linear_model import LogisticRegression
from sklearn.model_selection import train_test_split
X, y = fetch_openml(data_id=1464, return_X_y=True)
X_train, X_test, y_train, y_test = train_test_split(X, y, stratify=y)
clf = make_pipeline(StandardScaler(), LogisticRegression(random_state=0))
clf.fit(X_train, y_train)
#ConfusionMatrixDisplay来可视化混淆矩阵
from sklearn.metrics import confusion_matrix
from sklearn.metrics import ConfusionMatrixDisplay
y_pred = clf.predict(X_test)
cm = confusion_matrix(y_test, y_pred)
cm_display = ConfusionMatrixDisplay(cm).plot()
参考:ConfusionMatrixDisplay
参考:混淆矩阵
以上是关于python使用sklearn的ConfusionMatrixDisplay来可视化混淆矩阵的主要内容,如果未能解决你的问题,请参考以下文章
sklearn.metrics中的confusion_matrixROCROCAUC指标
在 sklearn.metrics.confusion_matrix 中哪个类标签被认为是负面的?
Keras model.fit log 和 Sklearn.metrics.confusion_matrix 报告的验证准确度指标不匹配
sklearn使用投票器VotingClassifier算法构建多模型融合的硬投票器分类器(hard voting)并计算融合模型的混淆矩阵可视化混淆矩阵(confusion matrix)
使用 plot_confusion_matrix 绘制多个混淆矩阵
sklearn.metrics中的评估方法介绍(accuracy_score, recall_score, roc_curve, roc_auc_score, confusion_matrix,cla