张量流中事件文件的数量和名称?
the number and the name of the event files in tensorflow?
tf.summary.FileWriter(logdir, sess.graph)
我发现logdir中的事件文件不止一个。为什么?我觉得应该是一个。
名字的含义是什么,即:'events.out.tfevents.1496202271.host-name'。其中'1496202271'是什么意思。
谢谢。
这是unix/linux时间戳。有关详细信息,请参阅 https://en.wikipedia.org/wiki/Unix_time
为不同的 Tensorflow 会话创建了不同的 Tensorboard 事件文件。
确保你只是运行一个session并且在运行saver.save()
的时候重复使用。
tf.summary.FileWriter(logdir, sess.graph)
我发现logdir中的事件文件不止一个。为什么?我觉得应该是一个。
名字的含义是什么,即:'events.out.tfevents.1496202271.host-name'。其中'1496202271'是什么意思。
谢谢。
这是unix/linux时间戳。有关详细信息,请参阅 https://en.wikipedia.org/wiki/Unix_time
为不同的 Tensorflow 会话创建了不同的 Tensorboard 事件文件。
确保你只是运行一个session并且在运行saver.save()
的时候重复使用。