3

I have some trouble with tqdm.auto

It worked correctly until few days ago, but it is not working properly now.

I think maybe some installation has messed up everything.

So, my problem is:

when I run this code:

for epoch in tqdm(range(epochs)):

Instead of progressbar, I get the following:

HBox(children=(FloatProgress(value=0.0), HTML(value='')))
0   lr: 0.01
HBox(children=(FloatProgress(value=0.0, description='train', max=4.0, style=ProgressStyle(description_width='i…

Thank you so much for your help.

ewokx
  • 2,204
  • 3
  • 14
  • 27
sunho ko
  • 31
  • 3
  • 1
    You may refer to the most voted answer of Jupyter Notebooks not displaying progress bars(https://stackoverflow.com/questions/57343134/jupyter-notebooks-not-displaying-progress-bars) – Sam Sep 16 '20 at 15:50

1 Answers1

1

you might want to try to do this :

from tqdm.notebook import tqdm

hope it works.