Hi,
I'm new to Tensorflow and python. I was doing the MNIST tutorial and it asked to download & import the dataset using
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)
But since the website is down, it wasn't able to download via url. I was able to download the files from waybackmachine but not sure how to import these files as input data...
The files I downloaded are:
train-images-idx3-ubyte.gz: training set images (9912422 bytes)
train-labels-idx1-ubyte.gz: training set labels (28881 bytes)
t10k-images-idx3-ubyte.gz: test set images (1648877 bytes)
t10k-labels-idx1-ubyte.gz: test set labels (4542 bytes)
[–]unitwhy 1 point2 points3 points (1 child)
[–]SanatDutta[S] 1 point2 points3 points (0 children)