【发布时间】:2019-01-04 11:59:20
【问题描述】:
我在 stackoverflow 中看到一些帖子,高级 api 估算器为您记录了摘要。但是,我没有看到任何可视化。
在我的代码中,我定义了这样的自定义估算器
run_config = tf.estimator.RunConfig(
model_dir=FLAGS.model_dir,
save_checkpoints_secs=20,
save_summary_steps=100)
estimator = tf.estimator.Estimator(
model_fn=model_fn,
config=run_config,
params=model_params)
然后我在这个 model_dir 中看到了我的检查点和一些训练杂项。
而且,我在命令行中输入$tensorboard --logdir=tmp/,什么也看不到。
我在 localhost:6006/ 中看到的是
No dashboards are active for the current data set.
有人可以帮我吗?
【问题讨论】:
标签: tensorflow tensorboard tensorflow-estimator