How to define an interval validate callbacks in lightning #9534
Answered
by
rohitgr7
rentainhe
asked this question in
Lightning Trainer API: Trainer, LightningModule, LightningDataModule
-
I want to train my model in 20000 steps and run evaluation on each 1000 steps
But I find out that there is no |
Beta Was this translation helpful? Give feedback.
Answered by
rohitgr7
Sep 15, 2021
Replies: 1 comment 9 replies
-
there is a |
Beta Was this translation helpful? Give feedback.
9 replies
Answer selected by
rentainhe
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
there is a
val_check_interval
argument for it insideTrainer
. You can setTrainer(val_check_interval=1000)
.