tensorflow-rl icon indicating copy to clipboard operation
tensorflow-rl copied to clipboard

Tensorboard summaries not appearing

Open mabirck opened this issue 8 years ago • 1 comments

No scalar data was found.

How did you guys get the code to work with tensorboard? the summary part seems to be not working when training.

....................................................................... python main.py Pong-v0 --alg_type a3c -n 8

mabirck avatar Aug 02 '17 20:08 mabirck

I had this same problem, I was able to get Tensorboard working by calling Tensorboard from inside the folder with the summaries, i.e., assuming you left the summaries directory as default,

cd /tmp/summary_logs/Pong-v0/...
tensorboard --logdir='./'

It may complain about more than one graph event, but you should see the data.

hammertime89 avatar Aug 31 '17 13:08 hammertime89