我在pytorch 1.3.1中使用tensorboard,在pytorch docs for tensorboard中也做了完全相同的事情。在运行tensorboard --logdir=runs之后,我得到了这个enter image description here。
$ 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,得到了同样的结果。你能告诉我如何解决这个问题吗?谢谢。
发布于 2020-03-13 23:05:07
我在Windows上使用Torch 1.4.0,我也遇到了同样的问题。原来我已经安装了Tensorboard的2.x版本。我恢复到1.15.0,它解决了这个问题。
发布于 2020-01-02 15:01:51
我在tensorboard版本的>= 2.0中也遇到了这个问题。我所做的是添加--bind_all
您可以尝试:
tensorboard --logdir=runs --bind_all发布于 2020-03-29 17:05:41
确保你从与'runs‘相同的目录运行tensorboard --logdir=runs
https://stackoverflow.com/questions/59308202
复制相似问题