-
What is the motivation for this task?What should I do if I want to save weights every 5 cycles? Thanks Describe the solution you'd likeWhat should I do if I want to save weights every 5 cycles? Thanks Additional contextWhat should I do if I want to save weights every 5 cycles? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You will need to modify the following code: |
Beta Was this translation helpful? Give feedback.
You will need to modify the following code:
https://github.com/openvinotoolkit/anomalib/blob/1f50c952fc65a165884b2b94e178821dcebfbbef/src/anomalib/utils/callbacks/__init__.py#L63-L69
and add
every_n_epochs
orevery_n_train_steps
or whichever suits you. You might need to remove monitor, but I am not sure. Check ModelCheckpoint page for more details on checkpointing.