如何打印张量列表?

时间:2017-12-26 06:07:48

标签: python tensorflow neural-network deep-learning conv-neural-network

我想知道是否有任何方法可以在张量列表的数据类型中打印输入队列。

import tensorflow as tf

image=tf.cast(image,tf.string)#list of input image directory
label=tf.cast(label,tf.int32) #list of input image label

input_queue=tf.train.slice_input_producer([image,label])

with tf.Session() as session:
     print(session.run(input_queue))

如果以这种方式print input_queue,程序将继续运行并且不会显示任何响应。

1 个答案:

答案 0 :(得分:0)

您可以使用eval()函数来获取张量。对于您的代码,您可以使用print(input_queue.eval()) 打印'input_queue'。