November 2017
Intermediate to advanced
304 pages
6h 58m
English
TensorFlow comes prepackaged with TensorBoard, so it will already be installed. It runs as a locally served web application accessible via the browser at http://0.0.0.0:6006. Conveniently, there is no server-side code or configurations required.
Depending on where your paths are, you may be able to run it directly, as follows:
tensorboard --logdir=/tmp/tensorlogs
If your paths are not correct, you may need to prefix the application accordingly, as shown in the following command line:
tf_install_dir/ tensorflow/tensorboard --logdir=/tmp/tensorlogs
On Linux, you can run it in the background and just let it keep running, as follows:
nohup tensorboard --logdir=/tmp/tensorlogs &
Some thought should be put into the directory ...
Read now
Unlock full access