Search code examples
tensorflowtensorboard

Tensorflow: how to close tensorboard server


Once I've started tensorboard server with the command

tensorboard --logdir=path/to/logdir

is there a command that explicitly close it or can I just kill it without any harm?

Thanks


Solution

  • You can kill it without any harm! TensorBoard simply reads your log files and generates visualizations based on them in memory, so you don't need to worry about file corruption, etc.