4

我在 pytorch 1.3.1 中使用 tensorboard,我在 tensorboard 的pytorch 文档中做了完全相同的操作。运行后tensorboard --logdir=runs,我在这里得到了这个输入图像描述

$ tensorboard --logdir=runs
TensorFlow installation not found - running with reduced feature set.
Serving TensorBoard on localhost; to expose to the network, use a proxy or pass --bind_all
TensorBoard 2.1.0 at http://localhost:6006/ (Press CTRL+C to quit)

打开http://localhost:6006/后,我得到了这样的空白页面在此处输入图像描述

我也试过 tensorboardX,得到了同样的结果。你能告诉我如何解决这个问题吗?谢谢。

4

3 回答 3

2

我在 Windows 上使用 Torch 1.4.0,我遇到了同样的问题。原来我已经安装了 Tensorboard 的 2.x 版本。我恢复到 1.15.0,它解决了这个问题。

于 2020-03-13T15:05:07.193 回答
0

我在张量板版本> = 2.0中也遇到了这个问题。我所做的是添加--bind_all
您可以尝试:

tensorboard --logdir=runs --bind_all
于 2020-01-02T07:01:51.307 回答
0

确保您 tensorboard --logdir=runs从与“运行”相同的目录运行

于 2020-03-29T09:05:40.970 回答