Understanding the difference between on_validation_end
and on_validation_epoch_end
#20663
Unanswered
Northo
asked this question in
Lightning Trainer API: Trainer, LightningModule, LightningDataModule
Replies: 0 comments
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.
-
What is the intended difference between
on_validation_end
andon_validation_epoch_end
?As far as I've been able to understand
on_validation_end
does not allow logging,on_validation_epoch_end
doeson_validation_end
is where early stopping is being handledon_validation_epoch_end
->on_validation_end
).Any input on this is greatly appreciated. Mostly
From the docs, it is clear what hooks exists, but I find it difficult to find clear documentation on when and "how" they are called.
Example code
Beta Was this translation helpful? Give feedback.
All reactions