cannot import name 'fetch_mldata' from 'sklearn.datasets' (C:\Users\ASUS\anaconda3\Lib\site-packages\sklearn\datasets\__init__.py) 怎么解决
时间: 2023-11-17 14:01:14 浏览: 252
PyPI 官网下载 | py_common_fetch-0.188.tar.gz
这个错误通常是因为sklearn版本更新导致fetch_mldata函数被删除了。解决方法是使用fetch_openml函数代替fetch_mldata函数。以下是修改后的代码:
```
from sklearn.datasets import fetch_openml
mnist = fetch_openml('mnist_784')
```
阅读全文