|
Hello all, probably I am missing something obvious - is it possible to disable the progress-bar (tqdm) for the Thanks for any suggestions in advance. Dominik |
Replies: 5 comments 4 replies
|
Not particularly, is there a usecase for removing the progress bar? |
|
I want to run a custom evaluation script with my own pre/post-processing where I have set batchsize to "1". |
|
I have also had the same problem as @domcross, I am looping through several files using the I used this fix codereview.stackexchange.com/a/25471 to get around the issue by running the |
|
I used these lines to disable tqdm completely `from tqdm import tqdm from functools import partialmethod tqdm.init = partialmethod(tqdm.init, disable=True) |
|
This is an old topic, but when streaming, it is very desirable to have the progress and inference rate output be suppressed. With an 80 ms lookahead and 80 ms encoder step length, this output is printed excessively. |
I have also had the same problem as @domcross, I am looping through several files using the
transcribefunction with a batch size of 1 similar to the above.I used this fix codereview.stackexchange.com/a/25471 to get around the issue by running the
transcribefunction in a with statement with theirNoStdStreamsclass this stopped the progress bar from appearing. This was not ideal however, functionality to disable progress bars would be appreciated in future nemo releases.