在pytorch中使用tensorboard,但得到空白页?

hrirmatl  于 2022-11-09  发布在  其他
关注(0)|答案(5)|浏览(184)

我在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,也得到了同样的结果。你能告诉我如何解决这个问题吗?谢谢。

vcudknz3

vcudknz31#

我在Windows上使用Torch 1. 4. 0,也遇到了同样的问题。原来我安装了2. x版本的Tensorboard。我恢复到1. 15. 0,它解决了这个问题。

hvvq6cgz

hvvq6cgz2#

我在tensorboard版本〉= 2.0中也遇到过这个问题。我所做的是添加--bind_all
您可以尝试:

tensorboard --logdir=runs --bind_all
rt4zxlrg

rt4zxlrg3#

请确保您正在与“runs”相同的目录中运行tensorboard --logdir=runs

ergxz8rk

ergxz8rk4#

您可能希望将这两个工具箱都更新到最新版本。以下内容解决了我的问题:

pip3 install --upgrade tensorflow tensorboard

当然,正如Andrei所提到的,要确保获得结果的路径正确:

tensorboard --logdir=PATH_TO_RESULTS
mf98qq94

mf98qq945#

首先你要在终端运行

`venv\Scripts\activate`
in your project directory 
then 
`tensorboard --logdir results --port 6006`
and you got it

相关问题