张量流中的eval()和run()

时间:2016-08-17 03:05:53

标签: python python-2.7 tensorflow

我指的是tensorflow给出的 Deep MNIST for Experts教程。我在该教程的Train and Evaluate部分遇到了问题。他们在那里给出了如下示例代码。

class WrappedBatchConfigurable<T extends BatchContext, E extends BatchConfigurable<T>> {}

因此,在这些代码段中,他们一次使用cross_entropy = tf.reduce_mean(-tf.reduce_sum(y_ * tf.log(y_conv),reduction_indices=[1])) train_step = tf.train.AdamOptimizer(1e-4).minimize(cross_entropy) correct_prediction = tf.equal(tf.argmax(y_conv,1), tf.argmax(y_,1)) accuracy = tf.reduce_mean(tf.cast(correct_prediction, tf.float32)) sess.run(tf.initialize_all_variables()) for i in range(20000): batch = mnist.train.next_batch(50) if i%100 == 0: train_accuracy = accuracy.eval(feed_dict={x:batch[0], y_: batch[1], keep_prob: 1.0}) print("step %d, training accuracy %g"%(i, train_accuracy)) train_step.run(feed_dict={x: batch[0], y_: batch[1], keep_prob: 0.5}) print("test accuracy %g"%accuracy.eval(feed_dict={x: mnist.test.images, y_: mnist.test.labels, keep_prob: 1.0})) 。还有其他时间accuracy.eval()。据我所知,它们都是张量变量。

在某些情况下,我看过像

train_step.run()

所以我的问题是这3个实现之间有什么区别。我怎么知道什么时候用??

谢谢!!

2 个答案:

答案 0 :(得分:21)

如果您只有一个默认会话,它们基本相同。

来自https://github.com/tensorflow/tensorflow/blob/v1.12.0/tensorflow/python/framework/ops.py#L2351

  

op.run()是调用tf.get_default_session()的快捷方式.run(op)

来自https://github.com/tensorflow/tensorflow/blob/v1.12.0/tensorflow/python/framework/ops.py#L691

  

t.eval()是调用tf.get_default_session()的快捷方式.run(t)

张量和操作之间的区别:

张量:https://www.tensorflow.org/api_docs/python/tf/Tensor

操作:https://www.tensorflow.org/api_docs/python/tf/Operation

  

注意:Tensor类将来会被Output替换。目前这两个是彼此的别名。

答案 1 :(得分:3)

不同之处在于操作与张量。操作使用run(),Tensors使用eval()。

在TensorFlow FAQ中似乎有对这个问题的引用: https://www.tensorflow.org/programmers_guide/faq#running_a_tensorflow_computation

该部分解决了以下问题:Session.run()和Tensor.eval()之间有什么区别?