-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Progress bar not working #11208
Comments
Uninstalling |
We have this code here: Which means when you uninstall the ipywidgets, you hit this import: from tqdm import tqdm and otherwise from tqdm.auto import tqdm So I suspect if you did from tqdm.auto import tqdm
for j in tqdm(100, file=sys.stdout, leave=False, unit_scale=True, desc='loop'):
time.sleep(1) it would show the same behavior. Can you confirm? |
Side note: in Lightning, the rich progress bar will soon replace the tqdm as default. #10912 |
Confirmed, with a slight difference - it shows an empty progress bar (whereas PL doesn't show any):
Can it be used now? |
|
These lines were added here #2417 to fix another issue with tqdm+ipywidgets. I suspect what you are seeing is another problem with tqdm/ipywidgets itself upstream, I am unsure. |
This issue has been automatically marked as stale because it hasn't had any recent activity. This issue will be closed in 7 days if no further activity occurs. Thank you for your contributions, Pytorch Lightning Team! |
is all I get, it never changes. I'm using Spyder 5.2.1. Meanwhile this works properly
conda list
conda info
MRE from docs:
code
cc @awaelchli @rohitgr7
The text was updated successfully, but these errors were encountered: