python - Tensorflow MNIST tutorial, System exit right after "INFO:tensorflow:Loss for final step" -
so while doing tensorflow "a guide tf layers: building convolutional neural netrwork" tutorial mnist dataset, running exact same code provided "complete, final code". loaded python code using %load cnn_mnist.py
in jupyter notebook (python 3.6, tf 1.2.0, macos sierra 10.12.5) , ran cell block. ran (for hours...) till
info:tensorflow:saving checkpoints 20000 /tmp/mnist_convnet_model/model.ckpt. info:tensorflow:loss final step: 0.07459. exception has occurred, use %tb see full traceback. systemexit
the full traceback follows
---- systemexit traceback (most recent call last) <ipython-input-6-a047e3f814c2> in <module>() 16 17 if __name__ == "__main__": 18 tf.app.run() 19 20 def cnn_model_fn(features, labels, mode): /users/june/anaconda/envs/py36/lib/python3.6/ sitepackages/tensorflow/python/platform/app.py in run(main, argv) 46 # call main function, passing through arguments 47 # final program. 48 _sys.exit(main(_sys.argv[:1] + flags_passthrough)) 49 50 systemexit:
i wonder if knows means , how can fix it. thank much!
Comments
Post a Comment