microsoft / tensorwatch

Debugging, monitoring and visualization for Python Machine Learning and Data Science
MIT License
3.42k stars 362 forks source link

stream.write does not print in the watcher file #46

Open vaapopescu opened 5 years ago

vaapopescu commented 5 years ago

My watcher does not print anything into the log file.

watcher = tensorwatch.Watcher(filename='tensorwatch.log', port=5)

stream = watcher.create_stream(name='loss', **kwargs)
watcher.make_notebook()

//during training
stream.write((epoch, loss))

The tensorwatch.log is created, but it is always empty, so when I try to plot in Jupyter Notebook it does not show anything.