Sharing TensorBoard

Learn how to share TensorBoard.

We'll cover the following

Share TensorBoard dashboards

TensorBoard.dev is a hosted version of TensorBoard that makes it easy to share our experiments. Let’s upload TensorBoard to TensorBoard.dev.

# On Colab or Jupyter notebook
!tensorboard dev upload --logdir ./runs \
  --name "Flax experiments" \
  --description "Logging model metrics with JAX" \
  --one_shot

When we run the code above, we will get a prompt to authorize the upload. We should be careful not to share sensitive data because TensorBoard.dev experiments are public.

Get hands-on with 1200+ tech skills courses.