Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed smoothing in tqdm to decrease variability of time remaining #1194

Merged
merged 1 commit into from Mar 27, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pytorch_lightning/trainer/trainer.py
Expand Up @@ -825,7 +825,7 @@ def run_pretrain_routine(self, model: LightningModule):
# init progress bar
pbar = tqdm(leave=True, position=2 * self.process_position,
disable=not self.show_progress_bar, dynamic_ncols=True,
file=sys.stdout)
file=sys.stdout, smoothing=0)
self.main_progress_bar = pbar

# clear cache before training
Expand Down