Windows 10 中tensorboard出现No dashboards are active for the current data set.的解决方法

Windows 10 中tensorboard出现No dashboards are active for the current data set.的解决方法

问题提要

今天在学习tensorflow时初次调用tensorboard,莫名奇妙出现No dashboards are active for the current data set.错误。确认目录已经输入正确,但使用的是相对目录。

在这里插入图片描述

我的配置

  1. Windows 10 家庭中文版(64位)
  2. I7 [email protected]
  3. 16G DDR4
  4. GTX1050ti(4G)
  5. python3.5+tensorflow_gpu-1.4.0
  6. 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

猜你喜欢

转载自blog.csdn.net/whstudio123/article/details/86559658