Windows 10 中tensorboard出现No dashboards are active for the current data set.的解决方法
问题提要
今天在学习tensorflow时初次调用tensorboard,莫名奇妙出现No dashboards are active for the current data set.错误。确认目录已经输入正确,但使用的是相对目录。
我的配置
- Windows 10 家庭中文版(64位)
- I7 [email protected]
- 16G DDR4
- GTX1050ti(4G)
- python3.5+tensorflow_gpu-1.4.0
- CUDA8.0+CUDNN6.0
问题解决
怀疑是windows 10 cmd下读相对路径于tensorboard版本兼容问题,将相对路径改为绝对路径,问题解决。
具体操作:
修改前:
cd C:\Users\DELL\Desktop\Deep-Learning-21-Examples-master\Deep-Learning-21-Examples-master\chapter_3\slim
tensorboard --logdir \satellite\train_dir
修改后: tensorboard --logdir C:\Users\DELL\Desktop\Deep-Learning-21-Examples-master\Deep-Learning-21-Examples-master\chapter_3\slim\satellite\train_dir