美文网首页
Python错误:AttributeError: type ob

Python错误:AttributeError: type ob

作者: 王叽叽的小心情 | 来源:发表于2022-12-27 22:10 被阅读0次
    第一步

    背景信息:使用sklearn包中的随机森林,需要画下ROC曲线

    错误提示:AttributeError: type object ‘RocCurveDisplay‘ has no attribute ‘from_predictions

    错误原因:是因为sklearn的版本过低,需要更新一下。使用conda list 查看,确实版本低了

    解决方法:conda update scikit-learn,然后慢慢等着更新,关联的包比较多

    第二步

    运行代码,结果再次出现了错误:FileNotFoundError: Could not find module 'D:\Software\Anaconda3\lib\site-packages\scipy.libs\libbanded5x.4LIW6FJ2MYAF374XJSSB2KHHIEBRW45R.gfortran-win_amd64.dll' (or one of its dependencies). Try using the full path with constructor syntax.

    原因:某些包没有更新,有些包之间不兼容,需要重新更新一下环境的所有包

    解决方法:conda update --all

    更新包

    噢啦,可以画图了

    相关文章

      网友评论

          本文标题:Python错误:AttributeError: type ob

          本文链接:https://www.haomeiwen.com/subject/smsaqdtx.html