Alternative Training Progress Measures

From my experience, tqdm does not play nicely with Google Colab when Colab is run locally. With pytorch lightning, can I disable tqdm so that I can train my models when running Colab locally? Is there an alternative training indicator that would highlight my training progress? Thanks

Here’s a github issue that reflects my understanding of the tqdm/Local Colab issue - Tqdm notebook / trange prints nothing in Google Colab local runtime · Issue #687 · tqdm/tqdm · GitHub

can I disable tqdm so that I can train my models when running Colab locally

set progress_bar_refresh_rate=0

Is there an alternative training indicator that would highlight my training progress

maybe log your training progress in a logger like TensorBoard. You can log self.global_step in training_step (I think it’s logged by default).