Closed. This question needs to be more focused 。它目前不接受答案。












想改善这个问题吗?更新问题,使其仅通过 editing this post 关注一个问题。

2年前关闭。



Improve this question




我有一个在 Google Colab 上运行 Keras 的工作环境,但无法弄清楚如何加载 MNIST 数据,以便我可以将其导入到我的程序中。任何建议非常感谢!

最佳答案

Keras 内置了常用的 datasets,MNIST 就是其中之一:

from keras.datasets import mnist

(x_train, y_train), (x_test, y_test) = mnist.load_data()

所以如果你在 Colab 上有 Keras,你也应该准备好 MNIST。

关于python - 如何将 MNIST 数据加载到 Google Colab Jupyter Notebook 中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54170666/

10-12 20:16