以下代码将挂起(只有一个CTRLz让我出局).
import tensorflow as tf
import cifar10 # from https://github.com/tensorflow/models/tree/master/tutorials/image/cifar10 (both cifar10.py & cifar10_input.py)
def main():
print 'TensorFlow version: ',tf.__version__
with tf.Session() as sess:
with tf.device('/cpu:0'):
images, labels = cifar10.distorted_inputs()
input = tf.constant([[[1, 2, 3], [5, 5, 5]], [[4, 5, 6], [7, 7, 7]], [[7, 8, 9], [9, 9, 9]]])
one=input[0]
print "X1 ",type(input), one
oneval = sess.run(one)
print "X2 ",type(one), one, type(oneval), oneval
two=images[0]
print "Y1 ",type(images), two
twoval = sess.run(two)
print "Y2 ",type(two), two, type(twoval), …Run Code Online (Sandbox Code Playgroud)