-
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
ModelCheckpoint epoch and progress bar epoch mismatch #1946
Comments
@Borda FYI. |
what is the epoch number of the val sanity check? I don't want to write the results of sanity check to my logs, is there a way to check if validation is currently in sanity check? |
This does not seem to be true in 0.8.0. Epoch still starts from 1. |
yes just noticed that too... they should start from 0 @Borda |
ohhh that was my misunderstanding, I thought it shall start from 1 and because of the confusion I was asking about the diff indexing in steps and epochs #2206 (comment) well before it was indexed from 0... Ok, reverting and moving epoch indexing starting from 0 |
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. |
🐛 Bug
Progress bar epoch starts at 1, but in ModelCheckpoint it starts at 0.
To Reproduce
Steps to reproduce the behavior:
https://github.com/PyTorchLightning/pytorch-lightning/blob/8ca8336ce52ee7379f4d399520636143eb31018b/pytorch_lightning/callbacks/progress.py#L320
https://github.com/PyTorchLightning/pytorch-lightning/blob/8ca8336ce52ee7379f4d399520636143eb31018b/pytorch_lightning/callbacks/model_checkpoint.py#L212
Expected behavior
Shouldn't they be consistent?
The text was updated successfully, but these errors were encountered: