windows上使用tensorboard

因为我的环境变量设置的不是python3.5,所以走了一些弯路。

启动tensorboard后,graphs里总是什么都没有

最后再stackoverflow里找到答案

https://stackoverflow.com/questions/41157645/tensorflow-tensorboard-on-windows-shows-a-blank-page

If your summaries are in, e.g. "E: fsummaries", start cmd in windows, then run "E:", then "tensorboard --logdir= fsummaries"

我的python3.5在d盘,log在e盘,所以要切到e:,然后运行 d:路径 ensorboard –logdir=/路径

image

原文地址:https://www.cnblogs.com/czcz1024/p/6993387.html