博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TensorFlow学习_(3)
阅读量:7047 次
发布时间:2019-06-28

本文共 1070 字,大约阅读时间需要 3 分钟。

在实际运行tensorboard的时候出现 No dashboards are active for the current data set.

 

官方文档:

My TensorBoard isn't showing any data! What's wrong?

First, check that the directory passed to --logdir is correct. You can also verify this by navigating to the Scalars dashboard (under the "Inactive" menu) and looking for the log directory path at the bottom of the left sidebar.

If you're loading from the proper path, make sure that event files are present. TensorBoard will recursively walk its logdir, it's fine if the data is nested under a subdirectory. Ensure the following shows at least one result:

find DIRECTORY_PATH | grep tfevents

You can also check that the event files actually have data by running tensorboard in inspect mode to inspect the contents of your event files.

tensorboard --inspect --logdir DIRECTORY_PATH

首先检查logdir的路径是否正确,也要看scalars那个指标(我连页面都打不开,哪看的到Scalars)!!!

路径要是正确的话,数据会在你写的文件目录的子目录里

我在这里用的path='./log' 相当于在该目录下建立了一个log子目录

但我用cmd运行的时候,出现了这样一个问题,给的网址根本打不开

后来我尝试把路径改成这样

想当与把log文件夹具体路径写在logdir的后面,该链接可以正常打开!

转载于:https://www.cnblogs.com/AlexHaiY/p/9323149.html

你可能感兴趣的文章
易·school使用体验
查看>>
使用cxf构建webservice
查看>>
19.Kubernetes深入Pod之容器共享Volume
查看>>
Makefile中的变量和shell变量
查看>>
<转>ThinkPHP的开发常用系统配置项
查看>>
真正的让iframe自适应高度 兼容多种浏览器随着窗口大小改变
查看>>
tomcat部署项目(war文件)
查看>>
大数据多维分析平台的实践
查看>>
Python常用函数
查看>>
二分法习题HDU2199
查看>>
strcpy,sprintf,memcpy的区别
查看>>
ucore-lab1-练习4report
查看>>
web框架
查看>>
线程互斥锁
查看>>
spring colud 博客
查看>>
Redis安装
查看>>
JavaScript 自学过程
查看>>
GDAL源码剖析(三)之Swig编译和帮助文档生成
查看>>
Android学习笔记:NDK入门一些总结
查看>>
Project Euler Problem 3: Largest prime factor
查看>>