chovanecm / sacredboard

Dashboard for sacred. Monitor and access your past machine learning experiments.
MIT License
184 stars 39 forks source link

Status of tensorboard integration #86

Closed rueberger closed 6 years ago

rueberger commented 6 years ago

What's the current status of tensorboard integration? I've just tried out the dev version and gotten 'Tensorboard does not respond. Sorry.', this is with tensorflow 1.4.1.

Is this the same issue as #53? Whatever it is, let's get this working again.

emited commented 6 years ago

I seem to be having the same problem. This originates from the fact that the method read_line of the class Process (tensorboard_instance is an instance of Process) does not seem to work as expected, because the polling of the stdout (in the method read_line) does not return anything, despite the fact that the terminal does print out lines, in particular the line with the port. This occurs before the regex for the port.

chovanecm commented 6 years ago

Hi, I found the problem. Tensorboard used to print the port number on the standard output, but now it is (for some reason) on the standard error output. I am working on a fix.

chovanecm commented 6 years ago

Closing as a duplicate of #53