How do we create the block diagram flow charts that we see in the Jupyter NBs that Jeremy presents?
In the image below where does gv come from? What library do I need to import to use that?
1 Like
it’s from utils.py in fastbook
repo. I haven’t checked how we can get it just by installing fastai
only though. You’d get this if you do from fastbook import *
But in general, if you don’t know where a function is coming from, just do <func>?
or help(<func>)
or doc(func)
to go straight to the fastai docs.
You can also view the source code directly by doing <func>??
3 Likes