Tensorboard Error: No dashboards are active for current data set

Your issue may be related to the drive you are attempting to start tensorboard from and the drive your logdir is on. Tensorboard uses a colon to separate the optional run name and the path in the logdir flag, so your path is being interpreted as \path\to\output\folder with name C.

This can be worked around by either starting tensorboard from the same drive as your log directory or by providing an explicit run name, e.g. logdir=mylogs:C:\path\to\output\folder

See here for reference to the issue.


In case of Windows,I got a workaround.

cd /path/to/log

tensorboard --logdir=./

Here you can use path as normal. Keep in mind not to give spaces with it as logdir = ./.

This gave me an error:

No dashboards are active for the current data set. Probable causes: - You haven’t written any data to your event files. - TensorBoard can’t find your event files.