yscv-optim 0.1.8

Optimizers (SGD, Adam, LAMB), LR schedulers, and gradient clipping
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
use super::validate::{
    validate_cosine_t_max, validate_lr, validate_one_cycle_final_div_factor,
    validate_one_cycle_pct_start, validate_one_cycle_total_steps, validate_step_gamma,
    validate_step_size, validate_warmup_steps,
};
use super::{LearningRate, OptimError};

/// Scheduler abstraction for stateful learning-rate policies.
pub trait LrScheduler {
    /// Advances scheduler by one epoch and returns resulting optimizer LR.
    fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError>;

    /// Returns number of already-processed step calls.
    fn epoch(&self) -> usize;

    /// Resets scheduler internal state.
    fn reset(&mut self);
}

/// Piecewise constant learning-rate scheduler.
///
/// Every `step_size` calls to [`StepLr::step`], the optimizer learning rate is
/// multiplied by `gamma`.
#[derive(Debug, Clone, PartialEq)]
pub struct StepLr {
    step_size: usize,
    gamma: f32,
    epoch: usize,
}

impl StepLr {
    /// Creates step scheduler with required `step_size > 0` and `gamma in (0, 1]`.
    pub fn new(step_size: usize, gamma: f32) -> Result<Self, OptimError> {
        validate_step_size(step_size)?;
        validate_step_gamma(gamma)?;
        Ok(Self {
            step_size,
            gamma,
            epoch: 0,
        })
    }

    /// Returns configured step size.
    pub fn step_size(&self) -> usize {
        self.step_size
    }

    /// Returns configured decay factor.
    pub fn gamma(&self) -> f32 {
        self.gamma
    }

    /// Returns number of already-processed step calls.
    pub fn epoch(&self) -> usize {
        self.epoch
    }

    /// Resets internal epoch counter.
    pub fn reset(&mut self) {
        <Self as LrScheduler>::reset(self);
    }

    /// Advances scheduler by one epoch and returns resulting optimizer LR.
    pub fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        <Self as LrScheduler>::step(self, optimizer)
    }
}

impl LrScheduler for StepLr {
    fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        self.epoch = self.epoch.saturating_add(1);
        if self.epoch.is_multiple_of(self.step_size) {
            let next_lr = optimizer.learning_rate() * self.gamma;
            optimizer.set_learning_rate(next_lr)?;
        }
        Ok(optimizer.learning_rate())
    }

    fn epoch(&self) -> usize {
        self.epoch
    }

    fn reset(&mut self) {
        self.epoch = 0;
    }
}

/// Cosine annealing learning-rate scheduler.
///
/// Computes:
/// `lr = min_lr + 0.5 * (base_lr - min_lr) * (1 + cos(pi * t_cur / t_max))`,
/// where `t_cur` is clamped to `t_max`.
#[derive(Debug, Clone, PartialEq)]
pub struct CosineAnnealingLr {
    t_max: usize,
    min_lr: f32,
    epoch: usize,
    base_lr: Option<f32>,
}

impl CosineAnnealingLr {
    /// Creates cosine scheduler with `t_max > 0` and finite `min_lr >= 0`.
    pub fn new(t_max: usize, min_lr: f32) -> Result<Self, OptimError> {
        validate_cosine_t_max(t_max)?;
        validate_lr(min_lr)?;
        Ok(Self {
            t_max,
            min_lr,
            epoch: 0,
            base_lr: None,
        })
    }

    /// Pins explicit base LR used by cosine schedule.
    pub fn with_base_lr(mut self, base_lr: f32) -> Result<Self, OptimError> {
        validate_lr(base_lr)?;
        if self.min_lr > base_lr {
            return Err(OptimError::SchedulerMinLrExceedsBase {
                min_lr: self.min_lr,
                base_lr,
            });
        }
        self.base_lr = Some(base_lr);
        Ok(self)
    }

    pub fn t_max(&self) -> usize {
        self.t_max
    }

    pub fn min_lr(&self) -> f32 {
        self.min_lr
    }

    pub fn base_lr(&self) -> Option<f32> {
        self.base_lr
    }

    pub fn epoch(&self) -> usize {
        self.epoch
    }

    pub fn reset(&mut self) {
        <Self as LrScheduler>::reset(self);
    }

    pub fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        <Self as LrScheduler>::step(self, optimizer)
    }
}

impl LrScheduler for CosineAnnealingLr {
    fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        self.epoch = self.epoch.saturating_add(1);

        let base_lr = match self.base_lr {
            Some(base) => base,
            None => {
                let current = optimizer.learning_rate();
                self.base_lr = Some(current);
                current
            }
        };
        if self.min_lr > base_lr {
            return Err(OptimError::SchedulerMinLrExceedsBase {
                min_lr: self.min_lr,
                base_lr,
            });
        }

        let t_cur = self.epoch.min(self.t_max) as f32;
        let t_max = self.t_max as f32;
        let cos_term = (std::f32::consts::PI * t_cur / t_max).cos();
        let next_lr = self.min_lr + 0.5 * (base_lr - self.min_lr) * (1.0 + cos_term);
        optimizer.set_learning_rate(next_lr)?;
        Ok(next_lr)
    }

    fn epoch(&self) -> usize {
        self.epoch
    }

    fn reset(&mut self) {
        self.epoch = 0;
    }
}

/// Linear warmup learning-rate scheduler.
///
/// Computes:
/// `lr = start_lr + (base_lr - start_lr) * min(epoch, warmup_steps)/warmup_steps`.
#[derive(Debug, Clone, PartialEq)]
pub struct LinearWarmupLr {
    warmup_steps: usize,
    start_lr: Option<f32>,
    base_lr: Option<f32>,
    epoch: usize,
}

impl LinearWarmupLr {
    /// Creates warmup scheduler with `warmup_steps > 0`.
    pub fn new(warmup_steps: usize) -> Result<Self, OptimError> {
        validate_warmup_steps(warmup_steps)?;
        Ok(Self {
            warmup_steps,
            start_lr: None,
            base_lr: None,
            epoch: 0,
        })
    }

    /// Sets explicit warmup start learning rate.
    pub fn with_start_lr(mut self, start_lr: f32) -> Result<Self, OptimError> {
        validate_lr(start_lr)?;
        if let Some(base_lr) = self.base_lr
            && start_lr > base_lr
        {
            return Err(OptimError::SchedulerStartLrExceedsBase { start_lr, base_lr });
        }
        self.start_lr = Some(start_lr);
        Ok(self)
    }

    /// Sets explicit warmup end/base learning rate.
    pub fn with_base_lr(mut self, base_lr: f32) -> Result<Self, OptimError> {
        validate_lr(base_lr)?;
        if let Some(start_lr) = self.start_lr
            && start_lr > base_lr
        {
            return Err(OptimError::SchedulerStartLrExceedsBase { start_lr, base_lr });
        }
        self.base_lr = Some(base_lr);
        Ok(self)
    }

    pub fn warmup_steps(&self) -> usize {
        self.warmup_steps
    }

    pub fn start_lr(&self) -> Option<f32> {
        self.start_lr
    }

    pub fn base_lr(&self) -> Option<f32> {
        self.base_lr
    }

    pub fn epoch(&self) -> usize {
        self.epoch
    }

    pub fn reset(&mut self) {
        <Self as LrScheduler>::reset(self);
    }

    pub fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        <Self as LrScheduler>::step(self, optimizer)
    }
}

impl LrScheduler for LinearWarmupLr {
    fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        self.epoch = self.epoch.saturating_add(1);

        let base_lr = match self.base_lr {
            Some(base_lr) => base_lr,
            None => {
                let current = optimizer.learning_rate();
                self.base_lr = Some(current);
                current
            }
        };
        let start_lr = self.start_lr.unwrap_or(0.0);
        if start_lr > base_lr {
            return Err(OptimError::SchedulerStartLrExceedsBase { start_lr, base_lr });
        }

        let warmup_ratio = self.epoch.min(self.warmup_steps) as f32 / self.warmup_steps as f32;
        let next_lr = start_lr + (base_lr - start_lr) * warmup_ratio;
        optimizer.set_learning_rate(next_lr)?;
        Ok(next_lr)
    }

    fn epoch(&self) -> usize {
        self.epoch
    }

    fn reset(&mut self) {
        self.epoch = 0;
    }
}

/// One-cycle learning-rate scheduler with linear warmup and linear cooldown.
#[derive(Debug, Clone, PartialEq)]
pub struct OneCycleLr {
    total_steps: usize,
    max_lr: f32,
    pct_start: f32,
    final_div_factor: f32,
    initial_lr: Option<f32>,
    epoch: usize,
}

impl OneCycleLr {
    /// Creates one-cycle scheduler.
    ///
    /// - `total_steps > 0`
    /// - `max_lr >= 0`
    pub fn new(total_steps: usize, max_lr: f32) -> Result<Self, OptimError> {
        validate_one_cycle_total_steps(total_steps)?;
        validate_lr(max_lr)?;
        Ok(Self {
            total_steps,
            max_lr,
            pct_start: 0.3,
            final_div_factor: 1_000.0,
            initial_lr: None,
            epoch: 0,
        })
    }

    /// Sets fraction of cycle spent in the up phase.
    pub fn with_pct_start(mut self, pct_start: f32) -> Result<Self, OptimError> {
        validate_one_cycle_pct_start(pct_start)?;
        self.pct_start = pct_start;
        Ok(self)
    }

    /// Sets divisor used for final LR (`final_lr = initial_lr / final_div_factor`).
    pub fn with_final_div_factor(mut self, final_div_factor: f32) -> Result<Self, OptimError> {
        validate_one_cycle_final_div_factor(final_div_factor)?;
        self.final_div_factor = final_div_factor;
        Ok(self)
    }

    /// Pins explicit initial LR used by the schedule.
    pub fn with_initial_lr(mut self, initial_lr: f32) -> Result<Self, OptimError> {
        validate_lr(initial_lr)?;
        if self.max_lr < initial_lr {
            return Err(OptimError::SchedulerMaxLrBelowInitial {
                max_lr: self.max_lr,
                initial_lr,
            });
        }
        self.initial_lr = Some(initial_lr);
        Ok(self)
    }

    pub fn total_steps(&self) -> usize {
        self.total_steps
    }

    pub fn max_lr(&self) -> f32 {
        self.max_lr
    }

    pub fn pct_start(&self) -> f32 {
        self.pct_start
    }

    pub fn final_div_factor(&self) -> f32 {
        self.final_div_factor
    }

    pub fn initial_lr(&self) -> Option<f32> {
        self.initial_lr
    }

    pub fn epoch(&self) -> usize {
        self.epoch
    }

    pub fn reset(&mut self) {
        <Self as LrScheduler>::reset(self);
    }

    pub fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        <Self as LrScheduler>::step(self, optimizer)
    }
}

impl LrScheduler for OneCycleLr {
    fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        self.epoch = self.epoch.saturating_add(1);

        let initial_lr = match self.initial_lr {
            Some(initial_lr) => initial_lr,
            None => {
                let current = optimizer.learning_rate();
                self.initial_lr = Some(current);
                current
            }
        };
        if self.max_lr < initial_lr {
            return Err(OptimError::SchedulerMaxLrBelowInitial {
                max_lr: self.max_lr,
                initial_lr,
            });
        }

        let final_lr = initial_lr / self.final_div_factor;
        let up_steps = one_cycle_up_steps(self.total_steps, self.pct_start);
        let clamped_epoch = self.epoch.min(self.total_steps);
        let next_lr = if clamped_epoch <= up_steps {
            let progress = clamped_epoch as f32 / up_steps as f32;
            initial_lr + (self.max_lr - initial_lr) * progress
        } else {
            let down_steps = self.total_steps.saturating_sub(up_steps).max(1);
            let down_epoch = clamped_epoch - up_steps;
            let progress = down_epoch as f32 / down_steps as f32;
            self.max_lr - (self.max_lr - final_lr) * progress
        };
        optimizer.set_learning_rate(next_lr)?;
        Ok(next_lr)
    }

    fn epoch(&self) -> usize {
        self.epoch
    }

    fn reset(&mut self) {
        self.epoch = 0;
    }
}

fn one_cycle_up_steps(total_steps: usize, pct_start: f32) -> usize {
    ((total_steps as f32 * pct_start).ceil() as usize).clamp(1, total_steps)
}

/// Exponential learning-rate scheduler.
///
/// Every step, the optimizer learning rate is multiplied by `gamma`:
/// `lr = lr * gamma`.
#[derive(Debug, Clone, PartialEq)]
pub struct ExponentialLr {
    gamma: f32,
    epoch: usize,
}

impl ExponentialLr {
    /// Creates exponential scheduler with `gamma in (0, 1]`.
    pub fn new(gamma: f32) -> Result<Self, OptimError> {
        validate_step_gamma(gamma)?;
        Ok(Self { gamma, epoch: 0 })
    }

    /// Returns configured decay factor.
    pub fn gamma(&self) -> f32 {
        self.gamma
    }

    /// Returns number of already-processed step calls.
    pub fn epoch(&self) -> usize {
        self.epoch
    }

    /// Resets internal epoch counter.
    pub fn reset(&mut self) {
        <Self as LrScheduler>::reset(self);
    }

    /// Advances scheduler by one epoch and returns resulting optimizer LR.
    pub fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        <Self as LrScheduler>::step(self, optimizer)
    }
}

impl LrScheduler for ExponentialLr {
    fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        self.epoch = self.epoch.saturating_add(1);
        let next_lr = optimizer.learning_rate() * self.gamma;
        optimizer.set_learning_rate(next_lr)?;
        Ok(next_lr)
    }

    fn epoch(&self) -> usize {
        self.epoch
    }

    fn reset(&mut self) {
        self.epoch = 0;
    }
}

/// Polynomial decay learning-rate scheduler.
///
/// Decays the learning rate from its initial value to `end_lr` over `total_steps`
/// using a polynomial of the given `power`:
/// `lr = (base_lr - end_lr) * (1 - epoch/total_steps)^power + end_lr`.
#[derive(Debug, Clone, PartialEq)]
pub struct PolynomialDecayLr {
    total_steps: usize,
    power: f32,
    end_lr: f32,
    base_lr: Option<f32>,
    epoch: usize,
}

impl PolynomialDecayLr {
    /// Creates polynomial decay scheduler.
    ///
    /// - `total_steps > 0`
    /// - `power > 0` and finite
    /// - `end_lr >= 0` and finite
    pub fn new(total_steps: usize, power: f32, end_lr: f32) -> Result<Self, OptimError> {
        if total_steps == 0 {
            return Err(OptimError::InvalidStepSize {
                step_size: total_steps,
            });
        }
        if !power.is_finite() || power <= 0.0 {
            return Err(OptimError::InvalidStepGamma { gamma: power });
        }
        validate_lr(end_lr)?;
        Ok(Self {
            total_steps,
            power,
            end_lr,
            base_lr: None,
            epoch: 0,
        })
    }

    /// Pins explicit base LR used by the schedule.
    pub fn with_base_lr(mut self, base_lr: f32) -> Result<Self, OptimError> {
        validate_lr(base_lr)?;
        self.base_lr = Some(base_lr);
        Ok(self)
    }

    pub fn total_steps(&self) -> usize {
        self.total_steps
    }

    pub fn power(&self) -> f32 {
        self.power
    }

    pub fn end_lr(&self) -> f32 {
        self.end_lr
    }

    pub fn base_lr(&self) -> Option<f32> {
        self.base_lr
    }

    pub fn epoch(&self) -> usize {
        self.epoch
    }

    pub fn reset(&mut self) {
        <Self as LrScheduler>::reset(self);
    }

    pub fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        <Self as LrScheduler>::step(self, optimizer)
    }
}

impl LrScheduler for PolynomialDecayLr {
    fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        self.epoch = self.epoch.saturating_add(1);

        let base_lr = match self.base_lr {
            Some(base) => base,
            None => {
                let current = optimizer.learning_rate();
                self.base_lr = Some(current);
                current
            }
        };

        let t = (self.epoch.min(self.total_steps) as f32) / (self.total_steps as f32);
        let next_lr = (base_lr - self.end_lr) * (1.0 - t).powf(self.power) + self.end_lr;
        optimizer.set_learning_rate(next_lr)?;
        Ok(next_lr)
    }

    fn epoch(&self) -> usize {
        self.epoch
    }

    fn reset(&mut self) {
        self.epoch = 0;
    }
}

/// Reduce learning rate when a metric has stopped improving.
///
/// When the metric has not improved for `patience` consecutive calls to
/// [`ReduceLrOnPlateau::step_with_metric`], the learning rate is multiplied
/// by `factor` (clamped to `min_lr`).
#[derive(Debug, Clone, PartialEq)]
pub struct ReduceLrOnPlateau {
    factor: f32,
    patience: usize,
    min_lr: f32,
    best_metric: f32,
    wait: usize,
    epoch: usize,
}

impl ReduceLrOnPlateau {
    /// Creates a plateau scheduler.
    ///
    /// - `factor in (0, 1]`
    /// - `patience >= 1`
    /// - `min_lr >= 0` and finite
    pub fn new(factor: f32, patience: usize, min_lr: f32) -> Result<Self, OptimError> {
        validate_step_gamma(factor)?;
        if patience == 0 {
            return Err(OptimError::InvalidStepSize {
                step_size: patience,
            });
        }
        validate_lr(min_lr)?;
        Ok(Self {
            factor,
            patience,
            min_lr,
            best_metric: f32::INFINITY,
            wait: 0,
            epoch: 0,
        })
    }

    pub fn factor(&self) -> f32 {
        self.factor
    }

    pub fn patience(&self) -> usize {
        self.patience
    }

    pub fn min_lr(&self) -> f32 {
        self.min_lr
    }

    pub fn best_metric(&self) -> f32 {
        self.best_metric
    }

    pub fn wait(&self) -> usize {
        self.wait
    }

    pub fn epoch(&self) -> usize {
        self.epoch
    }

    pub fn reset(&mut self) {
        <Self as LrScheduler>::reset(self);
    }

    /// Steps the scheduler with a metric value. If the metric has not improved
    /// for `patience` consecutive steps, the LR is reduced by `factor`.
    /// Lower metric is considered better.
    pub fn step_with_metric<O: LearningRate>(
        &mut self,
        metric: f32,
        optimizer: &mut O,
    ) -> Result<f32, OptimError> {
        self.epoch = self.epoch.saturating_add(1);

        if metric < self.best_metric {
            self.best_metric = metric;
            self.wait = 0;
        } else {
            self.wait += 1;
            if self.wait >= self.patience {
                let next_lr = (optimizer.learning_rate() * self.factor).max(self.min_lr);
                optimizer.set_learning_rate(next_lr)?;
                self.wait = 0;
            }
        }

        Ok(optimizer.learning_rate())
    }
}

impl LrScheduler for ReduceLrOnPlateau {
    /// Standard step without a metric does nothing to the LR
    /// (use `step_with_metric` instead).
    fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        self.epoch = self.epoch.saturating_add(1);
        Ok(optimizer.learning_rate())
    }

    fn epoch(&self) -> usize {
        self.epoch
    }

    fn reset(&mut self) {
        self.epoch = 0;
        self.best_metric = f32::INFINITY;
        self.wait = 0;
    }
}

/// Cyclic learning-rate scheduler with triangular policy.
///
/// Cycles the learning rate between `base_lr` and `max_lr` with a triangular
/// waveform defined by `step_size_up` (ascending half) and `step_size_down`
/// (descending half).
#[derive(Debug, Clone, PartialEq)]
pub struct CyclicLr {
    base_lr: f32,
    max_lr: f32,
    step_size_up: usize,
    step_size_down: usize,
    epoch: usize,
}

impl CyclicLr {
    /// Creates cyclic LR scheduler.
    ///
    /// - `base_lr >= 0`, `max_lr >= base_lr`
    /// - `step_size_up > 0`, `step_size_down > 0`
    pub fn new(
        base_lr: f32,
        max_lr: f32,
        step_size_up: usize,
        step_size_down: usize,
    ) -> Result<Self, OptimError> {
        validate_lr(base_lr)?;
        validate_lr(max_lr)?;
        if max_lr < base_lr {
            return Err(OptimError::SchedulerMaxLrBelowInitial {
                max_lr,
                initial_lr: base_lr,
            });
        }
        if step_size_up == 0 {
            return Err(OptimError::InvalidStepSize {
                step_size: step_size_up,
            });
        }
        if step_size_down == 0 {
            return Err(OptimError::InvalidStepSize {
                step_size: step_size_down,
            });
        }
        Ok(Self {
            base_lr,
            max_lr,
            step_size_up,
            step_size_down,
            epoch: 0,
        })
    }

    pub fn base_lr(&self) -> f32 {
        self.base_lr
    }

    pub fn max_lr(&self) -> f32 {
        self.max_lr
    }

    pub fn step_size_up(&self) -> usize {
        self.step_size_up
    }

    pub fn step_size_down(&self) -> usize {
        self.step_size_down
    }

    pub fn epoch(&self) -> usize {
        self.epoch
    }

    pub fn reset(&mut self) {
        <Self as LrScheduler>::reset(self);
    }

    pub fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        <Self as LrScheduler>::step(self, optimizer)
    }
}

impl LrScheduler for CyclicLr {
    fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        self.epoch = self.epoch.saturating_add(1);

        let cycle_len = self.step_size_up + self.step_size_down;
        let pos = (self.epoch - 1) % cycle_len; // 0-indexed position in current cycle

        let next_lr = if pos < self.step_size_up {
            // ascending
            let progress = pos as f32 / self.step_size_up as f32;
            self.base_lr + (self.max_lr - self.base_lr) * progress
        } else {
            // descending
            let down_pos = pos - self.step_size_up;
            let progress = down_pos as f32 / self.step_size_down as f32;
            self.max_lr - (self.max_lr - self.base_lr) * progress
        };

        optimizer.set_learning_rate(next_lr)?;
        Ok(next_lr)
    }

    fn epoch(&self) -> usize {
        self.epoch
    }

    fn reset(&mut self) {
        self.epoch = 0;
    }
}

/// Lambda learning-rate scheduler.
///
/// Computes `lr = base_lr * lr_lambda(step_count)` at each step, where
/// `lr_lambda` is a user-provided closure mapping epoch to a multiplicative
/// factor.
pub struct LambdaLr {
    base_lr: f32,
    current_lr: f32,
    lr_lambda: Box<dyn Fn(usize) -> f32>,
    step_count: usize,
}

impl LambdaLr {
    /// Creates a lambda scheduler with the given base learning rate and lambda
    /// function. The lambda receives the current epoch (after increment) and
    /// returns a multiplicative factor applied to `base_lr`.
    pub fn new(base_lr: f32, lr_lambda: Box<dyn Fn(usize) -> f32>) -> Self {
        Self {
            base_lr,
            current_lr: base_lr,
            lr_lambda,
            step_count: 0,
        }
    }

    /// Returns the base learning rate.
    pub fn base_lr(&self) -> f32 {
        self.base_lr
    }

    /// Returns the current learning rate.
    pub fn current_lr(&self) -> f32 {
        self.current_lr
    }

    /// Returns the current step count.
    pub fn step_count(&self) -> usize {
        self.step_count
    }

    /// Returns number of already-processed step calls.
    pub fn epoch(&self) -> usize {
        self.step_count
    }

    /// Resets internal state.
    pub fn reset(&mut self) {
        <Self as LrScheduler>::reset(self);
    }

    /// Advances scheduler by one epoch and returns resulting optimizer LR.
    pub fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        <Self as LrScheduler>::step(self, optimizer)
    }
}

impl LrScheduler for LambdaLr {
    fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        self.step_count = self.step_count.saturating_add(1);
        self.current_lr = self.base_lr * (self.lr_lambda)(self.step_count);
        optimizer.set_learning_rate(self.current_lr)?;
        Ok(self.current_lr)
    }

    fn epoch(&self) -> usize {
        self.step_count
    }

    fn reset(&mut self) {
        self.step_count = 0;
        self.current_lr = self.base_lr;
    }
}

/// Multi-step learning-rate scheduler.
///
/// Drops the learning rate by `gamma` at each milestone epoch in `milestones`.
#[derive(Debug, Clone, PartialEq)]
pub struct MultiStepLr {
    milestones: Vec<usize>,
    gamma: f32,
    epoch: usize,
    base_lr: Option<f32>,
}

impl MultiStepLr {
    /// Creates multi-step scheduler with sorted `milestones` and `gamma in (0, 1]`.
    pub fn new(mut milestones: Vec<usize>, gamma: f32) -> Result<Self, OptimError> {
        validate_step_gamma(gamma)?;
        milestones.sort();
        milestones.dedup();
        Ok(Self {
            milestones,
            gamma,
            epoch: 0,
            base_lr: None,
        })
    }

    pub fn milestones(&self) -> &[usize] {
        &self.milestones
    }

    pub fn gamma(&self) -> f32 {
        self.gamma
    }

    pub fn epoch(&self) -> usize {
        self.epoch
    }

    pub fn reset(&mut self) {
        self.epoch = 0;
        self.base_lr = None;
    }

    pub fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        <Self as LrScheduler>::step(self, optimizer)
    }
}

impl LrScheduler for MultiStepLr {
    fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        self.epoch = self.epoch.saturating_add(1);

        let base_lr = match self.base_lr {
            Some(base) => base,
            None => {
                let current = optimizer.learning_rate();
                self.base_lr = Some(current);
                current
            }
        };

        let num_decays = self.milestones.iter().filter(|&&m| self.epoch >= m).count();
        let next_lr = base_lr * self.gamma.powi(num_decays as i32);
        optimizer.set_learning_rate(next_lr)?;
        Ok(next_lr)
    }

    fn epoch(&self) -> usize {
        self.epoch
    }

    fn reset(&mut self) {
        self.epoch = 0;
        self.base_lr = None;
    }
}

/// Cosine annealing with warm restarts learning-rate scheduler.
///
/// Within each period, LR follows cosine decay from `base_lr` to `eta_min`.
/// After `t_0` epochs, the schedule restarts and the next period length is
/// `t_0 * t_mult`.
///
/// Formula within each period:
/// `lr = eta_min + 0.5 * (base_lr - eta_min) * (1 + cos(pi * t_cur / t_i))`
#[derive(Debug, Clone, PartialEq)]
pub struct CosineAnnealingWarmRestarts {
    t_0: usize,
    t_mult: usize,
    eta_min: f32,
    base_lr: Option<f32>,
    epoch: usize,
}

impl CosineAnnealingWarmRestarts {
    /// Creates a cosine warm restarts scheduler.
    ///
    /// - `t_0 > 0`: initial period length
    /// - `t_mult >= 1`: period multiplier after each restart
    /// - `eta_min >= 0`: minimum learning rate
    pub fn new(t_0: usize, t_mult: usize, eta_min: f32) -> Result<Self, OptimError> {
        validate_cosine_t_max(t_0)?;
        if t_mult == 0 {
            return Err(OptimError::InvalidStepSize { step_size: 0 });
        }
        validate_lr(eta_min)?;
        Ok(Self {
            t_0,
            t_mult,
            eta_min,
            base_lr: None,
            epoch: 0,
        })
    }

    /// Pins explicit base LR used by the schedule.
    pub fn with_base_lr(mut self, base_lr: f32) -> Result<Self, OptimError> {
        validate_lr(base_lr)?;
        if self.eta_min > base_lr {
            return Err(OptimError::SchedulerMinLrExceedsBase {
                min_lr: self.eta_min,
                base_lr,
            });
        }
        self.base_lr = Some(base_lr);
        Ok(self)
    }

    pub fn t_0(&self) -> usize {
        self.t_0
    }

    pub fn t_mult(&self) -> usize {
        self.t_mult
    }

    pub fn eta_min(&self) -> f32 {
        self.eta_min
    }

    pub fn base_lr(&self) -> Option<f32> {
        self.base_lr
    }

    pub fn epoch(&self) -> usize {
        self.epoch
    }

    pub fn reset(&mut self) {
        <Self as LrScheduler>::reset(self);
    }

    pub fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        <Self as LrScheduler>::step(self, optimizer)
    }
}

impl LrScheduler for CosineAnnealingWarmRestarts {
    fn step<O: LearningRate>(&mut self, optimizer: &mut O) -> Result<f32, OptimError> {
        self.epoch = self.epoch.saturating_add(1);

        let base_lr = match self.base_lr {
            Some(base) => base,
            None => {
                let current = optimizer.learning_rate();
                self.base_lr = Some(current);
                current
            }
        };
        if self.eta_min > base_lr {
            return Err(OptimError::SchedulerMinLrExceedsBase {
                min_lr: self.eta_min,
                base_lr,
            });
        }

        // Determine current period and position within it
        let (t_cur, t_i) = cosine_warm_restarts_position(self.epoch, self.t_0, self.t_mult);

        let cos_term = (std::f32::consts::PI * t_cur as f32 / t_i as f32).cos();
        let next_lr = self.eta_min + 0.5 * (base_lr - self.eta_min) * (1.0 + cos_term);
        optimizer.set_learning_rate(next_lr)?;
        Ok(next_lr)
    }

    fn epoch(&self) -> usize {
        self.epoch
    }

    fn reset(&mut self) {
        self.epoch = 0;
    }
}

/// Returns `(t_cur, t_i)` where `t_cur` is the position within the current
/// period and `t_i` is the current period length.
fn cosine_warm_restarts_position(epoch: usize, t_0: usize, t_mult: usize) -> (usize, usize) {
    if t_mult == 1 {
        // All periods have the same length t_0
        let t_cur = ((epoch - 1) % t_0) + 1;
        (t_cur, t_0)
    } else {
        // Periods grow: t_0, t_0*t_mult, t_0*t_mult^2, ...
        let mut t_i = t_0;
        let mut cumulative = 0usize;
        loop {
            if epoch <= cumulative + t_i {
                let t_cur = epoch - cumulative;
                return (t_cur, t_i);
            }
            cumulative += t_i;
            t_i *= t_mult;
        }
    }
}