TensorBoard in Deepnote

TensorBoard runs as a sub-process inside a Deepnote project. The trick is exposing its port to your browser — these notebooks cover the common patterns.

  • TensorBoard with ngrok — Tunnel TensorBoard's dashboard through ngrok so you can view it from outside the Deepnote project. Useful when iframe-embedding doesn't render.

  • Scraping the EPL Stats Website — A non-ML project that demonstrates the same long-running-service pattern (scraper + persistent state). The docs walk through Deepnote project structure.

Quick reference

# inside a Deepnote cell
%load_ext tensorboard
%tensorboard --logdir logs --port 6006

If the inline %tensorboard magic doesn't render, fall back to the ngrok pattern from the notebook above.