Skip to content

Commit

Permalink
Fixed deprecated attribute in fastai
Browse files Browse the repository at this point in the history
Signed-off-by: miguelgfierro <[email protected]>
  • Loading branch information
miguelgfierro committed Feb 24, 2024
1 parent c8d90f7 commit d9ec1cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recommenders/models/fastai/fastai_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def hide_fastai_progress_bar():
fastprogress.fastprogress.NO_BAR = True
fastprogress.fastprogress.WRITER_FN = str
master_bar, progress_bar = force_console_behavior()
fastai.basic_train.master_bar, fastai.basic_train.progress_bar = (
fastai.callback.progress.master_bar, fastai.callback.progress.progress_bar = (
master_bar,
progress_bar,
)

0 comments on commit d9ec1cd

Please sign in to comment.