-
Notifications
You must be signed in to change notification settings - Fork 238
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
Disabled TQDM is still on #58
Comments
Hm, I just tried to reproduce your error and don't get the same error with just another progress bar in use: Maybe it's some interaction between torchaudio and tqdm? Can you try embedding some non-noisereduce tqdm bar in your function and see if the error persists? |
I am running it in this notebook https://www.kaggle.com/jirkaborovec/birdclef-convert-spectrograms-noise-reduce |
Yes, I'm trying to figure out where your error is coming from. In noisereduce, I call tqdm here: So I am suggesting you try adding a tqdm(range(10), disable=True) in the line above nr.reduce noise in your function. If you find that that tqdm bar also shows, you'll know if the error is unrelated to noisereduce. |
tried and do not see the 10-step progress bar |
Ok, well I can't reproduce your error, so I'll just leave this open. tqdm is referenced once in the package (https://github.com/timsainb/noisereduce/blob/master/noisereduce/noisereduce.py#L224), and the disable flag is set to use_tqdm. So I can't see where the error would arise. |
Hello, I have suspicion that the TQDM disabling does not work properly when another
tqdm
progress bar is already in useand the used function is:
The text was updated successfully, but these errors were encountered: