You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 3, 2020. It is now read-only.
WARNING:tensorflow:From /home/zhanghuimeng/Documents/learnTensorFlow/simple_introduction/multilayer_perceptron.py:9: load_dataset (from tensorflow.contrib.learn.python.learn.datasets) is deprecated and will be removed in a future version.
Instructions for updating:
Please use tf.data.
...
And it actually can't download anything. (The reason might be...) In the end, you might have to download MNIST by hand. (see this)
In the MLP example, this line
prints tons of deprecation error:
And it actually can't download anything. (The reason might be...) In the end, you might have to download MNIST by hand. (see this)
A better (not deprecated) alternative is:
But it cannot download anything either. Finally I had to download from https://storage.googleapis.com/tensorflow/tf-keras-datasets/mnist.npz and load it by NumPy.
There might be a better alternative, but I still suggest using something not deprecated.
The text was updated successfully, but these errors were encountered: