Reputation: 41
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.
Upvotes: 4
Views: 1876
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