我正在尝试在 Python 中加载 MNIST 原始数据集。 sklearn.datasets.fetch_openml 函数似乎对此不起作用。 这是我正在使用的代码- from sklearn.datasets import fetch_openml dataset = fetch_openml("MNIST Original") 我收到这个错误- File "generateClassifier.py", line 11, in <module> dataset = fetch...
I tried to run this line from the beginning of Chapter 3: mnist = fetch_openml('mnist_784', version=1) and got this error: ValueError: Dataset mnist_784 with version 1 not found. I tried removing the second parameter or changing the data...