Modify Display Utils¶
Utilities for collecting/checking fastai
user environment
from fastai.utils.mod_display import *
learn.fit()
will display a progress bar and give the final results once completed:
learn.fit(1)
progress_disabled_ctx
will remove all that update and only show the total time once completed.
with progress_disabled_ctx(learn) as learn:
learn.fit(1)