Does not show progress. Reason is line 359 in progress.py: `self.val_progress_bar.total = convert_inf(self.total_val_batches)` should be: `self.val_progress_bar.reset(self.total_val_batches)` Same applies to other places where progress bar total set.
Does not show progress. Reason is line 359 in progress.py:
self.val_progress_bar.total = convert_inf(self.total_val_batches)should be:
self.val_progress_bar.reset(self.total_val_batches)Same applies to other places where progress bar total set.