jqZ*_*ang 7 python torch tensorboard pytorch tensorboardx
我在 pytorch 1.3.1 中使用tensorboard,并且我在pytorch 文档中为tensorboard做了完全相同的事情。运行后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)
Run Code Online (Sandbox Code Playgroud)
打开 http://localhost:6006/ 后,我得到这样的空白页面
我也尝试了tensorboardX,并得到了相同的结果。您能告诉我如何解决这个问题吗?谢谢。
我在tensorboard版本> = 2.0中也遇到了这个问题。我所做的是添加--bind_all
你可以尝试:
tensorboard --logdir=runs --bind_all
Run Code Online (Sandbox Code Playgroud)