There is a problem opening tensorborad: No dashboards are active for the current data set solution

TensorBoard listens on port 6006 by running a local server. When the browser makes a request, analyze the data recorded during training and draw images during training.

I run the following statement in pycharm's terminal command line window:

tensorboard --logdir=logs

The results are as follows:

Click on this 6006 URL, and the following information appears, which cannot be displayed normally:

Solution:

The statement I entered --logdir=logs, prefix the path of logs to the right of the equal sign, that is, the path cannot be this alone, you can add the name of the directory above it.

That is, the change statement is, where the upper directory of logs is named Charpter02:

tensorboard --logdir=Charpter02\logs

as the picture shows:

Click on port 6006, the result interface is as follows, which can be displayed normally:

Guess you like

Origin blog.csdn.net/BaoITcore/article/details/124360632