GoogleCloudPlatform / GoogleCloudPlatform/training-data-analyst
During the stop of tensorboard, the cell will stack trace if no running tensorboard instances
Open
help wanted
- Dominant language
- Jupyter Notebook
- Stars
- 8.6k
- Forks
- 6.1k
- Avg merge
- 4h 44m
- Merged PRs (30d)
- 2
Description
Here is a fix
**Stop tensorboard instances**
```
pids_df = TensorBoard.list()
if not pids_df.empty:
for pid in pids_df['pid']:
TensorBoard().stop(pid)
print 'Stopped TensorBoard with pid {}'.format(pid)
```
Contributor guide
Assessment
This issue has not been assessed yet.