what does step
mean in max_steps
?
#12220
Answered
by
rohitgr7
yc1999
asked this question in
Lightning Trainer API: Trainer, LightningModule, LightningDataModule
-
I notice that The following code maybe helpful: |
Beta Was this translation helpful? Give feedback.
Answered by
rohitgr7
Mar 4, 2022
Replies: 1 comment 2 replies
-
it means global_step. So if you have accumulation factors = 2 and max_steps = 10, then the total training batches that will be covered here will be 20 instead of 10. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
yc1999
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it means global_step. So if you have accumulation factors = 2 and max_steps = 10, then the total training batches that will be covered here will be 20 instead of 10.
global_step
indicate total optimization steps.