Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where does Keras store downloaded data for MNIST?

I ran the script below:

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

I believe these lines downloaded the data.

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

I am running this script on Windows 10. Where ist the data being stored? I would like to clean up because my disk space is limited.

like image 820
user1315789 Avatar asked Aug 12 '18 08:08

user1315789


1 Answers

I will answer my own question.

I found it here. I am using Windows 10.

C:\Users\<user_name>\.keras\datasets
like image 185
user1315789 Avatar answered Oct 18 '22 12:10

user1315789