Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

第14章神经网络算法识别MNIST手写数字案例中数据集不能在线下载 #19

Open
shixiangbupt opened this issue Aug 10, 2018 · 1 comment

Comments

@shixiangbupt
Copy link

import matplotlib.pyplot as plt
from sklearn.datasets import fetch_mldata
from sklearn.neural_network import MLPClassifier

mnist = fetch_mldata("MNIST original")

rescale the data, use the traditional train/test split

X, y = mnist.data / 255., mnist.target
X_train, X_test = X[:60000], X[60000:]
y_train, y_test = y[:60000], y[60000:]

HTTPError: HTTP Error 404: Dataset 'mnist-original' not found on mldata.org.

@shixiangbupt
Copy link
Author

链接: https://pan.baidu.com/s/1OpOn3bzatFYHR3BivaSkQg
提取码: apgj

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant