-
Hello! Is it correct that the model returned by the learner.fit is the model from the last epoch? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
That is correct! The model returned is from its latest state (i.e., the last epoch update).
By default, the learner already keeps the best 2 checkpoints based on the validation loss burn/crates/burn-train/src/learner/builder.rs Lines 96 to 106 in 960a635 You can load those from the Note that the checkpointing strategy can be customized with the builder by providing |
Beta Was this translation helpful? Give feedback.
That is correct! The model returned is from its latest state (i.e., the last epoch update).
By default, the learner already keeps the best 2 checkpoints based on the validation loss
burn/crates/burn-train/src/learner/builder.rs
Lines 96 to 106 in 960a635