Pytorch tensorboard 问题总结

我的环境是,其中没有安装TensorFlow,只使用pytorch。

windows10
pytorch 1.7.1
python 3.8.5
tensorboard 2.4.1

使用tensorboard --version检查版本时出现

TensorFlow installation not found - running with reduced feature set.
2.4.1

这不用担心,我使用的是pytorch中带的torch.utils.tensorboard

No dashboards are active for the current data set.的问题

但是在使用Pytorch中的torch.utils.tensorboard模块做可视化中,出现了如下问题(已经创建了对应的日志):

# 使用命令
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.4.1 at http://localhost:6006/ (Press CTRL+C to quit)

但是打开浏览器却只有:

Pytorch tensorboard 问题总结_第1张图片
问题解决

使用完整的命令路径和文件路径

# 这是我的完整命令
D:\Anaconda3\Scripts\tensorboard.exe --logdir=E:\WorkSpace\Py\pytorch\fun\runs

# 通用的形式应该是
<tensorboard.exe的路径> --logdir=<log的路径>

你可能感兴趣的:(pytorch)