πŸ•ΈοΈ Dynamic Computation Graph Visualizer

Watch PyTorch build its graph live, one line at a time β€” then watch gradients flow backward through it for real.

πŸ“‹ How To Use This Lab
  1. Press Next Step β–Ά to execute the next line of code β€” a new node or edge appears as it runs.
  2. Use Previous Step β—€ to rewind, or Auto Run β–Άβ–Ά to watch the whole script play itself.
  3. The last line, c.backward(), sends real gradient values flowing backward through every edge.
  4. Watch x especially β€” it feeds two different paths, so its gradient is the sum of both.
Grapher
πŸ€– GRAPHERPress Next Step to run the first line β€” I'll draw every node and edge as PyTorch creates them, live.
πŸ§‘β€πŸ« PROF. TORCHThis is a DYNAMIC graph β€” it's built fresh on every forward pass, one operation at a time, not compiled ahead of time.