Razor
Razor

Reputation: 53

how to see summary image of former steps in tensorboard

I'm using tensorboard to visualize the image(CelebA) generated by dcgan Specifically, I created a writer and image summary with:

tf.summary.image('generated', image_output)
summary_op = tf.summary.merge_all()
writer = tf.summary.FileWriter(logdir, graph)
summary = sess.run(summary_op)

after each 100 step I would add a image summary with:

writer.add_summary(image, step)

I think the event file of tensorboard save all the images generated at each step since the event file keeps growing larger. But when I run tensorboard I can only see the latest image. Is there any way to see the former images? Or they are not saved in the event file and I can't see them.

Upvotes: 2

Views: 2069

Answers (1)

Dan Salo
Dan Salo

Reputation: 163

The issue that you have raised was common enough to warrant a feature request several months ago that was rolled into TensorFlow 1.1.0.

A small sliding bar appears below each image summary in Tensorboard with which you can scroll through the summary steps if you upgrade to TensorFlow 1.1.0+.

Upvotes: 1

Related Questions