We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe. We already include the rich package, so we can use it's progress bar as described here:
rich
It'll look like this:
Describe the solution you'd like To implement the RichProgressBar
Additional context All that's needed is to modify the trainer initialization as follow:
trainer = pl.Trainer( accelerator="auto", logger=TensorBoardLogger(model_path), # profiler="simple", val_check_interval=hparams.train.eval_interval, max_epochs=hparams.train.epochs, check_val_every_n_epoch=None, precision="16-mixed" if hparams.train.fp16_run # else "bf16-mixed" else "bf16-mixed" if hparams.train.get("bf16_run", False) else 32, callbacks=[pl.callbacks.RichProgressBar()] # <-- Add this here )
Since it's a one-line change I don't see a huge need to turn this into a full pull request. I hope that's okay 🙏
The text was updated successfully, but these errors were encountered:
I think it's fine. Please send a PR anyway. (I would have to follow the same procedure if I were to do it)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
We already include the
rich
package, so we can use it's progress bar as described here:It'll look like this:

Describe the solution you'd like
To implement the RichProgressBar
Additional context
All that's needed is to modify the trainer initialization as follow:
Since it's a one-line change I don't see a huge need to turn this into a full pull request. I hope that's okay 🙏
The text was updated successfully, but these errors were encountered: