TensorBoard服务器6006端口报错:No dashboards are active for the current data set.

tensorboard生成日志后,在terminal运行成功(默认6006端口),但浏览器显示报错:数据源有误

TensorBoard服务器6006端口报错:No dashboards are active for the current data set._第1张图片

报错原因:服务器拥塞,需更换服务器端口

源代码如下:

PS D:\pytoch_learning\tudui> tensorboard --logdir First_try

更改后:

PS D:\pytoch_learning\tudui> tensorboard --logdir First_try --port=6007  #更改端口号
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服务器6006端口报错:No dashboards are active for the current data set._第2张图片

你可能感兴趣的:(python,报错,tensorflow,pytorch)