tf.summary.FileWriter(logdir, sess.graph)
I found that there are more than one event file in logdir. Why? I think it should be one.
what is the meaning of the name, ie:'events.out.tfevents.1496202271.host-name'. What is the meaning of '1496202271' in it.
Thx.
Different Tensorboard event files are created for separate Tensorflow sessions.
Make sure that you are only running a single session and use it repeatedly when running saver.save()
.