Open I-CANT-CODE opened 5 years ago
OK, issue was resolved by using a time.wait(5) at the end of the loop. Maybe some strange non-blocking thread that needed time to run before moving on to the next training sesh
Ok issue was not resolved, TensorBoard only works sometimes after all loops are finished, still shows up empty during training for some reason.
I am having issues with TensorBoard.
I am basically training the network 10 times in a for loop, each iteration training on a different version of the same data set, like such:
for j in range(1,10):
but for some reason in TensorBoard only half of these sessions' scalar data shows up on the graphs. Why is this?
Edit: so the data does eventually show up in TensorBoard but it takes around 20 minutes AFTER it finishes training each iteration to finally show up in the graph. Any Idea why?