diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-10-10 18:06:54 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-10-10 18:06:54 +0200 |
commit | b69254ce3135c112e29f7f1c986b7f0817da0c33 (patch) | |
tree | e596a719b445c0cbbd4108079206ec9d14de1437 /training/conf/callbacks/checkpoint.yaml | |
parent | cba94bdcab90f288dd1172607500ba2b28279736 (diff) |
Update configs
Diffstat (limited to 'training/conf/callbacks/checkpoint.yaml')
-rw-r--r-- | training/conf/callbacks/checkpoint.yaml | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/training/conf/callbacks/checkpoint.yaml b/training/conf/callbacks/checkpoint.yaml deleted file mode 100644 index b4101d8..0000000 --- a/training/conf/callbacks/checkpoint.yaml +++ /dev/null @@ -1,9 +0,0 @@ -model_checkpoint: - _target_: pytorch_lightning.callbacks.ModelCheckpoint - monitor: val/loss # name of the logged metric which determines when model is improving - save_top_k: 1 # save k best models (determined by above metric) - save_last: true # additionaly always save model from last epoch - mode: min # can be "max" or "min" - verbose: false - dirpath: checkpoints/ - filename: "{epoch:02d}" |