Disabling Validation Progress Bar #15014
Unanswered
ludwigwinkler
asked this question in
Lightning Trainer API: Trainer, LightningModule, LightningDataModule
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I would like to disable the validation progress bar via a custom TQDMProgressBar.
I'm logging the validation performance anyway, so an extra visual hint that the model is currently validating is unnecessary for me.
Tqdm(disable=True) doesn't do the trick, so what does?
Ideally, I just let the main bar run from batch 0 to batch number len(train_dataloader)+len(val_dataloader) all in a single progress bar and the logged validation metrics are only updated once the training loop is in the validate state.
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions