Skip to content

Instantly share code, notes, and snippets.

@kingabzpro
Last active August 15, 2022 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kingabzpro/2faa33f8332513dd9a37277630ec3abe to your computer and use it in GitHub Desktop.
Save kingabzpro/2faa33f8332513dd9a37277630ec3abe to your computer and use it in GitHub Desktop.
tqdm progress in notebook
from tqdm.notebook import trange
for i in trange(10, desc='Traning Model on 10 Epochs'):
sleep(0.01)
for x in trange(10000, desc=f'Epoch {i}'):
sleep(0.001)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment