Skip to content

Commit

Permalink
pytorch lightning 2 ProgressBar class rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph-Sarsfield authored Jul 17, 2024
1 parent 1bfa633 commit 42ce592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neuralprophet/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ def configure_trainer(
has_progressbar_callback = (
True
if has_custom_callbacks
and any(isinstance(callback, pl.callbacks.ProgressBarBase) for callback in config["callbacks"])
and any(isinstance(callback, pl.callbacks.ProgressBar) for callback in config["callbacks"])
else False
)
if has_progressbar_callback and not progress_bar_enabled:
Expand Down

0 comments on commit 42ce592

Please sign in to comment.