如何将 sklearn.metrics.classification_report 作为字典输出?

How to get output of sklearn.metrics.classification_report as a dict?

我一直在尝试以字典的形式获取分类报告。 所以根据 scikit-learn 0.20 文档,我这样做:

from sklearn import metrics

rep = metrics.classification_report(y_true, y_pred, output_dict=True)

但是得到一个错误说

TypeError: classification_report() got an unexpected keyword argument 'output_dict'
The scikit-learn module in my machine was initially 0.19.1 but even after updating it to 0.20, the same error message shows.

只要您安装了 scikit-learn 0.20.0,就不会出现此错误。如果您在 jupyter notebook 中尝试此操作,请使用以下命令确保正确的版本反映在您的 notebook 中:

import sklearn
print(sklearn.__version__)

如果您升级了 scikit-learn 但 jupyter 显示了错误版本的包,请确保在您当前的环境中安装了 jupyter(并在新终端中重新启动 jupyter)。