Replies: 2 comments 2 replies
-
|
sounds like you need |
Beta Was this translation helpful? Give feedback.
2 replies
-
|
Would you like to clear the console? Although not the most efficient solution, it should work. # Your code before printing the progress bar...
import os
os.system('cls' if os.name == 'nt' else 'clear')
# printing the progress bar code goes here... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm running some code and have TQDM used like this:
It's the same for my evaluation code below.
Running the script produces something like this:

What usually happens is that the evaluation progress bars will fill up beneath the current training bar, and then move up with a new training bar starting at the very bottom.
When the entire process finishes, I have a total of
num_epochs * 3progress bars on my screen, and I would like to only have three with each being updated in place.How should I go about doing this?
Beta Was this translation helpful? Give feedback.
All reactions