sklears-multioutput 0.1.1

Multi-output regression and classification
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
//! Transfer Learning for Multi-Task Learning
//!
//! This module provides transfer learning algorithms for multi-task scenarios,
//! including domain adaptation, progressive transfer, and continual learning methods.
#![allow(non_snake_case)] // Standard ML notation: X for feature matrices, K for kernels

// Use SciRS2-Core for arrays and random number generation (SciRS2 Policy)
use scirs2_core::ndarray::{s, Array1, Array2, ArrayView2, Axis};
use scirs2_core::random::thread_rng;
use scirs2_core::random::RandNormal;
use sklears_core::{
    error::{Result as SklResult, SklearsError},
    traits::{Estimator, Untrained},
    types::Float,
};

/// Cross-Task Transfer Learning
///
/// Implements cross-task transfer learning for multi-task scenarios where
/// knowledge from source tasks is transferred to target tasks.
///
/// # Examples
///
/// ```
/// use sklears_multioutput::transfer_learning::CrossTaskTransferLearning;
/// // Use SciRS2-Core for arrays and random number generation (SciRS2 Policy)
/// use scirs2_core::ndarray::array;
///
/// let source_data = array![[1.0, 2.0], [2.0, 3.0], [3.0, 1.0]];
/// let source_labels = array![[1.0, 0.0], [0.0, 1.0], [1.0, 1.0]];
/// let target_data = array![[1.1, 2.1], [2.1, 3.1]];
/// let target_labels = array![[1.0, 0.0], [0.0, 1.0]];
///
/// let transfer = CrossTaskTransferLearning::new()
///     .transfer_strength(0.5)
///     .learning_rate(0.01);
/// ```
#[derive(Debug, Clone)]
pub struct CrossTaskTransferLearning<S = Untrained> {
    state: S,
    transfer_strength: Float,
    learning_rate: Float,
    max_iter: usize,
    random_state: Option<u64>,
}

#[derive(Debug, Clone)]
pub struct CrossTaskTransferLearningTrained {
    source_weights: Array2<Float>,
    target_weights: Array2<Float>,
    transfer_matrix: Array2<Float>,
    n_features: usize,
    #[allow(dead_code)]
    n_source_tasks: usize,
    #[allow(dead_code)]
    n_target_tasks: usize,
}

impl CrossTaskTransferLearning<Untrained> {
    /// Create a new CrossTaskTransferLearning instance
    pub fn new() -> Self {
        Self {
            state: Untrained,
            transfer_strength: 0.5,
            learning_rate: 0.01,
            max_iter: 1000,
            random_state: None,
        }
    }

    /// Set the transfer strength (higher values = more transfer)
    pub fn transfer_strength(mut self, strength: Float) -> Self {
        self.transfer_strength = strength;
        self
    }

    /// Set the learning rate
    pub fn learning_rate(mut self, lr: Float) -> Self {
        self.learning_rate = lr;
        self
    }

    /// Set the maximum number of iterations
    pub fn max_iter(mut self, max_iter: usize) -> Self {
        self.max_iter = max_iter;
        self
    }

    /// Set the random state for reproducibility
    pub fn random_state(mut self, seed: Option<u64>) -> Self {
        self.random_state = seed;
        self
    }

    /// Fit the transfer learning model
    pub fn fit(
        &self,
        source_X: &ArrayView2<Float>,
        source_y: &ArrayView2<Float>,
        target_X: &ArrayView2<Float>,
        target_y: &ArrayView2<Float>,
    ) -> SklResult<CrossTaskTransferLearning<CrossTaskTransferLearningTrained>> {
        let n_source_samples = source_X.nrows();
        let n_target_samples = target_X.nrows();
        let n_features = source_X.ncols();
        let n_source_tasks = source_y.ncols();
        let n_target_tasks = target_y.ncols();

        if source_X.ncols() != target_X.ncols() {
            return Err(SklearsError::InvalidInput(
                "Source and target data must have the same number of features".to_string(),
            ));
        }

        if n_source_samples != source_y.nrows() {
            return Err(SklearsError::InvalidInput(
                "Number of source samples must match source labels".to_string(),
            ));
        }

        if n_target_samples != target_y.nrows() {
            return Err(SklearsError::InvalidInput(
                "Number of target samples must match target labels".to_string(),
            ));
        }

        let mut rng = thread_rng();

        // Initialize weights
        let normal_dist = RandNormal::new(0.0, 0.1).expect("operation should succeed");

        let mut source_weights = Array2::<Float>::zeros((n_features, n_source_tasks));
        for i in 0..n_features {
            for j in 0..n_source_tasks {
                source_weights[[i, j]] = rng.sample(normal_dist);
            }
        }

        let mut target_weights = Array2::<Float>::zeros((n_features, n_target_tasks));
        for i in 0..n_features {
            for j in 0..n_target_tasks {
                target_weights[[i, j]] = rng.sample(normal_dist);
            }
        }

        let mut transfer_matrix = Array2::<Float>::zeros((n_source_tasks, n_target_tasks));
        for i in 0..n_source_tasks {
            for j in 0..n_target_tasks {
                transfer_matrix[[i, j]] = rng.sample(normal_dist);
            }
        }

        // Training loop
        for _ in 0..self.max_iter {
            // Update source weights
            let source_pred = source_X.dot(&source_weights);
            let source_error = &source_pred - source_y;
            let source_grad = source_X.t().dot(&source_error) / n_source_samples as Float;
            source_weights -= &(source_grad * self.learning_rate);

            // Update target weights with transfer
            let target_pred = target_X.dot(&target_weights);
            let transferred_pred = target_X.dot(&source_weights).dot(&transfer_matrix);
            let target_error = &target_pred - target_y;
            let transfer_error = &transferred_pred - target_y;

            let target_grad = target_X.t().dot(&target_error) / n_target_samples as Float;
            let transfer_grad = target_X.t().dot(&transfer_error) / n_target_samples as Float;

            target_weights -= &(target_grad * self.learning_rate);
            target_weights -= &(transfer_grad * self.learning_rate * self.transfer_strength);

            // Update transfer matrix
            let transfer_matrix_grad =
                target_X.dot(&source_weights).t().dot(&transfer_error) / n_target_samples as Float;
            transfer_matrix -=
                &(transfer_matrix_grad * self.learning_rate * self.transfer_strength);
        }

        Ok(CrossTaskTransferLearning {
            state: CrossTaskTransferLearningTrained {
                source_weights,
                target_weights,
                transfer_matrix,
                n_features,
                n_source_tasks,
                n_target_tasks,
            },
            transfer_strength: self.transfer_strength,
            learning_rate: self.learning_rate,
            max_iter: self.max_iter,
            random_state: self.random_state,
        })
    }
}

impl CrossTaskTransferLearning<CrossTaskTransferLearningTrained> {
    /// Predict using the trained transfer learning model
    pub fn predict(&self, X: &ArrayView2<Float>) -> SklResult<Array2<Float>> {
        if X.ncols() != self.state.n_features {
            return Err(SklearsError::InvalidInput(
                "Number of features must match training data".to_string(),
            ));
        }

        let target_pred = X.dot(&self.state.target_weights);
        Ok(target_pred)
    }

    /// Predict using source task knowledge
    pub fn predict_from_source(&self, X: &ArrayView2<Float>) -> SklResult<Array2<Float>> {
        if X.ncols() != self.state.n_features {
            return Err(SklearsError::InvalidInput(
                "Number of features must match training data".to_string(),
            ));
        }

        let source_pred = X.dot(&self.state.source_weights);
        let transferred_pred = source_pred.dot(&self.state.transfer_matrix);
        Ok(transferred_pred)
    }

    /// Get the transfer matrix
    pub fn transfer_matrix(&self) -> &Array2<Float> {
        &self.state.transfer_matrix
    }

    /// Get the source weights
    pub fn source_weights(&self) -> &Array2<Float> {
        &self.state.source_weights
    }

    /// Get the target weights
    pub fn target_weights(&self) -> &Array2<Float> {
        &self.state.target_weights
    }
}

impl Default for CrossTaskTransferLearning<Untrained> {
    fn default() -> Self {
        Self::new()
    }
}

impl Estimator for CrossTaskTransferLearning<Untrained> {
    type Config = ();
    type Error = SklearsError;
    type Float = Float;

    fn config(&self) -> &Self::Config {
        &()
    }
}

impl Estimator for CrossTaskTransferLearning<CrossTaskTransferLearningTrained> {
    type Config = ();
    type Error = SklearsError;
    type Float = Float;

    fn config(&self) -> &Self::Config {
        &()
    }
}

/// Domain Adaptation for Multi-Task Learning
///
/// Implements domain adaptation techniques to transfer knowledge
/// between different domains in multi-task settings.
///
/// # Examples
///
/// ```
/// use sklears_multioutput::transfer_learning::DomainAdaptation;
/// // Use SciRS2-Core for arrays and random number generation (SciRS2 Policy)
/// use scirs2_core::ndarray::array;
///
/// let source_data = array![[1.0, 2.0], [2.0, 3.0]];
/// let source_labels = array![[1.0], [0.0]];
/// let target_data = array![[1.1, 2.1], [2.1, 3.1]];
/// let target_labels = array![[1.0], [0.0]];
///
/// let adaptation = DomainAdaptation::new()
///     .adaptation_strength(0.3)
///     .learning_rate(0.01);
/// ```
#[derive(Debug, Clone)]
pub struct DomainAdaptation<S = Untrained> {
    state: S,
    adaptation_strength: Float,
    learning_rate: Float,
    max_iter: usize,
    random_state: Option<u64>,
}

#[derive(Debug, Clone)]
pub struct DomainAdaptationTrained {
    feature_extractor: Array2<Float>,
    classifier: Array2<Float>,
    domain_discriminator: Array2<Float>,
    n_features: usize,
    #[allow(dead_code)]
    n_tasks: usize,
}

impl DomainAdaptation<Untrained> {
    /// Create a new DomainAdaptation instance
    pub fn new() -> Self {
        Self {
            state: Untrained,
            adaptation_strength: 0.3,
            learning_rate: 0.01,
            max_iter: 1000,
            random_state: None,
        }
    }

    /// Set the adaptation strength
    pub fn adaptation_strength(mut self, strength: Float) -> Self {
        self.adaptation_strength = strength;
        self
    }

    /// Set the learning rate
    pub fn learning_rate(mut self, lr: Float) -> Self {
        self.learning_rate = lr;
        self
    }

    /// Set the maximum number of iterations
    pub fn max_iter(mut self, max_iter: usize) -> Self {
        self.max_iter = max_iter;
        self
    }

    /// Set the random state for reproducibility
    pub fn random_state(mut self, seed: Option<u64>) -> Self {
        self.random_state = seed;
        self
    }

    /// Fit the domain adaptation model
    pub fn fit(
        &self,
        source_X: &ArrayView2<Float>,
        source_y: &ArrayView2<Float>,
        target_X: &ArrayView2<Float>,
        target_y: &ArrayView2<Float>,
    ) -> SklResult<DomainAdaptation<DomainAdaptationTrained>> {
        let n_source_samples = source_X.nrows();
        let n_target_samples = target_X.nrows();
        let n_features = source_X.ncols();
        let n_tasks = source_y.ncols();

        if source_X.ncols() != target_X.ncols() {
            return Err(SklearsError::InvalidInput(
                "Source and target data must have the same number of features".to_string(),
            ));
        }

        if n_source_samples != source_y.nrows() {
            return Err(SklearsError::InvalidInput(
                "Number of source samples must match source labels".to_string(),
            ));
        }

        if n_target_samples != target_y.nrows() {
            return Err(SklearsError::InvalidInput(
                "Number of target samples must match target labels".to_string(),
            ));
        }

        let mut rng = thread_rng();

        // Initialize networks
        let hidden_dim = (n_features + n_tasks) / 2;
        let mut feature_extractor = Array2::<Float>::zeros((n_features, hidden_dim));
        let normal_dist = RandNormal::new(0.0, 0.1).expect("operation should succeed");
        for i in 0..n_features {
            for j in 0..hidden_dim {
                feature_extractor[[i, j]] = rng.sample(normal_dist);
            }
        }
        let mut classifier = Array2::<Float>::zeros((hidden_dim, n_tasks));
        let classifier_normal_dist = RandNormal::new(0.0, 0.1).expect("operation should succeed");
        for i in 0..hidden_dim {
            for j in 0..n_tasks {
                classifier[[i, j]] = rng.sample(classifier_normal_dist);
            }
        }
        let mut domain_discriminator = Array2::<Float>::zeros((hidden_dim, 1));
        let discriminator_normal_dist =
            RandNormal::new(0.0, 0.1).expect("operation should succeed");
        for i in 0..hidden_dim {
            domain_discriminator[[i, 0]] = rng.sample(discriminator_normal_dist);
        }

        // Create domain labels (0 for source, 1 for target)
        let mut domain_labels = Array2::<Float>::zeros((n_source_samples + n_target_samples, 1));
        for i in n_source_samples..(n_source_samples + n_target_samples) {
            domain_labels[(i, 0)] = 1.0;
        }

        // Combine data
        let mut combined_X =
            Array2::<Float>::zeros((n_source_samples + n_target_samples, n_features));
        combined_X
            .slice_mut(s![..n_source_samples, ..])
            .assign(source_X);
        combined_X
            .slice_mut(s![n_source_samples.., ..])
            .assign(target_X);

        // Training loop
        for _ in 0..self.max_iter {
            // Extract features
            let features = combined_X.dot(&feature_extractor);
            let source_features = features.slice(s![..n_source_samples, ..]);
            let _target_features = features.slice(s![n_source_samples.., ..]);

            // Train classifier on source domain
            let source_pred = source_features.dot(&classifier);
            let classification_error = &source_pred - source_y;
            let classifier_grad =
                source_features.t().dot(&classification_error) / n_source_samples as Float;
            classifier -= &(&classifier_grad * self.learning_rate);

            // Train domain discriminator (distinguish source from target)
            let domain_pred = features.dot(&domain_discriminator);
            let domain_error = &domain_pred - &domain_labels;
            let discriminator_grad =
                features.t().dot(&domain_error) / (n_source_samples + n_target_samples) as Float;
            domain_discriminator -= &(&discriminator_grad * self.learning_rate);

            // Update feature extractor (adversarial training)
            let feat_class_grad =
                combined_X.t().dot(&features.dot(&classifier_grad.t())) / n_source_samples as Float;
            let feat_domain_grad = combined_X.t().dot(&features.dot(&discriminator_grad))
                / (n_source_samples + n_target_samples) as Float;

            feature_extractor -= &(feat_class_grad * self.learning_rate);
            feature_extractor +=
                &(feat_domain_grad * self.learning_rate * self.adaptation_strength);
            // Adversarial
        }

        Ok(DomainAdaptation {
            state: DomainAdaptationTrained {
                feature_extractor,
                classifier,
                domain_discriminator,
                n_features,
                n_tasks,
            },
            adaptation_strength: self.adaptation_strength,
            learning_rate: self.learning_rate,
            max_iter: self.max_iter,
            random_state: self.random_state,
        })
    }
}

impl DomainAdaptation<DomainAdaptationTrained> {
    /// Predict using the trained domain adaptation model
    pub fn predict(&self, X: &ArrayView2<Float>) -> SklResult<Array2<Float>> {
        if X.ncols() != self.state.n_features {
            return Err(SklearsError::InvalidInput(
                "Number of features must match training data".to_string(),
            ));
        }

        let features = X.dot(&self.state.feature_extractor);
        let predictions = features.dot(&self.state.classifier);
        Ok(predictions)
    }

    /// Extract domain-invariant features
    pub fn extract_features(&self, X: &ArrayView2<Float>) -> SklResult<Array2<Float>> {
        if X.ncols() != self.state.n_features {
            return Err(SklearsError::InvalidInput(
                "Number of features must match training data".to_string(),
            ));
        }

        let features = X.dot(&self.state.feature_extractor);
        Ok(features)
    }

    /// Predict domain labels (0 for source-like, 1 for target-like)
    pub fn predict_domain(&self, X: &ArrayView2<Float>) -> SklResult<Array1<Float>> {
        if X.ncols() != self.state.n_features {
            return Err(SklearsError::InvalidInput(
                "Number of features must match training data".to_string(),
            ));
        }

        let features = X.dot(&self.state.feature_extractor);
        let domain_pred = features.dot(&self.state.domain_discriminator);
        Ok(domain_pred.column(0).to_owned())
    }
}

impl Default for DomainAdaptation<Untrained> {
    fn default() -> Self {
        Self::new()
    }
}

impl Estimator for DomainAdaptation<Untrained> {
    type Config = ();
    type Error = SklearsError;
    type Float = Float;

    fn config(&self) -> &Self::Config {
        &()
    }
}

impl Estimator for DomainAdaptation<DomainAdaptationTrained> {
    type Config = ();
    type Error = SklearsError;
    type Float = Float;

    fn config(&self) -> &Self::Config {
        &()
    }
}

/// Progressive Transfer Learning
///
/// Implements progressive transfer learning where tasks are learned
/// sequentially, with knowledge from earlier tasks helping later ones.
///
/// # Examples
///
/// ```
/// use sklears_multioutput::transfer_learning::ProgressiveTransferLearning;
/// // Use SciRS2-Core for arrays and random number generation (SciRS2 Policy)
///
/// let transfer = ProgressiveTransferLearning::new()
///     .transfer_strength(0.4)
///     .learning_rate(0.01)
///     .max_iter(500);
/// ```
#[derive(Debug, Clone)]
pub struct ProgressiveTransferLearning<S = Untrained> {
    state: S,
    transfer_strength: Float,
    learning_rate: Float,
    max_iter: usize,
    random_state: Option<u64>,
}

#[derive(Debug, Clone)]
pub struct ProgressiveTransferLearningTrained {
    task_weights: Vec<Array2<Float>>,
    shared_weights: Array2<Float>,
    task_order: Vec<usize>,
    n_features: usize,
    n_tasks: usize,
}

impl ProgressiveTransferLearning<Untrained> {
    /// Create a new ProgressiveTransferLearning instance
    pub fn new() -> Self {
        Self {
            state: Untrained,
            transfer_strength: 0.4,
            learning_rate: 0.01,
            max_iter: 500,
            random_state: None,
        }
    }

    /// Set the transfer strength
    pub fn transfer_strength(mut self, strength: Float) -> Self {
        self.transfer_strength = strength;
        self
    }

    /// Set the learning rate
    pub fn learning_rate(mut self, lr: Float) -> Self {
        self.learning_rate = lr;
        self
    }

    /// Set the maximum number of iterations
    pub fn max_iter(mut self, max_iter: usize) -> Self {
        self.max_iter = max_iter;
        self
    }

    /// Set the random state for reproducibility
    pub fn random_state(mut self, seed: Option<u64>) -> Self {
        self.random_state = seed;
        self
    }

    /// Fit the progressive transfer learning model
    pub fn fit(
        &self,
        X: &ArrayView2<Float>,
        y: &ArrayView2<Float>,
        task_order: Option<Vec<usize>>,
    ) -> SklResult<ProgressiveTransferLearning<ProgressiveTransferLearningTrained>> {
        let n_samples = X.nrows();
        let n_features = X.ncols();
        let n_tasks = y.ncols();

        if n_samples != y.nrows() {
            return Err(SklearsError::InvalidInput(
                "Number of samples must match number of labels".to_string(),
            ));
        }

        let mut rng = thread_rng();

        // Determine task order
        let task_order = task_order.unwrap_or_else(|| (0..n_tasks).collect());

        // Initialize shared weights
        let mut shared_weights = Array2::<Float>::zeros((n_features, n_features));
        let shared_normal_dist = RandNormal::new(0.0, 0.1).expect("operation should succeed");
        for i in 0..n_features {
            for j in 0..n_features {
                shared_weights[[i, j]] = rng.sample(shared_normal_dist);
            }
        }

        let mut task_weights = Vec::with_capacity(n_tasks);

        // Train tasks progressively
        for &task_idx in &task_order {
            let task_y = y.column(task_idx);

            // Initialize task-specific weights
            let mut task_weight = Array2::<Float>::zeros((n_features, 1));
            let task_normal_dist = RandNormal::new(0.0, 0.1).expect("operation should succeed");
            for i in 0..n_features {
                task_weight[[i, 0]] = rng.sample(task_normal_dist);
            }

            // Train this task
            for _ in 0..self.max_iter {
                // Compute shared features
                let shared_features = X.dot(&shared_weights);

                // Compute task prediction
                let task_pred = shared_features.dot(&task_weight);
                let task_error = &task_pred.column(0) - &task_y;

                // Update task weights
                let task_error_2d = task_error.insert_axis(Axis(1));
                let task_grad = shared_features.t().dot(&task_error_2d) / n_samples as Float;
                task_weight -= &(&task_grad * self.learning_rate);

                // Update shared weights (transfer from previous tasks)
                if !task_weights.is_empty() {
                    let shared_grad =
                        X.t().dot(&task_error_2d.dot(&task_weight.t())) / n_samples as Float;
                    shared_weights -= &(shared_grad * self.learning_rate * self.transfer_strength);
                }
            }

            task_weights.push(task_weight);
        }

        Ok(ProgressiveTransferLearning {
            state: ProgressiveTransferLearningTrained {
                task_weights,
                shared_weights,
                task_order,
                n_features,
                n_tasks,
            },
            transfer_strength: self.transfer_strength,
            learning_rate: self.learning_rate,
            max_iter: self.max_iter,
            random_state: self.random_state,
        })
    }
}

impl ProgressiveTransferLearning<ProgressiveTransferLearningTrained> {
    /// Predict using the trained progressive transfer learning model
    pub fn predict(&self, X: &ArrayView2<Float>) -> SklResult<Array2<Float>> {
        if X.ncols() != self.state.n_features {
            return Err(SklearsError::InvalidInput(
                "Number of features must match training data".to_string(),
            ));
        }

        let n_samples = X.nrows();
        let shared_features = X.dot(&self.state.shared_weights);
        let mut predictions = Array2::<Float>::zeros((n_samples, self.state.n_tasks));

        for (i, &task_idx) in self.state.task_order.iter().enumerate() {
            let task_pred = shared_features.dot(&self.state.task_weights[i]);
            predictions
                .column_mut(task_idx)
                .assign(&task_pred.column(0));
        }

        Ok(predictions)
    }

    /// Get the shared weights
    pub fn shared_weights(&self) -> &Array2<Float> {
        &self.state.shared_weights
    }

    /// Get the task-specific weights
    pub fn task_weights(&self) -> &Vec<Array2<Float>> {
        &self.state.task_weights
    }

    /// Get the task order
    pub fn task_order(&self) -> &Vec<usize> {
        &self.state.task_order
    }
}

impl Default for ProgressiveTransferLearning<Untrained> {
    fn default() -> Self {
        Self::new()
    }
}

impl Estimator for ProgressiveTransferLearning<Untrained> {
    type Config = ();
    type Error = SklearsError;
    type Float = Float;

    fn config(&self) -> &Self::Config {
        &()
    }
}

impl Estimator for ProgressiveTransferLearning<ProgressiveTransferLearningTrained> {
    type Config = ();
    type Error = SklearsError;
    type Float = Float;

    fn config(&self) -> &Self::Config {
        &()
    }
}

/// Continual Learning for Multi-Task Learning
///
/// Implements continual learning where new tasks are learned sequentially
/// without forgetting previously learned tasks using elastic weight consolidation.
///
/// # Examples
///
/// ```
/// use sklears_multioutput::transfer_learning::ContinualLearning;
/// // Use SciRS2-Core for arrays and random number generation (SciRS2 Policy)
/// use scirs2_core::ndarray::array;
///
/// let X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 1.0]];
/// let y = array![[1.0, 0.0], [0.0, 1.0], [1.0, 1.0]];
///
/// let continual = ContinualLearning::new()
///     .importance_weight(1000.0)
///     .learning_rate(0.01);
/// ```
#[derive(Debug, Clone)]
pub struct ContinualLearning<S = Untrained> {
    state: S,
    importance_weight: Float,
    learning_rate: Float,
    max_iter: usize,
    random_state: Option<u64>,
}

#[derive(Debug, Clone)]
pub struct ContinualLearningTrained {
    task_weights: Vec<Array2<Float>>,
    fisher_information: Array2<Float>,
    optimal_weights: Array2<Float>,
    n_features: usize,
    #[allow(dead_code)]
    n_tasks: usize,
}

impl Default for ContinualLearning<Untrained> {
    fn default() -> Self {
        Self::new()
    }
}

impl ContinualLearning<Untrained> {
    /// Create a new ContinualLearning instance
    pub fn new() -> Self {
        Self {
            state: Untrained,
            importance_weight: 1000.0,
            learning_rate: 0.01,
            max_iter: 1000,
            random_state: None,
        }
    }

    /// Set the importance weight for preventing forgetting
    pub fn importance_weight(mut self, weight: Float) -> Self {
        self.importance_weight = weight;
        self
    }

    /// Set the learning rate
    pub fn learning_rate(mut self, lr: Float) -> Self {
        self.learning_rate = lr;
        self
    }

    /// Set the maximum number of iterations
    pub fn max_iter(mut self, max_iter: usize) -> Self {
        self.max_iter = max_iter;
        self
    }

    /// Set the random state for reproducibility
    pub fn random_state(mut self, seed: Option<u64>) -> Self {
        self.random_state = seed;
        self
    }

    /// Fit the continual learning model
    pub fn fit(
        &self,
        tasks_X: &[ArrayView2<Float>],
        tasks_y: &[ArrayView2<Float>],
    ) -> SklResult<ContinualLearning<ContinualLearningTrained>> {
        if tasks_X.len() != tasks_y.len() {
            return Err(SklearsError::InvalidInput(
                "Number of X and y task arrays must match".to_string(),
            ));
        }

        if tasks_X.is_empty() {
            return Err(SklearsError::InvalidInput("No tasks provided".to_string()));
        }

        let n_features = tasks_X[0].ncols();
        let n_tasks = tasks_y[0].ncols();

        // Initialize with random weights
        let mut rng = thread_rng();

        let mut weights = Array2::<Float>::zeros((n_features, n_tasks));
        let weights_normal_dist = RandNormal::new(0.0, 0.1).expect("operation should succeed");
        for i in 0..n_features {
            for j in 0..n_tasks {
                weights[[i, j]] = rng.sample(weights_normal_dist);
            }
        }
        let mut fisher_information = Array2::<Float>::zeros((n_features, n_tasks));
        let mut task_weights = Vec::new();

        // Learn tasks sequentially
        for (task_idx, (X, y)) in tasks_X.iter().zip(tasks_y.iter()).enumerate() {
            if X.nrows() != y.nrows() {
                return Err(SklearsError::InvalidInput(
                    "Number of samples in X and y must match".to_string(),
                ));
            }

            // Store weights before learning new task
            let old_weights = weights.clone();

            // Learn current task
            for _ in 0..self.max_iter {
                let predictions = X.dot(&weights);
                let errors = &predictions - y;
                let gradient = X.t().dot(&errors) / X.nrows() as Float;

                // Add elastic weight consolidation penalty for previous tasks
                if task_idx > 0 {
                    let penalty =
                        &fisher_information * (&weights - &old_weights) * self.importance_weight;
                    weights = &weights - self.learning_rate * (&gradient + penalty);
                } else {
                    weights = &weights - self.learning_rate * &gradient;
                }
            }

            // Update Fisher information matrix
            let predictions = X.dot(&weights);
            let errors = &predictions - y;
            let grad_squared = X.t().dot(&errors.mapv(|x| x * x)) / X.nrows() as Float;
            fisher_information = &fisher_information + grad_squared;

            task_weights.push(weights.clone());
        }

        Ok(ContinualLearning {
            state: ContinualLearningTrained {
                task_weights,
                fisher_information,
                optimal_weights: weights,
                n_features,
                n_tasks,
            },
            importance_weight: self.importance_weight,
            learning_rate: self.learning_rate,
            max_iter: self.max_iter,
            random_state: self.random_state,
        })
    }
}

impl ContinualLearning<ContinualLearningTrained> {
    /// Predict using the continual learning model
    pub fn predict(&self, X: &ArrayView2<Float>) -> SklResult<Array2<Float>> {
        if X.ncols() != self.state.n_features {
            return Err(SklearsError::InvalidInput(
                "Number of features must match training data".to_string(),
            ));
        }

        Ok(X.dot(&self.state.optimal_weights))
    }

    /// Get the task weights
    pub fn task_weights(&self) -> &[Array2<Float>] {
        &self.state.task_weights
    }

    /// Get the Fisher information matrix
    pub fn fisher_information(&self) -> &Array2<Float> {
        &self.state.fisher_information
    }
}

impl Estimator for ContinualLearning<Untrained> {
    type Config = ();
    type Error = SklearsError;
    type Float = Float;

    fn config(&self) -> &Self::Config {
        &()
    }
}

impl Estimator for ContinualLearning<ContinualLearningTrained> {
    type Config = ();
    type Error = SklearsError;
    type Float = Float;

    fn config(&self) -> &Self::Config {
        &()
    }
}

/// Knowledge Distillation for Multi-Task Learning
///
/// Implements knowledge distillation where a smaller student network learns
/// from a larger teacher network for improved efficiency and performance.
///
/// # Examples
///
/// ```
/// use sklears_multioutput::transfer_learning::KnowledgeDistillation;
/// // Use SciRS2-Core for arrays and random number generation (SciRS2 Policy)
/// use scirs2_core::ndarray::array;
///
/// let X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 1.0]];
/// let y = array![[1.0, 0.0], [0.0, 1.0], [1.0, 1.0]];
///
/// let distillation = KnowledgeDistillation::new()
///     .temperature(3.0)
///     .alpha(0.7)
///     .learning_rate(0.01);
/// ```
#[derive(Debug, Clone)]
pub struct KnowledgeDistillation<S = Untrained> {
    state: S,
    temperature: Float,
    alpha: Float,
    learning_rate: Float,
    max_iter: usize,
    random_state: Option<u64>,
}

#[derive(Debug, Clone)]
pub struct KnowledgeDistillationTrained {
    student_weights: Array2<Float>,
    teacher_weights: Array2<Float>,
    n_features: usize,
    #[allow(dead_code)]
    n_tasks: usize,
}

impl Default for KnowledgeDistillation<Untrained> {
    fn default() -> Self {
        Self::new()
    }
}

impl KnowledgeDistillation<Untrained> {
    /// Create a new KnowledgeDistillation instance
    pub fn new() -> Self {
        Self {
            state: Untrained,
            temperature: 3.0,
            alpha: 0.7,
            learning_rate: 0.01,
            max_iter: 1000,
            random_state: None,
        }
    }

    /// Set the temperature for softening teacher predictions
    pub fn temperature(mut self, temp: Float) -> Self {
        self.temperature = temp;
        self
    }

    /// Set the alpha parameter for balancing hard and soft targets
    pub fn alpha(mut self, alpha: Float) -> Self {
        self.alpha = alpha;
        self
    }

    /// Set the learning rate
    pub fn learning_rate(mut self, lr: Float) -> Self {
        self.learning_rate = lr;
        self
    }

    /// Set the maximum number of iterations
    pub fn max_iter(mut self, max_iter: usize) -> Self {
        self.max_iter = max_iter;
        self
    }

    /// Set the random state for reproducibility
    pub fn random_state(mut self, seed: Option<u64>) -> Self {
        self.random_state = seed;
        self
    }

    /// Fit the knowledge distillation model
    pub fn fit(
        &self,
        X: &ArrayView2<Float>,
        y: &ArrayView2<Float>,
        teacher_predictions: &ArrayView2<Float>,
    ) -> SklResult<KnowledgeDistillation<KnowledgeDistillationTrained>> {
        if X.nrows() != y.nrows() {
            return Err(SklearsError::InvalidInput(
                "Number of samples in X and y must match".to_string(),
            ));
        }

        if X.nrows() != teacher_predictions.nrows() {
            return Err(SklearsError::InvalidInput(
                "Number of samples in X and teacher predictions must match".to_string(),
            ));
        }

        let n_features = X.ncols();
        let n_tasks = y.ncols();

        // Initialize with random weights
        let mut rng = thread_rng();

        let mut student_weights = Array2::<Float>::zeros((n_features, n_tasks));
        let student_normal_dist = RandNormal::new(0.0, 0.1).expect("operation should succeed");
        for i in 0..n_features {
            for j in 0..n_tasks {
                student_weights[[i, j]] = rng.sample(student_normal_dist);
            }
        }
        let mut teacher_weights = Array2::<Float>::zeros((n_features, n_tasks));
        let teacher_normal_dist = RandNormal::new(0.0, 0.1).expect("operation should succeed");
        for i in 0..n_features {
            for j in 0..n_tasks {
                teacher_weights[[i, j]] = rng.sample(teacher_normal_dist);
            }
        }

        // Train student network
        for _ in 0..self.max_iter {
            let student_predictions = X.dot(&student_weights);

            // Soft targets from teacher (temperature-scaled)
            let soft_targets = teacher_predictions / self.temperature;
            let student_soft = &student_predictions / self.temperature;

            // Combined loss: weighted sum of hard and soft targets
            let hard_loss = &student_predictions - y;
            let soft_loss = &student_soft - &soft_targets;

            let combined_loss = (1.0 - self.alpha) * hard_loss + self.alpha * soft_loss;
            let gradient = X.t().dot(&combined_loss) / X.nrows() as Float;

            student_weights = &student_weights - self.learning_rate * &gradient;
        }

        Ok(KnowledgeDistillation {
            state: KnowledgeDistillationTrained {
                student_weights,
                teacher_weights,
                n_features,
                n_tasks,
            },
            temperature: self.temperature,
            alpha: self.alpha,
            learning_rate: self.learning_rate,
            max_iter: self.max_iter,
            random_state: self.random_state,
        })
    }
}

impl KnowledgeDistillation<KnowledgeDistillationTrained> {
    /// Predict using the student network
    pub fn predict(&self, X: &ArrayView2<Float>) -> SklResult<Array2<Float>> {
        if X.ncols() != self.state.n_features {
            return Err(SklearsError::InvalidInput(
                "Number of features must match training data".to_string(),
            ));
        }

        Ok(X.dot(&self.state.student_weights))
    }

    /// Get the student weights
    pub fn student_weights(&self) -> &Array2<Float> {
        &self.state.student_weights
    }

    /// Get the teacher weights
    pub fn teacher_weights(&self) -> &Array2<Float> {
        &self.state.teacher_weights
    }
}

impl Estimator for KnowledgeDistillation<Untrained> {
    type Config = ();
    type Error = SklearsError;
    type Float = Float;

    fn config(&self) -> &Self::Config {
        &()
    }
}

impl Estimator for KnowledgeDistillation<KnowledgeDistillationTrained> {
    type Config = ();
    type Error = SklearsError;
    type Float = Float;

    fn config(&self) -> &Self::Config {
        &()
    }
}

#[allow(non_snake_case)]
#[cfg(test)]
mod tests {
    use super::*;
    // Use SciRS2-Core for arrays and random number generation (SciRS2 Policy)
    use scirs2_core::ndarray::array;

    #[test]
    fn test_cross_task_transfer_learning_basic() {
        let source_X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 1.0], [1.0, 3.0]];
        let source_y = array![[1.0, 0.0], [0.0, 1.0], [1.0, 1.0], [0.0, 0.0]];
        let target_X = array![[1.1, 2.1], [2.1, 3.1]];
        let target_y = array![[1.0, 0.0], [0.0, 1.0]];

        let transfer = CrossTaskTransferLearning::new()
            .transfer_strength(0.5)
            .learning_rate(0.01)
            .max_iter(100)
            .random_state(Some(42));

        let trained = transfer
            .fit(
                &source_X.view(),
                &source_y.view(),
                &target_X.view(),
                &target_y.view(),
            )
            .expect("operation should succeed");

        let predictions = trained
            .predict(&target_X.view())
            .expect("prediction should succeed");
        assert_eq!(predictions.dim(), (2, 2));

        let source_predictions = trained
            .predict_from_source(&target_X.view())
            .expect("operation should succeed");
        assert_eq!(source_predictions.dim(), (2, 2));
    }

    #[test]
    fn test_cross_task_transfer_learning_validation() {
        let source_X = array![[1.0, 2.0], [2.0, 3.0]];
        let source_y = array![[1.0, 0.0], [0.0, 1.0]];
        let target_X = array![[1.1, 2.1, 3.1]]; // Different number of features
        let target_y = array![[1.0, 0.0]];

        let transfer = CrossTaskTransferLearning::new();

        // Should fail due to feature mismatch
        assert!(transfer
            .fit(
                &source_X.view(),
                &source_y.view(),
                &target_X.view(),
                &target_y.view()
            )
            .is_err());
    }

    #[test]
    fn test_domain_adaptation_basic() {
        let source_X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 1.0], [1.0, 3.0]];
        let source_y = array![[1.0], [0.0], [1.0], [0.0]];
        let target_X = array![[1.1, 2.1], [2.1, 3.1]];
        let target_y = array![[1.0], [0.0]];

        let adaptation = DomainAdaptation::new()
            .adaptation_strength(0.3)
            .learning_rate(0.01)
            .max_iter(100)
            .random_state(Some(42));

        let trained = adaptation
            .fit(
                &source_X.view(),
                &source_y.view(),
                &target_X.view(),
                &target_y.view(),
            )
            .expect("operation should succeed");

        let predictions = trained
            .predict(&target_X.view())
            .expect("prediction should succeed");
        assert_eq!(predictions.dim(), (2, 1));

        let features = trained
            .extract_features(&target_X.view())
            .expect("operation should succeed");
        assert_eq!(features.ncols(), 1); // Hidden dimension

        let domain_pred = trained
            .predict_domain(&target_X.view())
            .expect("operation should succeed");
        assert_eq!(domain_pred.len(), 2);
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_progressive_transfer_learning_basic() {
        let X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 1.0], [1.0, 3.0]];
        let y = array![
            [1.0, 0.0, 1.0],
            [0.0, 1.0, 0.0],
            [1.0, 1.0, 1.0],
            [0.0, 0.0, 0.0]
        ];

        let transfer = ProgressiveTransferLearning::new()
            .transfer_strength(0.4)
            .learning_rate(0.01)
            .max_iter(100)
            .random_state(Some(42));

        let trained = transfer
            .fit(&X.view(), &y.view(), None)
            .expect("model fitting should succeed");

        let predictions = trained
            .predict(&X.view())
            .expect("prediction should succeed");
        assert_eq!(predictions.dim(), (4, 3));

        // Check that we have weights for all tasks
        assert_eq!(trained.task_weights().len(), 3);
        assert_eq!(trained.task_order().len(), 3);
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_progressive_transfer_learning_custom_order() {
        let X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 1.0]];
        let y = array![[1.0, 0.0, 1.0], [0.0, 1.0, 0.0], [1.0, 1.0, 1.0]];

        let transfer = ProgressiveTransferLearning::new().random_state(Some(42));

        let custom_order = vec![2, 0, 1]; // Start with task 2, then 0, then 1
        let trained = transfer
            .fit(&X.view(), &y.view(), Some(custom_order.clone()))
            .expect("operation should succeed");

        assert_eq!(trained.task_order(), &custom_order);
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_transfer_learning_error_handling() {
        let X = array![[1.0, 2.0], [2.0, 3.0]];
        let y = array![[1.0, 0.0], [0.0, 1.0], [1.0, 1.0]]; // Mismatched samples

        let transfer = ProgressiveTransferLearning::new();
        assert!(transfer.fit(&X.view(), &y.view(), None).is_err());
    }

    #[test]
    fn test_continual_learning_basic() {
        let X1 = array![[1.0, 2.0], [2.0, 3.0]];
        let y1 = array![[1.0, 0.0], [0.0, 1.0]];
        let X2 = array![[3.0, 1.0], [1.0, 3.0]];
        let y2 = array![[1.0, 1.0], [0.0, 0.0]];

        let tasks_X = vec![X1.view(), X2.view()];
        let tasks_y = vec![y1.view(), y2.view()];

        let continual = ContinualLearning::new()
            .importance_weight(1000.0)
            .learning_rate(0.01)
            .max_iter(100)
            .random_state(Some(42));

        let trained = continual
            .fit(&tasks_X, &tasks_y)
            .expect("model fitting should succeed");

        let predictions = trained
            .predict(&X1.view())
            .expect("prediction should succeed");
        assert_eq!(predictions.dim(), (2, 2));

        // Check that we have weights for both tasks
        assert_eq!(trained.task_weights().len(), 2);
        assert_eq!(trained.fisher_information().dim(), (2, 2));
    }

    #[test]
    fn test_continual_learning_error_handling() {
        let X1 = array![[1.0, 2.0], [2.0, 3.0]];
        let y1 = array![[1.0, 0.0], [0.0, 1.0]];
        let X2 = array![[3.0, 1.0]]; // Wrong number of samples
        let y2 = array![[1.0, 1.0], [0.0, 0.0]];

        let tasks_X = vec![X1.view(), X2.view()];
        let tasks_y = vec![y1.view(), y2.view()];

        let continual = ContinualLearning::new();
        assert!(continual.fit(&tasks_X, &tasks_y).is_err());
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_knowledge_distillation_basic() {
        let X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 1.0]];
        let y = array![[1.0, 0.0], [0.0, 1.0], [1.0, 1.0]];
        let teacher_predictions = array![[0.9, 0.1], [0.1, 0.9], [0.8, 0.8]];

        let distillation = KnowledgeDistillation::new()
            .temperature(3.0)
            .alpha(0.7)
            .learning_rate(0.01)
            .max_iter(100)
            .random_state(Some(42));

        let trained = distillation
            .fit(&X.view(), &y.view(), &teacher_predictions.view())
            .expect("operation should succeed");

        let predictions = trained
            .predict(&X.view())
            .expect("prediction should succeed");
        assert_eq!(predictions.dim(), (3, 2));

        // Check that we have student and teacher weights
        assert_eq!(trained.student_weights().dim(), (2, 2));
        assert_eq!(trained.teacher_weights().dim(), (2, 2));
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_knowledge_distillation_error_handling() {
        let X = array![[1.0, 2.0], [2.0, 3.0]];
        let y = array![[1.0, 0.0], [0.0, 1.0]];
        let teacher_predictions = array![[0.9, 0.1], [0.1, 0.9], [0.8, 0.8]]; // Wrong number of samples

        let distillation = KnowledgeDistillation::new();
        assert!(distillation
            .fit(&X.view(), &y.view(), &teacher_predictions.view())
            .is_err());
    }

    #[test]
    fn test_knowledge_distillation_configuration() {
        let distillation = KnowledgeDistillation::new()
            .temperature(5.0)
            .alpha(0.5)
            .learning_rate(0.001)
            .max_iter(2000)
            .random_state(Some(123));

        // Test configuration parameters
        assert_eq!(distillation.temperature, 5.0);
        assert_eq!(distillation.alpha, 0.5);
        assert_eq!(distillation.learning_rate, 0.001);
        assert_eq!(distillation.max_iter, 2000);
        assert_eq!(distillation.random_state, Some(123));
    }
}