Problem - TensorBoard only shows one image
Inspired by this How to visualize weight (variables) in cnn in Tensorflow?
Here is the code:
It displays here:
log at: /mnt/code/test_00/log/2016-01-09 17:10:37 rsq.size: 1225 i: 0 I: (1, 30, 30, 3) L: [ 1. 0.] i: 1 I: (1, 30, 30, 3) L: [ 1. 0.] i: 2 I: (1, 30, 30, 3) L: [ 0. 1.] i: 3 I: (1, 30, 30, 3) L: [ 0. 1.] i: 4 I: (1, 30, 30, 3) L: [ 0. 1.] rsq.size: 1220 ok
It looks fine
- 5 pairs of images were sent [image label].
- in case I uncomment print "imss", imss I see 5 different buffers, each with its own png image
- op graph looks fine in tb
However, only one image in TB. I suspect that I missed something important about how TF --.ie works, which caused the runtime on the chart.
The second question: what do I need to do to see the result, i.e. img2 = img + img in TB?
tensorflow
rgr
source share