We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 373c32e commit 1686aabCopy full SHA for 1686aab
pytorch_lightning/callbacks/progress/rich_progress.py
@@ -37,7 +37,7 @@ def render(self, task: "Task") -> ProgressBar:
37
total=max(0, task.total),
38
completed=max(0, task.completed),
39
width=None if self.bar_width is None else max(1, self.bar_width),
40
- pulse=not task.started or math.isfinite(task.remaining),
+ pulse=not task.started or not math.isfinite(task.remaining),
41
animation_time=task.get_time(),
42
style=self.style,
43
complete_style=self.complete_style,
0 commit comments