> However when I open it, it is empty. I tried it both in Chrome and in Firefox.
Not sure if this is necessary (or already done) via Keras, but when I use tensorboard with tensorflow, I sometimes need to have a manual "flush" the writer to see the results
e.g., as in
with tf.Session(graph=g) as sess:
sess.run(tf.global_variables_initializer())
file_writer = tf.summary.FileWriter(logdir='logs/1', graph=g)
for i in range(5):
result, summary = sess.run([update_tf_x, merged_summary],
feed_dict={some_value: i})
file_writer.add_summary(summary=summary, global_step=i)
file_writer.flush()
Just an idea that this could maybe be an issue here?
> --
> You received this message because you are subscribed to the Google Groups "Discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
discuss+u...@tensorflow.org.
> To post to this group, send email to
dis...@tensorflow.org.
> To view this discussion on the web visit
https://groups.google.com/a/tensorflow.org/d/msgid/discuss/10ddf35f-ea60-4e7f-bf69-d44d0954a054%40tensorflow.org.