Where is the documentation for fine_tune and fit_one_cycle?

I tried to run fine_tune with callback functions:

learn.fine_tune(…, callbacks=[…])

However I got an error that fit_one_cycle (!) had no function arguments callbacks. Trying to search for these two functions on the documentation returns nothing. They are also never introduced explicitly in the tutorial, just used. so, what is the secret callback argument/where is the documentation for these two mysterious functions?

Docs for Finetune / Schedulers

From any Jupyter notebook, you can get a shortcut to docs for a function by using doc() . (Install nbdev for additional/info formatting.)

2 Likes