import input_data MNIST tensorflow not working

前端 未结 15 1534
感情败类
感情败类 2020-12-09 14:44

TensorFlow MNIST example not running with fully_connected_feed.py

I checked this out and realized that input_data was not built-in. So I downloaded the

15条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-09 15:35

    cd your_mnist_dir &&\
    wget https://github.com/HIPS/hypergrad/raw/master/data/mnist/mnist_data.pkl &&\
    wget https://github.com/HIPS/hypergrad/raw/master/data/mnist/t10k-images-idx3-ubyte.gz &&\
    wget https://github.com/HIPS/hypergrad/raw/master/data/mnist/t10k-labels-idx1-ubyte.gz &&\
    wget https://github.com/HIPS/hypergrad/raw/master/data/mnist/train-images-idx3-ubyte.gz &&\
    wget https://github.com/HIPS/hypergrad/raw/master/data/mnist/train-labels-idx1-ubyte.gz
    

提交回复
热议问题