I wonder if there are any way to print the input queue in datatype of tensor list.
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))
If print input_queue
in this way, the program keeps on runnning and won't show any response.