sklears-neural 0.2.0

Neural network implementations for the sklears machine learning library
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
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
//! Optimization solvers for neural networks.

use crate::NeuralResult;
use scirs2_core::ndarray::{Array1, Array2};
use std::collections::VecDeque;

/// Gradient clipping methods
#[derive(Debug, Clone, Copy, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum GradientClipping {
    /// No gradient clipping
    None,
    /// Clip gradients by norm (global norm clipping)
    ByNorm(f64),
    /// Clip gradients by value (element-wise clipping)
    ByValue(f64),
}

/// Gradient clipping utilities
pub struct GradientClipper;

impl GradientClipper {
    /// Apply gradient clipping to weights and biases gradients
    pub fn clip_gradients(
        weight_grads: &mut [Array2<f64>],
        bias_grads: &mut [Array1<f64>],
        clipping: GradientClipping,
    ) {
        match clipping {
            GradientClipping::None => {}
            GradientClipping::ByNorm(max_norm) => {
                Self::clip_by_global_norm(weight_grads, bias_grads, max_norm);
            }
            GradientClipping::ByValue(max_value) => {
                Self::clip_by_value(weight_grads, bias_grads, max_value);
            }
        }
    }

    /// Clip gradients by global norm
    fn clip_by_global_norm(
        weight_grads: &mut [Array2<f64>],
        bias_grads: &mut [Array1<f64>],
        max_norm: f64,
    ) {
        // Compute global norm
        let mut global_norm_sq = 0.0;

        for grad in weight_grads.iter() {
            global_norm_sq += grad.iter().map(|x| x * x).sum::<f64>();
        }

        for grad in bias_grads.iter() {
            global_norm_sq += grad.iter().map(|x| x * x).sum::<f64>();
        }

        let global_norm = global_norm_sq.sqrt();

        // Apply clipping if necessary
        if global_norm > max_norm {
            let clip_coeff = max_norm / global_norm;

            for grad in weight_grads.iter_mut() {
                grad.mapv_inplace(|x| x * clip_coeff);
            }

            for grad in bias_grads.iter_mut() {
                grad.mapv_inplace(|x| x * clip_coeff);
            }
        }
    }

    /// Clip gradients by value (element-wise)
    fn clip_by_value(
        weight_grads: &mut [Array2<f64>],
        bias_grads: &mut [Array1<f64>],
        max_value: f64,
    ) {
        for grad in weight_grads.iter_mut() {
            grad.mapv_inplace(|x| x.max(-max_value).min(max_value));
        }

        for grad in bias_grads.iter_mut() {
            grad.mapv_inplace(|x| x.max(-max_value).min(max_value));
        }
    }
}
/// Solver algorithms for weight optimization
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum Solver {
    /// Limited-memory BFGS algorithm (two-loop recursion, [`LbfgsSolver`])
    Lbfgs,
    /// Stochastic Gradient Descent
    Sgd,
    /// Adam optimizer
    #[default]
    Adam,
    /// AdamW optimizer (Adam with decoupled weight decay, [`AdamWSolver`])
    AdamW,
    /// RMSprop optimizer ([`RMSpropSolver`])
    RMSprop,
    /// Nadam optimizer (Nesterov-accelerated Adam, [`NadamSolver`])
    Nadam,
    /// LARS optimizer (Layer-wise Adaptive Rate Scaling)
    Lars,
    /// LAMB optimizer (Layer-wise Adaptive Moments optimizer for Batch training)
    Lamb,
}

/// Learning rate schedule for SGD
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum LearningRateSchedule {
    /// Constant learning rate
    #[default]
    Constant,
    /// Inverted scaling: lr = lr_init / (t^power)
    InvScaling,
    /// Adaptive learning rate based on loss improvement
    Adaptive,
    /// Exponential decay: lr = lr_init * decay_rate^(step / decay_steps)
    ExponentialDecay,
    /// Cosine annealing: lr = lr_min + (lr_max - lr_min) * (1 + cos(pi * step / max_steps)) / 2
    CosineAnnealing,
    /// Step decay: lr = lr_init * decay_factor^floor(step / step_size)
    StepDecay,
    /// Warmup: lr increases linearly from 0 to lr_init over warmup_steps
    Warmup,
    /// Cyclical learning rate: lr cycles between lr_min and lr_max
    CyclicalLR,
}

/// SGD solver for neural network optimization
#[derive(Debug, Clone)]
pub struct SgdSolver {
    /// Current learning rate, adjusted by the schedule each step
    pub learning_rate: f64,
    /// Momentum coefficient; 0.0 disables momentum
    pub momentum: f64,
    /// Whether to use Nesterov accelerated momentum
    pub nesterovs_momentum: bool,
    /// Learning rate schedule that determines how the rate changes over time
    pub schedule: LearningRateSchedule,
    /// Exponent for inverse-scaling schedule: `lr = eta0 / (t + 1)^power_t`
    pub power_t: f64,
    /// Initial learning rate used as the reference for schedule computations
    pub eta0: f64,
    /// Multiplicative decay factor per `decay_steps` for exponential schedule
    pub decay_rate: f64,
    /// Number of steps between learning rate decay events for exponential schedule
    pub decay_steps: usize,
    /// Total steps budget used by cosine annealing and warmup schedules
    pub max_steps: usize,
    /// Minimum learning rate floor for cosine annealing and cyclical schedules
    pub lr_min: f64,
    /// Maximum learning rate ceiling for cyclical LR schedule
    pub lr_max: f64,
    /// Half-cycle length in steps for step-decay and cyclical LR
    pub step_size: usize,
    /// Multiplicative factor applied at each step boundary for step-decay
    pub decay_factor: f64,
    /// Number of linear-warmup steps before reaching the full learning rate
    pub warmup_steps: usize,
    /// Full cycle length in steps for cyclical LR schedule
    pub cycle_length: usize,
    velocity_weights: Vec<Array2<f64>>,
    velocity_biases: Vec<Array1<f64>>,
    t: usize,
}

impl SgdSolver {
    /// Create a new SGD solver with basic parameters; advanced schedule params use sensible defaults
    pub fn new(
        learning_rate: f64,
        momentum: f64,
        nesterovs_momentum: bool,
        schedule: LearningRateSchedule,
        power_t: f64,
        eta0: f64,
    ) -> Self {
        Self {
            learning_rate,
            momentum,
            nesterovs_momentum,
            schedule,
            power_t,
            eta0,
            // Default values for additional parameters
            decay_rate: 0.9,
            decay_steps: 1000,
            max_steps: 10000,
            lr_min: 0.0,
            lr_max: learning_rate,
            step_size: 1000,
            decay_factor: 0.1,
            warmup_steps: 1000,
            cycle_length: 2000,
            velocity_weights: Vec::new(),
            velocity_biases: Vec::new(),
            t: 0,
        }
    }

    /// Create a new SGD solver with full configuration
    pub fn new_with_schedule_params(
        learning_rate: f64,
        momentum: f64,
        nesterovs_momentum: bool,
        schedule: LearningRateSchedule,
        power_t: f64,
        eta0: f64,
        decay_rate: f64,
        decay_steps: usize,
        max_steps: usize,
        lr_min: f64,
        lr_max: f64,
        step_size: usize,
        decay_factor: f64,
        warmup_steps: usize,
        cycle_length: usize,
    ) -> Self {
        Self {
            learning_rate,
            momentum,
            nesterovs_momentum,
            schedule,
            power_t,
            eta0,
            decay_rate,
            decay_steps,
            max_steps,
            lr_min,
            lr_max,
            step_size,
            decay_factor,
            warmup_steps,
            cycle_length,
            velocity_weights: Vec::new(),
            velocity_biases: Vec::new(),
            t: 0,
        }
    }

    /// Initialize optimizer state buffers to match shapes of `weights` and `biases`
    pub fn initialize(&mut self, weights: &[Array2<f64>], biases: &[Array1<f64>]) {
        self.velocity_weights = weights.iter().map(|w| Array2::zeros(w.dim())).collect();
        self.velocity_biases = biases.iter().map(|b| Array1::zeros(b.len())).collect();
        self.t = 0;
    }

    /// Perform one optimization step using the provided gradients; updates `weights` and `biases` in place
    pub fn update_params(
        &mut self,
        weights: &mut [Array2<f64>],
        biases: &mut [Array1<f64>],
        weight_grads: &[Array2<f64>],
        bias_grads: &[Array1<f64>],
    ) -> NeuralResult<()> {
        self.t += 1;
        let lr = self.get_learning_rate();

        for i in 0..weights.len() {
            // Update velocity for weights
            self.velocity_weights[i] =
                &self.velocity_weights[i] * self.momentum - &weight_grads[i] * lr;

            if self.nesterovs_momentum {
                // Nesterov momentum
                weights[i] =
                    &weights[i] + &self.velocity_weights[i] * self.momentum - &weight_grads[i] * lr;
            } else {
                // Standard momentum
                weights[i] = &weights[i] + &self.velocity_weights[i];
            }

            // Update velocity for biases
            self.velocity_biases[i] =
                &self.velocity_biases[i] * self.momentum - &bias_grads[i] * lr;

            if self.nesterovs_momentum {
                biases[i] =
                    &biases[i] + &self.velocity_biases[i] * self.momentum - &bias_grads[i] * lr;
            } else {
                biases[i] = &biases[i] + &self.velocity_biases[i];
            }
        }

        Ok(())
    }

    fn get_learning_rate(&self) -> f64 {
        match self.schedule {
            LearningRateSchedule::Constant => self.learning_rate,
            LearningRateSchedule::InvScaling => self.eta0 / (self.t as f64).powf(self.power_t),
            LearningRateSchedule::Adaptive => {
                // This would need loss history to implement properly
                // For now, return constant rate
                self.learning_rate
            }
            LearningRateSchedule::ExponentialDecay => {
                // lr = lr_init * decay_rate^(step / decay_steps)
                self.learning_rate
                    * self
                        .decay_rate
                        .powf(self.t as f64 / self.decay_steps as f64)
            }
            LearningRateSchedule::CosineAnnealing => {
                // lr = lr_min + (lr_max - lr_min) * (1 + cos(pi * step / max_steps)) / 2
                let progress = (self.t as f64 / self.max_steps as f64).min(1.0);
                self.lr_min
                    + (self.learning_rate - self.lr_min)
                        * (1.0 + (std::f64::consts::PI * progress).cos())
                        / 2.0
            }
            LearningRateSchedule::StepDecay => {
                // lr = lr_init * decay_factor^floor(step / step_size)
                let step_count = self.t / self.step_size;
                self.learning_rate * self.decay_factor.powi(step_count as i32)
            }
            LearningRateSchedule::Warmup => {
                // Linear warmup: lr increases linearly from 0 to lr_init over warmup_steps
                if self.t <= self.warmup_steps {
                    self.learning_rate * (self.t as f64 / self.warmup_steps as f64)
                } else {
                    self.learning_rate
                }
            }
            LearningRateSchedule::CyclicalLR => {
                // Triangular cyclical learning rate
                let cycle = 1.0 + (self.t as f64 / (2.0 * self.cycle_length as f64));
                let x = (2.0 * cycle.fract() - 1.0).abs();
                self.lr_min + (self.lr_max - self.lr_min) * (1.0 - x).max(0.0)
            }
        }
    }
}

/// Adam optimizer for neural network optimization
#[derive(Debug, Clone)]
pub struct AdamSolver {
    /// Step size used to scale parameter updates
    pub learning_rate: f64,
    /// Exponential decay rate for the first moment estimate
    pub beta1: f64,
    /// Exponential decay rate for the second moment estimate
    pub beta2: f64,
    /// Small constant added to denominator to prevent division by zero
    pub epsilon: f64,
    m_weights: Vec<Array2<f64>>,
    v_weights: Vec<Array2<f64>>,
    m_biases: Vec<Array1<f64>>,
    v_biases: Vec<Array1<f64>>,
    t: usize,
}

impl AdamSolver {
    /// Create a new Adam optimizer with the given hyperparameters
    pub fn new(learning_rate: f64, beta1: f64, beta2: f64, epsilon: f64) -> Self {
        Self {
            learning_rate,
            beta1,
            beta2,
            epsilon,
            m_weights: Vec::new(),
            v_weights: Vec::new(),
            m_biases: Vec::new(),
            v_biases: Vec::new(),
            t: 0,
        }
    }

    /// Initialize optimizer state buffers to match shapes of `weights` and `biases`
    pub fn initialize(&mut self, weights: &[Array2<f64>], biases: &[Array1<f64>]) {
        self.m_weights = weights.iter().map(|w| Array2::zeros(w.dim())).collect();
        self.v_weights = weights.iter().map(|w| Array2::zeros(w.dim())).collect();
        self.m_biases = biases.iter().map(|b| Array1::zeros(b.len())).collect();
        self.v_biases = biases.iter().map(|b| Array1::zeros(b.len())).collect();
        self.t = 0;
    }

    /// Perform one optimization step using the provided gradients; updates `weights` and `biases` in place
    pub fn update_params(
        &mut self,
        weights: &mut [Array2<f64>],
        biases: &mut [Array1<f64>],
        weight_grads: &[Array2<f64>],
        bias_grads: &[Array1<f64>],
    ) -> NeuralResult<()> {
        self.t += 1;
        let lr_t = self.learning_rate * ((1.0 - self.beta2.powi(self.t as i32)).sqrt())
            / (1.0 - self.beta1.powi(self.t as i32));

        for i in 0..weights.len() {
            // Update biased first moment estimate for weights
            self.m_weights[i] =
                &self.m_weights[i] * self.beta1 + &weight_grads[i] * (1.0 - self.beta1);

            // Update biased second raw moment estimate for weights
            self.v_weights[i] = &self.v_weights[i] * self.beta2
                + &weight_grads[i].mapv(|x| x * x) * (1.0 - self.beta2);

            // Update weights
            let update =
                &self.m_weights[i] / (&self.v_weights[i].mapv(|x| x.sqrt()) + self.epsilon);
            weights[i] = &weights[i] - &update * lr_t;

            // Update biased first moment estimate for biases
            self.m_biases[i] = &self.m_biases[i] * self.beta1 + &bias_grads[i] * (1.0 - self.beta1);

            // Update biased second raw moment estimate for biases
            self.v_biases[i] = &self.v_biases[i] * self.beta2
                + &bias_grads[i].mapv(|x| x * x) * (1.0 - self.beta2);

            // Update biases
            let bias_update =
                &self.m_biases[i] / (&self.v_biases[i].mapv(|x| x.sqrt()) + self.epsilon);
            biases[i] = &biases[i] - &bias_update * lr_t;
        }

        Ok(())
    }
}

/// AdamW optimizer with decoupled weight decay
#[derive(Debug, Clone)]
pub struct AdamWSolver {
    /// Step size used to scale parameter updates
    pub learning_rate: f64,
    /// Exponential decay rate for the first moment estimate
    pub beta1: f64,
    /// Exponential decay rate for the second moment estimate
    pub beta2: f64,
    /// Small constant for numerical stability in denominator
    pub epsilon: f64,
    /// L2 weight decay coefficient applied independently of the gradient
    pub weight_decay: f64,
    m_weights: Vec<Array2<f64>>,
    v_weights: Vec<Array2<f64>>,
    m_biases: Vec<Array1<f64>>,
    v_biases: Vec<Array1<f64>>,
    t: usize,
}

impl AdamWSolver {
    /// Create a new AdamW optimizer with the given hyperparameters
    pub fn new(
        learning_rate: f64,
        beta1: f64,
        beta2: f64,
        epsilon: f64,
        weight_decay: f64,
    ) -> Self {
        Self {
            learning_rate,
            beta1,
            beta2,
            epsilon,
            weight_decay,
            m_weights: Vec::new(),
            v_weights: Vec::new(),
            m_biases: Vec::new(),
            v_biases: Vec::new(),
            t: 0,
        }
    }

    /// Initialize optimizer state buffers to match shapes of `weights` and `biases`
    pub fn initialize(&mut self, weights: &[Array2<f64>], biases: &[Array1<f64>]) {
        self.m_weights = weights.iter().map(|w| Array2::zeros(w.dim())).collect();
        self.v_weights = weights.iter().map(|w| Array2::zeros(w.dim())).collect();
        self.m_biases = biases.iter().map(|b| Array1::zeros(b.len())).collect();
        self.v_biases = biases.iter().map(|b| Array1::zeros(b.len())).collect();
        self.t = 0;
    }

    /// Perform one optimization step using the provided gradients; updates `weights` and `biases` in place
    pub fn update_params(
        &mut self,
        weights: &mut [Array2<f64>],
        biases: &mut [Array1<f64>],
        weight_grads: &[Array2<f64>],
        bias_grads: &[Array1<f64>],
    ) -> NeuralResult<()> {
        self.t += 1;
        let bias_correction1 = 1.0 - self.beta1.powi(self.t as i32);
        let bias_correction2 = 1.0 - self.beta2.powi(self.t as i32);
        let lr_t = self.learning_rate * (bias_correction2.sqrt()) / bias_correction1;

        for i in 0..weights.len() {
            // Update biased first moment estimate for weights
            self.m_weights[i] =
                &self.m_weights[i] * self.beta1 + &weight_grads[i] * (1.0 - self.beta1);

            // Update biased second raw moment estimate for weights
            self.v_weights[i] = &self.v_weights[i] * self.beta2
                + &weight_grads[i].mapv(|x| x * x) * (1.0 - self.beta2);

            // AdamW update with decoupled weight decay
            let update =
                &self.m_weights[i] / (&self.v_weights[i].mapv(|x| x.sqrt()) + self.epsilon);
            weights[i] =
                &weights[i] * (1.0 - self.learning_rate * self.weight_decay) - &update * lr_t;

            // Update biased first moment estimate for biases (no weight decay)
            self.m_biases[i] = &self.m_biases[i] * self.beta1 + &bias_grads[i] * (1.0 - self.beta1);

            // Update biased second raw moment estimate for biases
            self.v_biases[i] = &self.v_biases[i] * self.beta2
                + &bias_grads[i].mapv(|x| x * x) * (1.0 - self.beta2);

            // Update biases (no weight decay)
            let bias_update =
                &self.m_biases[i] / (&self.v_biases[i].mapv(|x| x.sqrt()) + self.epsilon);
            biases[i] = &biases[i] - &bias_update * lr_t;
        }

        Ok(())
    }
}

/// RMSprop optimizer
#[derive(Debug, Clone)]
pub struct RMSpropSolver {
    /// Step size controlling the magnitude of parameter updates
    pub learning_rate: f64,
    /// Smoothing constant for the running mean-square of gradients
    pub alpha: f64,
    /// Small constant for numerical stability in denominator
    pub epsilon: f64,
    /// Momentum coefficient; 0.0 disables momentum
    pub momentum: f64,
    /// When true, uses the centered variant that normalizes by gradient mean
    pub centered: bool,
    v_weights: Vec<Array2<f64>>,
    v_biases: Vec<Array1<f64>>,
    momentum_weights: Vec<Array2<f64>>,
    momentum_biases: Vec<Array1<f64>>,
    g_weights: Vec<Array2<f64>>,
    g_biases: Vec<Array1<f64>>,
}

impl RMSpropSolver {
    /// Create a new RMSprop optimizer with the given hyperparameters
    pub fn new(
        learning_rate: f64,
        alpha: f64,
        epsilon: f64,
        momentum: f64,
        centered: bool,
    ) -> Self {
        Self {
            learning_rate,
            alpha,
            epsilon,
            momentum,
            centered,
            v_weights: Vec::new(),
            v_biases: Vec::new(),
            momentum_weights: Vec::new(),
            momentum_biases: Vec::new(),
            g_weights: Vec::new(),
            g_biases: Vec::new(),
        }
    }

    /// Initialize optimizer state buffers to match shapes of `weights` and `biases`
    pub fn initialize(&mut self, weights: &[Array2<f64>], biases: &[Array1<f64>]) {
        self.v_weights = weights.iter().map(|w| Array2::zeros(w.dim())).collect();
        self.v_biases = biases.iter().map(|b| Array1::zeros(b.len())).collect();
        self.momentum_weights = weights.iter().map(|w| Array2::zeros(w.dim())).collect();
        self.momentum_biases = biases.iter().map(|b| Array1::zeros(b.len())).collect();

        if self.centered {
            self.g_weights = weights.iter().map(|w| Array2::zeros(w.dim())).collect();
            self.g_biases = biases.iter().map(|b| Array1::zeros(b.len())).collect();
        }
    }

    /// Perform one optimization step using the provided gradients; updates `weights` and `biases` in place
    pub fn update_params(
        &mut self,
        weights: &mut [Array2<f64>],
        biases: &mut [Array1<f64>],
        weight_grads: &[Array2<f64>],
        bias_grads: &[Array1<f64>],
    ) -> NeuralResult<()> {
        for i in 0..weights.len() {
            // Update accumulated squared gradients for weights
            self.v_weights[i] = &self.v_weights[i] * self.alpha
                + &weight_grads[i].mapv(|x| x * x) * (1.0 - self.alpha);

            let denominator = if self.centered {
                // Update accumulated gradients for centered RMSprop
                self.g_weights[i] =
                    &self.g_weights[i] * self.alpha + &weight_grads[i] * (1.0 - self.alpha);
                (&self.v_weights[i] - &self.g_weights[i].mapv(|x| x * x))
                    .mapv(|x| (x + self.epsilon).sqrt())
            } else {
                self.v_weights[i].mapv(|x| (x + self.epsilon).sqrt())
            };

            // Compute update
            let update = &weight_grads[i] / &denominator;

            if self.momentum > 0.0 {
                // Apply momentum
                self.momentum_weights[i] =
                    &self.momentum_weights[i] * self.momentum + &update * self.learning_rate;
                weights[i] = &weights[i] - &self.momentum_weights[i];
            } else {
                // Direct update
                weights[i] = &weights[i] - &update * self.learning_rate;
            }

            // Same process for biases
            self.v_biases[i] = &self.v_biases[i] * self.alpha
                + &bias_grads[i].mapv(|x| x * x) * (1.0 - self.alpha);

            let bias_denominator = if self.centered {
                self.g_biases[i] =
                    &self.g_biases[i] * self.alpha + &bias_grads[i] * (1.0 - self.alpha);
                (&self.v_biases[i] - &self.g_biases[i].mapv(|x| x * x))
                    .mapv(|x| (x + self.epsilon).sqrt())
            } else {
                self.v_biases[i].mapv(|x| (x + self.epsilon).sqrt())
            };

            let bias_update = &bias_grads[i] / &bias_denominator;

            if self.momentum > 0.0 {
                self.momentum_biases[i] =
                    &self.momentum_biases[i] * self.momentum + &bias_update * self.learning_rate;
                biases[i] = &biases[i] - &self.momentum_biases[i];
            } else {
                biases[i] = &biases[i] - &bias_update * self.learning_rate;
            }
        }

        Ok(())
    }
}

/// Nadam optimizer (Nesterov-accelerated Adam)
#[derive(Debug, Clone)]
pub struct NadamSolver {
    /// Step size for parameter updates
    pub learning_rate: f64,
    /// Exponential decay rate for first moment estimates
    pub beta1: f64,
    /// Exponential decay rate for second raw moment estimates
    pub beta2: f64,
    /// Small constant added to denominator for numerical stability
    pub epsilon: f64,
    m_weights: Vec<Array2<f64>>,
    v_weights: Vec<Array2<f64>>,
    m_biases: Vec<Array1<f64>>,
    v_biases: Vec<Array1<f64>>,
    t: usize,
}

impl NadamSolver {
    /// Create a new Nadam optimizer with the given hyperparameters
    pub fn new(learning_rate: f64, beta1: f64, beta2: f64, epsilon: f64) -> Self {
        Self {
            learning_rate,
            beta1,
            beta2,
            epsilon,
            m_weights: Vec::new(),
            v_weights: Vec::new(),
            m_biases: Vec::new(),
            v_biases: Vec::new(),
            t: 0,
        }
    }

    /// Initialize optimizer state buffers to match shapes of `weights` and `biases`
    pub fn initialize(&mut self, weights: &[Array2<f64>], biases: &[Array1<f64>]) {
        self.m_weights = weights.iter().map(|w| Array2::zeros(w.dim())).collect();
        self.v_weights = weights.iter().map(|w| Array2::zeros(w.dim())).collect();
        self.m_biases = biases.iter().map(|b| Array1::zeros(b.len())).collect();
        self.v_biases = biases.iter().map(|b| Array1::zeros(b.len())).collect();
        self.t = 0;
    }

    /// Perform one optimization step using the provided gradients; updates `weights` and `biases` in place
    pub fn update_params(
        &mut self,
        weights: &mut [Array2<f64>],
        biases: &mut [Array1<f64>],
        weight_grads: &[Array2<f64>],
        bias_grads: &[Array1<f64>],
    ) -> NeuralResult<()> {
        self.t += 1;
        let beta1_t = self.beta1.powi(self.t as i32);
        let beta2_t = self.beta2.powi(self.t as i32);
        let _lr_t = self.learning_rate / (1.0 - beta1_t);

        for i in 0..weights.len() {
            // Update biased first moment estimate
            self.m_weights[i] =
                &self.m_weights[i] * self.beta1 + &weight_grads[i] * (1.0 - self.beta1);

            // Update biased second raw moment estimate
            self.v_weights[i] = &self.v_weights[i] * self.beta2
                + &weight_grads[i].mapv(|x| x * x) * (1.0 - self.beta2);

            // Bias-corrected second moment estimate
            let v_corrected = &self.v_weights[i] / (1.0 - beta2_t);

            // Nadam update: combines current gradient with momentum term
            let m_hat = (&self.m_weights[i] * self.beta1 + &weight_grads[i] * (1.0 - self.beta1))
                / (1.0 - beta1_t);
            let update = &m_hat / (&v_corrected.mapv(|x| x.sqrt()) + self.epsilon);
            weights[i] = &weights[i] - &update * self.learning_rate;

            // Same for biases
            self.m_biases[i] = &self.m_biases[i] * self.beta1 + &bias_grads[i] * (1.0 - self.beta1);
            self.v_biases[i] = &self.v_biases[i] * self.beta2
                + &bias_grads[i].mapv(|x| x * x) * (1.0 - self.beta2);

            let v_bias_corrected = &self.v_biases[i] / (1.0 - beta2_t);
            let m_bias_hat = (&self.m_biases[i] * self.beta1 + &bias_grads[i] * (1.0 - self.beta1))
                / (1.0 - beta1_t);
            let bias_update = &m_bias_hat / (&v_bias_corrected.mapv(|x| x.sqrt()) + self.epsilon);
            biases[i] = &biases[i] - &bias_update * self.learning_rate;
        }

        Ok(())
    }
}

/// LARS optimizer (Layer-wise Adaptive Rate Scaling)
/// Designed for large batch training with layer-wise adaptive learning rates
#[derive(Debug, Clone)]
pub struct LarsSolver {
    /// Global base learning rate before layer-wise scaling
    pub learning_rate: f64,
    /// Momentum coefficient for gradient accumulation
    pub momentum: f64,
    /// L2 regularization coefficient added to gradients before momentum update
    pub weight_decay: f64,
    /// LARS-specific scaling coefficient; typically 0.001
    pub lars_coefficient: f64,
    /// Small constant added to denominator to avoid division by zero
    pub epsilon: f64,
    /// Trust ratio coefficient scaling the layer-wise learning rate; typically 1.0
    pub trust_coefficient: f64,
    momentum_weights: Vec<Array2<f64>>,
    momentum_biases: Vec<Array1<f64>>,
}

impl LarsSolver {
    /// Create a new LARS optimizer with the given hyperparameters
    pub fn new(
        learning_rate: f64,
        momentum: f64,
        weight_decay: f64,
        lars_coefficient: f64,
        epsilon: f64,
        trust_coefficient: f64,
    ) -> Self {
        Self {
            learning_rate,
            momentum,
            weight_decay,
            lars_coefficient,
            epsilon,
            trust_coefficient,
            momentum_weights: Vec::new(),
            momentum_biases: Vec::new(),
        }
    }

    /// Initialize optimizer state buffers to match shapes of `weights` and `biases`
    pub fn initialize(&mut self, weights: &[Array2<f64>], biases: &[Array1<f64>]) {
        self.momentum_weights = weights.iter().map(|w| Array2::zeros(w.dim())).collect();
        self.momentum_biases = biases.iter().map(|b| Array1::zeros(b.len())).collect();
    }

    /// Perform one optimization step using the provided gradients; updates `weights` and `biases` in place
    pub fn update_params(
        &mut self,
        weights: &mut [Array2<f64>],
        biases: &mut [Array1<f64>],
        weight_grads: &[Array2<f64>],
        bias_grads: &[Array1<f64>],
    ) -> NeuralResult<()> {
        for i in 0..weights.len() {
            // Compute norms for layer-wise adaptation
            let weight_norm = weights[i].iter().map(|x| x * x).sum::<f64>().sqrt();
            let grad_norm = weight_grads[i].iter().map(|x| x * x).sum::<f64>().sqrt();

            // Compute layer-wise learning rate using LARS formula
            let lars_lr = if grad_norm > self.epsilon && weight_norm > self.epsilon {
                self.learning_rate * self.lars_coefficient * weight_norm
                    / (grad_norm + self.weight_decay * weight_norm)
            } else {
                self.learning_rate
            };

            // Apply trust coefficient (layer-wise trust ratio)
            let effective_lr = lars_lr * self.trust_coefficient;

            // Add weight decay to gradients
            let weight_grad_with_decay = &weight_grads[i] + &weights[i] * self.weight_decay;

            // Update momentum for weights
            self.momentum_weights[i] =
                &self.momentum_weights[i] * self.momentum + &weight_grad_with_decay * effective_lr;

            // Update weights
            weights[i] = &weights[i] - &self.momentum_weights[i];

            // For biases, use standard SGD with momentum (no LARS scaling)
            self.momentum_biases[i] =
                &self.momentum_biases[i] * self.momentum + &bias_grads[i] * self.learning_rate;
            biases[i] = &biases[i] - &self.momentum_biases[i];
        }

        Ok(())
    }
}

/// LAMB optimizer (Layer-wise Adaptive Moments optimizer for Batch training)
/// Combines layer-wise adaptation from LARS with Adam's moments
#[derive(Debug, Clone)]
pub struct LambSolver {
    /// Global base learning rate before layer-wise trust ratio scaling
    pub learning_rate: f64,
    /// Exponential decay rate for first moment estimates
    pub beta1: f64,
    /// Exponential decay rate for second raw moment estimates
    pub beta2: f64,
    /// Small constant added to denominator for numerical stability
    pub epsilon: f64,
    /// L2 regularization coefficient added to gradients before moment update
    pub weight_decay: f64,
    /// Maximum trust ratio coefficient capping the layer-wise learning rate; typically 1.0
    pub trust_coefficient: f64,
    m_weights: Vec<Array2<f64>>,
    v_weights: Vec<Array2<f64>>,
    m_biases: Vec<Array1<f64>>,
    v_biases: Vec<Array1<f64>>,
    t: usize,
}

impl LambSolver {
    /// Create a new LAMB optimizer with the given hyperparameters
    pub fn new(
        learning_rate: f64,
        beta1: f64,
        beta2: f64,
        epsilon: f64,
        weight_decay: f64,
        trust_coefficient: f64,
    ) -> Self {
        Self {
            learning_rate,
            beta1,
            beta2,
            epsilon,
            weight_decay,
            trust_coefficient,
            m_weights: Vec::new(),
            v_weights: Vec::new(),
            m_biases: Vec::new(),
            v_biases: Vec::new(),
            t: 0,
        }
    }

    /// Initialize optimizer state buffers to match shapes of `weights` and `biases`
    pub fn initialize(&mut self, weights: &[Array2<f64>], biases: &[Array1<f64>]) {
        self.m_weights = weights.iter().map(|w| Array2::zeros(w.dim())).collect();
        self.v_weights = weights.iter().map(|w| Array2::zeros(w.dim())).collect();
        self.m_biases = biases.iter().map(|b| Array1::zeros(b.len())).collect();
        self.v_biases = biases.iter().map(|b| Array1::zeros(b.len())).collect();
        self.t = 0;
    }

    /// Perform one optimization step using the provided gradients; updates `weights` and `biases` in place
    pub fn update_params(
        &mut self,
        weights: &mut [Array2<f64>],
        biases: &mut [Array1<f64>],
        weight_grads: &[Array2<f64>],
        bias_grads: &[Array1<f64>],
    ) -> NeuralResult<()> {
        self.t += 1;

        for i in 0..weights.len() {
            // Add weight decay to gradients
            let weight_grad_with_decay = &weight_grads[i] + &weights[i] * self.weight_decay;

            // Update biased first moment estimate
            self.m_weights[i] =
                &self.m_weights[i] * self.beta1 + &weight_grad_with_decay * (1.0 - self.beta1);

            // Update biased second raw moment estimate
            self.v_weights[i] = &self.v_weights[i] * self.beta2
                + &weight_grad_with_decay.mapv(|x| x * x) * (1.0 - self.beta2);

            // Bias correction
            let m_hat = &self.m_weights[i] / (1.0 - self.beta1.powi(self.t as i32));
            let v_hat = &self.v_weights[i] / (1.0 - self.beta2.powi(self.t as i32));

            // Compute Adam update
            let adam_update = &m_hat / (&v_hat.mapv(|x| x.sqrt()) + self.epsilon);

            // Compute norms for layer-wise adaptation
            let weight_norm = weights[i].iter().map(|x| x * x).sum::<f64>().sqrt();
            let adam_update_norm = adam_update.iter().map(|x| x * x).sum::<f64>().sqrt();

            // Compute layer-wise learning rate using LAMB formula
            let trust_ratio = if weight_norm > 0.0 && adam_update_norm > 0.0 {
                (weight_norm / adam_update_norm).min(self.trust_coefficient)
            } else {
                1.0
            };

            // Apply layer-wise adaptive learning rate
            let effective_lr = self.learning_rate * trust_ratio;

            // Update weights
            weights[i] = &weights[i] - &adam_update * effective_lr;

            // For biases, use standard Adam (no layer-wise adaptation)
            self.m_biases[i] = &self.m_biases[i] * self.beta1 + &bias_grads[i] * (1.0 - self.beta1);
            self.v_biases[i] = &self.v_biases[i] * self.beta2
                + &bias_grads[i].mapv(|x| x * x) * (1.0 - self.beta2);

            let m_bias_hat = &self.m_biases[i] / (1.0 - self.beta1.powi(self.t as i32));
            let v_bias_hat = &self.v_biases[i] / (1.0 - self.beta2.powi(self.t as i32));

            let bias_update = &m_bias_hat / (&v_bias_hat.mapv(|x| x.sqrt()) + self.epsilon);
            biases[i] = &biases[i] - &bias_update * self.learning_rate;
        }

        Ok(())
    }
}

/// Limited-memory BFGS (L-BFGS) optimizer.
///
/// Maintains a short history of parameter and gradient differences and uses the
/// classic two-loop recursion (Nocedal & Wright, *Numerical Optimization*,
/// Algorithm 7.4) to compute the quasi-Newton search direction `d = -H_k g_k`
/// without ever forming the inverse Hessian. The configured `learning_rate` is
/// applied as a fixed step length in place of a Wolfe line search, because the
/// streaming per-batch `update_params` interface does not expose the loss
/// function a line search would require. With an empty history the direction
/// reduces to scaled steepest descent, and curvature pairs that fail the
/// `sáµ€y > epsilon` condition are skipped to keep the implicit Hessian positive
/// definite.
#[derive(Debug, Clone)]
pub struct LbfgsSolver {
    /// Step length applied to the L-BFGS search direction
    pub learning_rate: f64,
    /// Maximum number of `(s, y)` correction pairs retained
    pub history_size: usize,
    /// Curvature threshold; pairs with `sáµ€y` at or below this are skipped
    pub epsilon: f64,
    s_history: VecDeque<Vec<f64>>,
    y_history: VecDeque<Vec<f64>>,
    rho_history: VecDeque<f64>,
    prev_params: Option<Vec<f64>>,
    prev_grad: Option<Vec<f64>>,
}

impl LbfgsSolver {
    /// Create a new L-BFGS optimizer with the given step length, memory depth,
    /// and curvature threshold.
    pub fn new(learning_rate: f64, history_size: usize, epsilon: f64) -> Self {
        Self {
            learning_rate,
            history_size: history_size.max(1),
            epsilon,
            s_history: VecDeque::new(),
            y_history: VecDeque::new(),
            rho_history: VecDeque::new(),
            prev_params: None,
            prev_grad: None,
        }
    }

    /// Reset all optimizer state; parameter shapes are inferred from the first update.
    pub fn initialize(&mut self, _weights: &[Array2<f64>], _biases: &[Array1<f64>]) {
        self.s_history.clear();
        self.y_history.clear();
        self.rho_history.clear();
        self.prev_params = None;
        self.prev_grad = None;
    }

    /// Flatten weight matrices followed by bias vectors into a single parameter vector.
    fn flatten(weights: &[Array2<f64>], biases: &[Array1<f64>]) -> Vec<f64> {
        let total: usize = weights.iter().map(|w| w.len()).sum::<usize>()
            + biases.iter().map(|b| b.len()).sum::<usize>();
        let mut flat = Vec::with_capacity(total);
        for w in weights {
            flat.extend(w.iter().copied());
        }
        for b in biases {
            flat.extend(b.iter().copied());
        }
        flat
    }

    /// Scatter a flattened parameter vector back into weight matrices and bias vectors.
    fn write_back(flat: &[f64], weights: &mut [Array2<f64>], biases: &mut [Array1<f64>]) {
        let mut offset = 0;
        for w in weights.iter_mut() {
            for value in w.iter_mut() {
                *value = flat[offset];
                offset += 1;
            }
        }
        for b in biases.iter_mut() {
            for value in b.iter_mut() {
                *value = flat[offset];
                offset += 1;
            }
        }
    }

    fn dot(a: &[f64], b: &[f64]) -> f64 {
        a.iter().zip(b.iter()).map(|(x, y)| x * y).sum()
    }

    /// Perform one L-BFGS step using the provided gradients; updates `weights`
    /// and `biases` in place.
    pub fn update_params(
        &mut self,
        weights: &mut [Array2<f64>],
        biases: &mut [Array1<f64>],
        weight_grads: &[Array2<f64>],
        bias_grads: &[Array1<f64>],
    ) -> NeuralResult<()> {
        let x = Self::flatten(weights, biases);
        let g = Self::flatten(weight_grads, bias_grads);

        // Record the curvature pair (s, y) produced by the previous step.
        if let (Some(prev_x), Some(prev_g)) = (&self.prev_params, &self.prev_grad) {
            let s: Vec<f64> = x.iter().zip(prev_x).map(|(a, b)| a - b).collect();
            let y: Vec<f64> = g.iter().zip(prev_g).map(|(a, b)| a - b).collect();
            let sy = Self::dot(&s, &y);
            if sy > self.epsilon {
                if self.s_history.len() == self.history_size {
                    self.s_history.pop_front();
                    self.y_history.pop_front();
                    self.rho_history.pop_front();
                }
                self.rho_history.push_back(1.0 / sy);
                self.s_history.push_back(s);
                self.y_history.push_back(y);
            }
        }

        // First loop: q starts at the gradient, peeling off the newest corrections.
        let m = self.s_history.len();
        let mut q = g.clone();
        let mut alphas = vec![0.0_f64; m];
        for i in (0..m).rev() {
            let alpha = self.rho_history[i] * Self::dot(&self.s_history[i], &q);
            alphas[i] = alpha;
            for (qj, yj) in q.iter_mut().zip(self.y_history[i].iter()) {
                *qj -= alpha * yj;
            }
        }

        // Initial inverse-Hessian scaling gamma = (sáµ€y)/(yáµ€y) from the latest pair.
        let gamma = if m > 0 {
            let yy = Self::dot(&self.y_history[m - 1], &self.y_history[m - 1]);
            if yy > 0.0 {
                Self::dot(&self.s_history[m - 1], &self.y_history[m - 1]) / yy
            } else {
                1.0
            }
        } else {
            1.0
        };
        let mut r: Vec<f64> = q.iter().map(|value| value * gamma).collect();

        // Second loop: re-apply the corrections from oldest to newest.
        for i in 0..m {
            let beta = self.rho_history[i] * Self::dot(&self.y_history[i], &r);
            let coeff = alphas[i] - beta;
            for (rj, sj) in r.iter_mut().zip(self.s_history[i].iter()) {
                *rj += coeff * sj;
            }
        }

        // r now holds H_k g_k; descend with d = -r scaled by the step length.
        let new_x: Vec<f64> = x
            .iter()
            .zip(r.iter())
            .map(|(xj, rj)| xj - self.learning_rate * rj)
            .collect();
        Self::write_back(&new_x, weights, biases);

        // Stash the pre-update params/grad for the next curvature pair.
        self.prev_params = Some(x);
        self.prev_grad = Some(g);

        Ok(())
    }
}

#[allow(non_snake_case)]
#[cfg(test)]
mod tests {
    use super::*;
    use approx::assert_abs_diff_eq;
    use scirs2_core::ndarray::{array, Array1, Array2};
    use scirs2_core::numeric::Signed;

    #[test]
    fn test_sgd_solver_initialization() {
        let mut solver =
            SgdSolver::new(0.01, 0.9, false, LearningRateSchedule::Constant, 0.5, 0.01);

        let weights = vec![Array2::zeros((3, 2)), Array2::zeros((2, 1))];
        let biases = vec![Array1::zeros(2), Array1::zeros(1)];

        solver.initialize(&weights, &biases);

        assert_eq!(solver.velocity_weights.len(), 2);
        assert_eq!(solver.velocity_biases.len(), 2);
        assert_eq!(solver.t, 0);
    }

    #[test]
    fn test_adam_solver_initialization() {
        let mut solver = AdamSolver::new(0.001, 0.9, 0.999, 1e-8);

        let weights = vec![Array2::zeros((3, 2)), Array2::zeros((2, 1))];
        let biases = vec![Array1::zeros(2), Array1::zeros(1)];

        solver.initialize(&weights, &biases);

        assert_eq!(solver.m_weights.len(), 2);
        assert_eq!(solver.v_weights.len(), 2);
        assert_eq!(solver.m_biases.len(), 2);
        assert_eq!(solver.v_biases.len(), 2);
        assert_eq!(solver.t, 0);
    }

    #[test]
    fn test_sgd_learning_rate_schedules() {
        let solver = SgdSolver::new(0.01, 0.0, false, LearningRateSchedule::Constant, 0.5, 0.1);
        assert_abs_diff_eq!(solver.get_learning_rate(), 0.01, epsilon = 1e-10);

        let mut solver =
            SgdSolver::new(0.01, 0.0, false, LearningRateSchedule::InvScaling, 0.5, 0.1);
        solver.t = 4;
        let expected_lr = 0.1 / (4.0_f64).powf(0.5);
        assert_abs_diff_eq!(solver.get_learning_rate(), expected_lr, epsilon = 1e-10);
    }

    #[test]
    fn test_parameter_updates_change_weights() {
        let mut solver = SgdSolver::new(0.1, 0.0, false, LearningRateSchedule::Constant, 0.5, 0.01);

        let mut weights = vec![array![[1.0, 2.0], [3.0, 4.0]]];
        let mut biases = vec![array![0.5, -0.5]];
        let weight_grads = vec![array![[0.1, 0.2], [0.3, 0.4]]];
        let bias_grads = vec![array![0.1, -0.1]];

        let original_weights = weights[0].clone();
        let original_biases = biases[0].clone();

        solver.initialize(&weights, &biases);
        solver
            .update_params(&mut weights, &mut biases, &weight_grads, &bias_grads)
            .expect("operation should succeed");

        // Check that weights and biases have changed (compare element by element)
        let weights_changed = weights[0]
            .iter()
            .zip(original_weights.iter())
            .any(|(a, b)| (a - b).abs() > 1e-10);
        assert!(weights_changed);
        let biases_changed = biases[0]
            .iter()
            .zip(original_biases.iter())
            .any(|(a, b)| (a - b).abs() > 1e-10);
        assert!(biases_changed);
    }

    #[test]
    fn test_adamw_solver_initialization() {
        let mut solver = AdamWSolver::new(0.001, 0.9, 0.999, 1e-8, 0.01);

        let weights = vec![Array2::zeros((3, 2)), Array2::zeros((2, 1))];
        let biases = vec![Array1::zeros(2), Array1::zeros(1)];

        solver.initialize(&weights, &biases);

        assert_eq!(solver.m_weights.len(), 2);
        assert_eq!(solver.v_weights.len(), 2);
        assert_eq!(solver.weight_decay, 0.01);
        assert_eq!(solver.t, 0);
    }

    #[test]
    fn test_rmsprop_solver_initialization() {
        let mut solver = RMSpropSolver::new(0.001, 0.9, 1e-8, 0.0, false);

        let weights = vec![Array2::zeros((3, 2)), Array2::zeros((2, 1))];
        let biases = vec![Array1::zeros(2), Array1::zeros(1)];

        solver.initialize(&weights, &biases);

        assert_eq!(solver.v_weights.len(), 2);
        assert_eq!(solver.v_biases.len(), 2);
        assert!(!solver.centered);
    }

    #[test]
    fn test_rmsprop_centered_initialization() {
        let mut solver = RMSpropSolver::new(0.001, 0.9, 1e-8, 0.0, true);

        let weights = vec![Array2::zeros((3, 2))];
        let biases = vec![Array1::zeros(2)];

        solver.initialize(&weights, &biases);

        assert!(solver.centered);
        assert_eq!(solver.g_weights.len(), 1);
        assert_eq!(solver.g_biases.len(), 1);
    }

    #[test]
    fn test_nadam_solver_initialization() {
        let mut solver = NadamSolver::new(0.001, 0.9, 0.999, 1e-8);

        let weights = vec![Array2::zeros((3, 2)), Array2::zeros((2, 1))];
        let biases = vec![Array1::zeros(2), Array1::zeros(1)];

        solver.initialize(&weights, &biases);

        assert_eq!(solver.m_weights.len(), 2);
        assert_eq!(solver.v_weights.len(), 2);
        assert_eq!(solver.t, 0);
    }

    #[test]
    fn test_adamw_weight_decay() {
        let mut solver = AdamWSolver::new(0.1, 0.9, 0.999, 1e-8, 0.1);

        let mut weights = vec![array![[1.0, 2.0]]];
        let mut biases = vec![array![0.5]];
        let weight_grads = vec![array![[0.0, 0.0]]]; // Zero gradients to isolate weight decay
        let bias_grads = vec![array![0.0]];

        let original_weight_magnitude = weights[0].iter().map(|x| x.abs()).sum::<f64>();

        solver.initialize(&weights, &biases);
        solver
            .update_params(&mut weights, &mut biases, &weight_grads, &bias_grads)
            .expect("operation should succeed");

        let new_weight_magnitude = weights[0].iter().map(|x| x.abs()).sum::<f64>();

        // Weight magnitude should decrease due to weight decay
        assert!(new_weight_magnitude < original_weight_magnitude);
    }

    #[test]
    fn test_lars_solver() {
        let mut solver = LarsSolver::new(0.1, 0.9, 0.01, 0.001, 1e-8, 1.0);

        let mut weights = vec![array![[1.0, 2.0], [3.0, 4.0]]];
        let mut biases = vec![array![0.5, -0.5]];
        let weight_grads = vec![array![[0.1, 0.2], [0.3, 0.4]]];
        let bias_grads = vec![array![0.1, -0.1]];

        let original_weights = weights[0].clone();
        let original_biases = biases[0].clone();

        solver.initialize(&weights, &biases);
        solver
            .update_params(&mut weights, &mut biases, &weight_grads, &bias_grads)
            .expect("operation should succeed");

        // Check that parameters have changed (compare element by element)
        let weights_changed = weights[0]
            .iter()
            .zip(original_weights.iter())
            .any(|(a, b)| (a - b).abs() > 1e-10);
        assert!(weights_changed);
        let biases_changed = biases[0]
            .iter()
            .zip(original_biases.iter())
            .any(|(a, b)| (a - b).abs() > 1e-10);
        assert!(biases_changed);
    }

    #[test]
    fn test_lamb_solver() {
        let mut solver = LambSolver::new(0.001, 0.9, 0.999, 1e-8, 0.01, 1.0);

        let mut weights = vec![array![[1.0, 2.0], [3.0, 4.0]]];
        let mut biases = vec![array![0.5, -0.5]];
        let weight_grads = vec![array![[0.1, 0.2], [0.3, 0.4]]];
        let bias_grads = vec![array![0.1, -0.1]];

        let original_weights = weights[0].clone();
        let original_biases = biases[0].clone();

        solver.initialize(&weights, &biases);
        solver
            .update_params(&mut weights, &mut biases, &weight_grads, &bias_grads)
            .expect("operation should succeed");

        // Check that parameters have changed (compare element by element)
        let weights_changed = weights[0]
            .iter()
            .zip(original_weights.iter())
            .any(|(a, b)| (a - b).abs() > 1e-10);
        assert!(weights_changed);
        let biases_changed = biases[0]
            .iter()
            .zip(original_biases.iter())
            .any(|(a, b)| (a - b).abs() > 1e-10);
        assert!(biases_changed);
    }

    #[test]
    fn test_lbfgs_solver_updates_parameters() {
        let mut solver = LbfgsSolver::new(0.1, 10, 1e-10);

        let mut weights = vec![array![[1.0, 2.0], [3.0, 4.0]]];
        let mut biases = vec![array![0.5, -0.5]];
        let weight_grads = vec![array![[0.1, 0.2], [0.3, 0.4]]];
        let bias_grads = vec![array![0.1, -0.1]];

        let original_weights = weights[0].clone();

        solver.initialize(&weights, &biases);
        solver
            .update_params(&mut weights, &mut biases, &weight_grads, &bias_grads)
            .expect("operation should succeed");

        // First step (empty history) is scaled steepest descent: w - lr * g.
        let expected = &original_weights - &weight_grads[0] * 0.1;
        for (a, b) in weights[0].iter().zip(expected.iter()) {
            assert_abs_diff_eq!(*a, *b, epsilon = 1e-12);
        }
    }

    #[test]
    fn test_lbfgs_minimizes_quadratic() {
        // Minimize f(w) = 0.5 * sum((w - target)^2); gradient = w - target.
        // L-BFGS should drive the parameters to `target`.
        let target = array![[2.0, -3.0], [0.5, 4.0]];
        let mut solver = LbfgsSolver::new(1.0, 10, 1e-12);

        let mut weights = vec![Array2::<f64>::zeros((2, 2))];
        let mut biases = vec![Array1::<f64>::zeros(0)];
        solver.initialize(&weights, &biases);

        for _ in 0..50 {
            let grad = &weights[0] - &target;
            let weight_grads = vec![grad];
            let bias_grads = vec![Array1::<f64>::zeros(0)];
            solver
                .update_params(&mut weights, &mut biases, &weight_grads, &bias_grads)
                .expect("operation should succeed");
        }

        for (w, t) in weights[0].iter().zip(target.iter()) {
            assert_abs_diff_eq!(*w, *t, epsilon = 1e-6);
        }
    }

    #[test]
    fn test_gradient_clipping_by_norm() {
        let mut weight_grads = vec![array![[10.0, 20.0], [30.0, 40.0]]];
        let mut bias_grads = vec![array![5.0, -5.0]];

        // Compute original norm
        let original_norm = (weight_grads[0].iter().map(|x| x * x).sum::<f64>()
            + bias_grads[0].iter().map(|x| x * x).sum::<f64>())
        .sqrt();

        let max_norm = 10.0;
        GradientClipper::clip_gradients(
            &mut weight_grads,
            &mut bias_grads,
            GradientClipping::ByNorm(max_norm),
        );

        // Compute new norm
        let new_norm = (weight_grads[0].iter().map(|x| x * x).sum::<f64>()
            + bias_grads[0].iter().map(|x| x * x).sum::<f64>())
        .sqrt();

        assert!(original_norm > max_norm);
        assert_abs_diff_eq!(new_norm, max_norm, epsilon = 1e-6);
    }

    #[test]
    fn test_gradient_clipping_by_value() {
        let mut weight_grads = vec![array![[10.0, -15.0], [20.0, -25.0]]];
        let mut bias_grads = vec![array![12.0, -8.0]];

        let max_value = 5.0;
        GradientClipper::clip_gradients(
            &mut weight_grads,
            &mut bias_grads,
            GradientClipping::ByValue(max_value),
        );

        // Check that all values are within [-max_value, max_value]
        for grad in &weight_grads {
            for &value in grad.iter() {
                assert!(value >= -max_value && value <= max_value);
            }
        }

        for grad in &bias_grads {
            for &value in grad.iter() {
                assert!(value >= -max_value && value <= max_value);
            }
        }
    }

    #[test]
    fn test_learning_rate_schedules() {
        // Test exponential decay
        let mut solver = SgdSolver::new_with_schedule_params(
            1.0,
            0.0,
            false,
            LearningRateSchedule::ExponentialDecay,
            0.5,
            0.1,
            0.9,
            100,
            1000,
            0.0,
            1.0,
            500,
            0.1,
            100,
            1000,
        );
        solver.t = 100;
        let lr = solver.get_learning_rate();
        let expected = 1.0 * 0.9_f64.powf(100.0 / 100.0);
        assert_abs_diff_eq!(lr, expected, epsilon = 1e-6);

        // Test cosine annealing
        let mut solver = SgdSolver::new_with_schedule_params(
            1.0,
            0.0,
            false,
            LearningRateSchedule::CosineAnnealing,
            0.5,
            0.1,
            0.9,
            100,
            1000,
            0.0,
            1.0,
            500,
            0.1,
            100,
            1000,
        );
        solver.t = 500;
        let lr = solver.get_learning_rate();
        let progress = 500.0 / 1000.0;
        let expected = 0.0 + (1.0 - 0.0) * (1.0 + (std::f64::consts::PI * progress).cos()) / 2.0;
        assert_abs_diff_eq!(lr, expected, epsilon = 1e-6);

        // Test warmup
        let mut solver = SgdSolver::new_with_schedule_params(
            1.0,
            0.0,
            false,
            LearningRateSchedule::Warmup,
            0.5,
            0.1,
            0.9,
            100,
            1000,
            0.0,
            1.0,
            500,
            0.1,
            100,
            1000,
        );
        solver.t = 50;
        let lr = solver.get_learning_rate();
        let expected = 1.0 * (50.0 / 100.0);
        assert_abs_diff_eq!(lr, expected, epsilon = 1e-6);
    }
}