-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Training time estimation when max_epochs is given #1875
Comments
Hi! thanks for your contribution!, great first issue! |
? we already have a tqdm bar. in case you need a custom one you can also implement one using a callback @awaelchli |
I know, but it only shows the time for the current epoch, but not how long the overall training will take. |
don't you just multiply times the num of epochs? |
Maybe we could provide such a global progress bar as part of bolts. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
its 2024, this issue hasnt been fixed? we need to see estimated time for training and how long training has been running on the progress bar |
🚀 Feature
Time estimation of training until
max_epochs
are reached.Motivation
Right now I don't see how long I am training for already and how long it is going to take to train e.g. 500 epochs.
I usually have a tqdm progress bar for number of epochs to get an estimate how long my training will run maximally.
Pitch
If
max_epochs
is given, create a tqdm progress bar (probably withleave=True
).Alternatives
Keep it like it is and make rough estimations per hand.
Additional context
The text was updated successfully, but these errors were encountered: