本文介绍了导入错误:无法从“sklearn.metrics"导入名称“plot_confusion_matrix"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试运行下面的代码.

I am attempting to run below code.

from sklearn.metrics import plot_confusion_matrix

我收到以下错误.

---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-66-ebfa5cfc2bb8> in <module>
----> 1 from sklearn.metrics import plot_confusion_matrix

ImportError: cannot import name 'plot_confusion_matrix' from 'sklearn.metrics' (C:\Program Files\Anaconda3\lib\site-packages\sklearn\metrics\__init__.py)

推荐答案

plot_confusion_matrix 仅在 v0.22 之后可用.如果您使用的不是最新版本,请使用以下命令之一进行更新.

plot_confusion_matrix is available only after v0.22. If you are not using the latest version please update using one of the following commands.

蟒蛇

conda update -c conda-forge scikit-learn

画中画

pip install --upgrade scikit-learn

这篇关于导入错误:无法从“sklearn.metrics"导入名称“plot_confusion_matrix"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 21:12