Windows上的Tensorflow Tensorboard显示空白页面

时间:2016-12-15 06:18:01

标签: tensorflow spyder tensorboard

我在Windows上使用Tensorflow但是当我尝试启动Tensorboard打开template<typename... Ts> auto& get(Ts... args) { const C* const const_this = this; return const_cast<int&>(const_this->get(args...)); } 时,浏览器显示空白页

我添加了代码行 http://localhost:6006

到我的Tensorflow模型并启动了tensorboard writer = tf.train.SummaryWriter('mypath/my_graph', sess.graph)

控制台输出:

enter image description here

根据mrry建议我已经更新到0.12.0rc1,现在显示了Tensorboard页面,但遗憾的是我看不到任何图形,并且还缺少左侧面板手动上传图形文件,我可以在一些截图中看到官方指南。

enter image description here

还试图使用

tensorboard --logdir="mypath/my_graph"

遵循弃用提示

修改

我发现了这个问题。如果我启动writer = tf.summary.FileWriter('mypath/my_graph', sess.graph) TensorBoard无法加载路径并且始终查看默认用户路径tensorboard --logdir="mypath/my_graph"中的图形文件,如果我以用户身份运行控制台或C:\Users\andrew\mygraph\如果我以管理员身份运行控制台。这是一个错误,应该修复。

2 个答案:

答案 0 :(得分:2)

Windows上TensorFlow的0.12.0rc0(Release Candidate 0)版本包含TensorBoard的损坏版本。我们最近发布了一个新版本(0.12.0rc1,Release Candidate 1),其中包含Windows上TensorBoard的修复程序。您可以按照instructions for installing the latest release on Windows进行升级,或者只需在命令提示符下键入pip install --upgrade tensorflow

答案 1 :(得分:0)

ubuntu 中,我们可以使用:

tensorboard --logdir = / home / user / graph /

Windows 中,我们必须将命令提示符更改为放置图形文件的目录,然后使用:

tensorboard --logdir = \ home \ user \ graph \