http://www.tuicool.com/articles/Fni2Yr
lib/python2.7/site-packages/tensorflow/models/image/minst
import tensorflow as tf // import tensorflow hello = tf.constant(‘Hello, TensorFlow!‘) // define constant sess = tf.Session() // open session print sess.run(hello) // run session
原文:http://www.cnblogs.com/skyEva/p/6406903.html