Fastai Callback¶
-
class
jovian.callbacks.fastai.
JovianFastaiCallback
(learn: fastai.basic_train.Learner, arch_name=None, reset_tracking=True)[source]¶ Fastai callback to automatically log hyperparameters and metrics.
- Parameters
learn (Learner) – A learner object reference of your current model.
arch_name (string) – A name for the model you’re training.
- Example
from jovian.callbacks.fastai import JovianFastaiCallback jvn_cb = JovianFastaiCallback(learn, 'res18') learn.fit_one_cycle(5, callbacks = jvn_cb)
Tutorial
Visit this for a detailed example on using the fastai callback, also visit the Records tab to see all the logs of that notebook logged by the callback.