diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-06-27 16:52:55 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-06-27 16:52:55 +0200 |
commit | 0ba945e84d11a07ac95fdf8495f2ff278215adb9 (patch) | |
tree | b22bcecf37416fbdfbe6a5ef178471e1a5751c3e /training/conf/callbacks/swa.yaml | |
parent | 22e36513dd43d2e2ca82ca28a1ea757c5663676a (diff) |
Changed structure of callbacks
Diffstat (limited to 'training/conf/callbacks/swa.yaml')
-rw-r--r-- | training/conf/callbacks/swa.yaml | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/training/conf/callbacks/swa.yaml b/training/conf/callbacks/swa.yaml index 144ad6e..279ca69 100644 --- a/training/conf/callbacks/swa.yaml +++ b/training/conf/callbacks/swa.yaml @@ -1,16 +1,7 @@ -# @package _group_ -- type: ModelCheckpoint - args: - monitor: val_loss - mode: min - save_last: true -- type: StochasticWeightAveraging - args: - swa_epoch_start: 0.8 - swa_lrs: 0.05 - annealing_epochs: 10 - annealing_strategy: cos - device: null -- type: LearningRateMonitor - args: - logging_interval: step +type: StochasticWeightAveraging +args: + swa_epoch_start: 0.8 + swa_lrs: 0.05 + annealing_epochs: 10 + annealing_strategy: cos + device: null |