首页 > 解决方案 > Keras 在哪里存储 MNIST 的下载数据?

问题描述

我运行了下面的脚本:

https://github.com/antoniosehk/keras-tensorflow-windows-installation/blob/master/examples/mnist_mlp.py

我相信这些行下载了数据。

from keras.datasets import mnist    
(x_train, y_train), (x_test, y_test) = mnist.load_data()

我在 Windows 10 上运行此脚本。数据存储在哪里?我想清理,因为我的磁盘空间有限。

标签: python-3.xkeras

解决方案


我会回答我自己的问题。

我在这里找到了。我正在使用 Windows 10。

C:\Users\<user_name>\.keras\datasets

推荐阅读