【更改源码】AttributeError: module ‘scipy‘ has no attribute ‘sparse‘

#AttributeError: module 'scipy' has no attribute 'sparse'
1.找到scipy\_lib\_util.py #可以直接点击报错输出中的路径,会直接打开源代码
2.283行改成import scipy.sparse as sp
3.284行改成if sp.issparse(a):
4.保存,关闭_util.py

重新运行你的程序,有用的话记得点个赞~

你可能感兴趣的:(python-机器学习,scipy,python)