Spaces:
Sleeping
Sleeping
File size: 380 Bytes
ae0af75 |
1 2 3 4 5 6 7 8 9 10 11 |
from lightning.pytorch.callbacks import Callback
from utility.helper import update_version_kaggle_dataset
class MyCustomSavingCallback(Callback):
def __init__(self):
super().__init__()
def on_save_checkpoint(self, trainer, pl_module, checkpoint):
super().on_save_checkpoint(trainer, pl_module, checkpoint)
update_version_kaggle_dataset()
|