diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-06-15 00:15:40 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-06-15 00:15:40 +0200 |
commit | 2c9066b685d41ef0ab5ea94e938b8a30b4123656 (patch) | |
tree | 341e8d0d73cdde0fe4908421a5e9fd34f16cd8c3 /training/conf/lr_schedulers | |
parent | 8bb76745e43c6b4967c8e91ebaf4c4295d0b8d0b (diff) |
Update configs
Diffstat (limited to 'training/conf/lr_schedulers')
-rw-r--r-- | training/conf/lr_schedulers/one_cycle.yaml | 37 |
1 files changed, 17 insertions, 20 deletions
diff --git a/training/conf/lr_schedulers/one_cycle.yaml b/training/conf/lr_schedulers/one_cycle.yaml index 801a01f..20eab9f 100644 --- a/training/conf/lr_schedulers/one_cycle.yaml +++ b/training/conf/lr_schedulers/one_cycle.yaml @@ -1,20 +1,17 @@ -one_cycle: - _target_: torch.optim.lr_scheduler.OneCycleLR - max_lr: 1.0e-3 - total_steps: null - epochs: 512 - steps_per_epoch: 4992 - pct_start: 0.3 - anneal_strategy: cos - cycle_momentum: true - base_momentum: 0.85 - max_momentum: 0.95 - div_factor: 25.0 - final_div_factor: 10000.0 - three_phase: true - last_epoch: -1 - verbose: false - - # Non-class arguments - interval: step - monitor: val/loss +_target_: torch.optim.lr_scheduler.OneCycleLR +max_lr: 1.0e-3 +total_steps: null +epochs: 512 +steps_per_epoch: 4992 +pct_start: 0.3 +anneal_strategy: cos +cycle_momentum: true +base_momentum: 0.85 +max_momentum: 0.95 +div_factor: 25.0 +final_div_factor: 10000.0 +three_phase: true +last_epoch: -1 +verbose: false +interval: step +monitor: val/loss |