tensorflowtensorboard

the number and the name of the event files in tensorflow?


tf.summary.FileWriter(logdir, sess.graph)
  1. I found that there are more than one event file in logdir. Why? I think it should be one.

  2. what is the meaning of the name, ie:'events.out.tfevents.1496202271.host-name'. What is the meaning of '1496202271' in it.

Thx.


Solution

  • 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().