Nano Man
Nano Man

Reputation: 41

How to make Tensorboard Image summary to show orderly

I made grouping MNIST images and made tf.image_summary(...). I made image summary for each group. e.g Test Image : 1 Test Image : 2

When I run Tensorboard images, it does not show as I order. How to make to show tensorboard images orderly.

Tensorboard Image

Upvotes: 4

Views: 1876

Answers (1)

dandelion
dandelion

Reputation: 1782

It always orders alphabetically. This is a bit hacky, but if you pre-pend alphabetical ordering to the start of the image tag, then you can control the order.

Upvotes: 1

Related Questions