I want to be able to see/print/display tensor content ( tensor y, - (image, trained label) i.e. x, y pairs for each batch ), as well as the final result.
For example in:
for i in range(1000):
batch_xs, batch_ys = mnist.train.next_batch(100)
train_step.run({x: batch_xs, y_: batch_ys})
# here should be a line to print/eval/sess.run learned x, y pair