TensorBoard is a great tool, but can it be more robust? The image below shows the visualization in TensorBoard.
It's called by the following code:
tf.image_summary('images', images, max_images=100)
As the API suggests, the last digit is the "image number", from 0 to 99 in this case since I specified max_images = 100. I would like to ask, if I can append the label of this image into the text? This would be a great functionality to have as it allows users to see in real time the images and their respective labels during training. In the event whereby some images are totally mislabelled, a fix can be implemented. In other words, I would like the corresponding text in the image below to be:
images/image/9/5
images/image/39/6
images/image/31/0
images/image/30/2
where last digit is the label.
Thanks!
