如何在 tensorflow 的 retrain inception final layer 上使用摘要
How to use summaries on tensorflow's retrain inception final layer
我已经成功地使用 tensorflow's tutorial on retraining 最后一层来处理新的 类 我想添加一些摘要来检查交叉熵是如何演变的。
我研究了 documentation 并尝试复制它,但没有成功。
现在,我可以启动 tensorboard 并查看图表,但其他选项卡(事件、图像、直方图)上没有显示任何其他内容。
有没有人对 inception 再训练示例添加总结?
提前致谢
要显示标量摘要(等),您需要做以下四件事:
- 向图表添加摘要节点(例如
tf.scalar_summary
或 tf.histogram_summary
)
- 将所有这些摘要合并到一个操作中
tf.merge_all_summaries
- 运行 总结操作作为训练循环的一部分,并存储输出
- 将输出的摘要字符串传递到
tf.train.SummaryWriter
.
这些步骤你都做到了吗?
如果您对更多详细信息感兴趣,我将 TensorBoard 摘要添加到 TensorFlow 图像再训练的股票代码中 tutorial. You can checkout the latest TensorFlow code on GitHub if you want to use TensorBoard with the tutorial. I also wrote a blog post。
我已经成功地使用 tensorflow's tutorial on retraining 最后一层来处理新的 类 我想添加一些摘要来检查交叉熵是如何演变的。
我研究了 documentation 并尝试复制它,但没有成功。 现在,我可以启动 tensorboard 并查看图表,但其他选项卡(事件、图像、直方图)上没有显示任何其他内容。
有没有人对 inception 再训练示例添加总结?
提前致谢
要显示标量摘要(等),您需要做以下四件事:
- 向图表添加摘要节点(例如
tf.scalar_summary
或tf.histogram_summary
) - 将所有这些摘要合并到一个操作中
tf.merge_all_summaries
- 运行 总结操作作为训练循环的一部分,并存储输出
- 将输出的摘要字符串传递到
tf.train.SummaryWriter
.
这些步骤你都做到了吗?
如果您对更多详细信息感兴趣,我将 TensorBoard 摘要添加到 TensorFlow 图像再训练的股票代码中 tutorial. You can checkout the latest TensorFlow code on GitHub if you want to use TensorBoard with the tutorial. I also wrote a blog post。