【发布时间】:2017-11-05 06:21:12
【问题描述】:
我有一些非常大的 tensorflow 摘要。如果这些是使用 tensorboard 绘制的,我可以从中下载 CSV 文件。
但是,使用 tensorboard 绘制这些图需要很长时间。我在the docs 中发现有一种方法可以直接在 Python 中读取摘要。这个方法是summary_iterator,可以这样使用:
import tensorflow as tf
for e in tf.train.summary_iterator(path to events file):
print(e)
我可以使用这种方法直接创建 CSV 文件吗?如果是这样,我该怎么做?这样可以节省很多时间。
【问题讨论】:
标签: python csv tensorflow