【发布时间】:2016-10-26 10:07:09
【问题描述】:
我正在学习使用 TensorBoard,每次启动 tensorboard 时,我都会在终端中收到以下消息:
WARNING:tensorflow:Found more than one graph event per run. Overwriting the graph with the newest event.
我认为是因为我多次使用相同的名称运行同一个模型。我只想多次运行我的模型并能够使用 tensorflow 检查它在做什么。正在重新运行:
tensorboard --logdir=path/to/log-directory
不是通常的方法吗?或者当我想多次运行同一个模型并探索不同的学习算法、步长、初始化等时,做这类工作的建议是什么。每次都设置一个新的日志目录真的有必要吗?
【问题讨论】:
标签: machine-learning neural-network tensorflow conv-neural-network tensorboard