The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

TensorBoard Visualization

Overview

TensorBoard is a visualization tool included with TensorFlow that enables you to visualize your TensorFlow graph, plot quantitative metrics about the execution of your graph, and show additional data like images that pass through it.

Models built using tfestimators automatically contain most of the necessary information to visualize the TensorFlow graph, variables, etc., for you so you can easily launch the TensorBoard without additional manual specifications.

Examples

To start the TensorBoard, you trained a model in a similar fashion as follows:

estimator(
    model_fn = model_fn,
    model_dir = "/tmp/test"
) %>% train(input_fn = input, steps = 100L)

and then you can call

tensorboard(log_dir = "/tmp/test", launch_browser = TRUE)

with log_dir being the directory you used to save the model checkpoints, to launch the TensorBoard in browser.

For example, here’s a TensorBoard display for a model’s training loss:

Here’s another TensorBoard display for this model’s TensorFlow graph that demonstrates the architecture of the model:

You can also click to see each subgraph’s details:

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.