-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
resolvedThe issue has been resolvedThe issue has been resolved
Description
Sometimes the kernel will crash in Colab and Kaggle during training. This is an issue on lightning's end, and can be traced back to the progress bar refresh rate.
We have currently implemented safeguards to reduce the refresh rate if we detect that the code is run on either Colab or Kaggle. If these do not work correctly (perhaps because the manner we detect this no longer works due to changes on the provider's end), one can manually set the refresh rate using methods:
trainer = dl.Trainer(...)
trainer.tqdm_progress_bar(refresh_rate=10)or by disabling the progress bar completely:
trainer = dl.Trainer(...)
trainer.disbale_progress_bar()Metadata
Metadata
Assignees
Labels
resolvedThe issue has been resolvedThe issue has been resolved