sklearn fetch_openml 怎么打开本地缓存
时间: 2023-02-09 14:59:43 浏览: 369
fetch-california-housing()数据集
可以使用 fetch_openml() 函数的 cache 参数设置为True来打开本地缓存。例如:
```
from sklearn.datasets import fetch_openml
X, y = fetch_openml('mnist_784', version=1, return_X_y=True, cache=True)
```
其中,cache=True 表示打开本地缓存。
阅读全文