i need some your help
i can't load MNIST dataset from this.
My system enviroment is as follows
OS : Ubuntu 16.04
Python version : 3.5
Tensorflow version : 1.12
Following is my code:
import tensorflow as tf
import numpy as np
train, test = tf.keras.datasets.mnist.load_data()
train_x, train_y = train
dataset = tf.data.Dataset.from_tensor_slices(({"image":train_x}, train_y))
dataset = dataset.shuffle(100000).repeat().batch(10)
iterator = dataset.make_one_shot_iterator()
next_element = iterator.get_next()
sess = tf.Session()
print(sess.run(next_element))
when i run this code on my computer it stucks at ETA0 and doesn't finishing downloading from google like this.
Downloading data from here.
11476992/11490434 [============================>.] - ETA: 0s
What should i do on this problem, please help me... :(