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
//! Chain-based multi-output learning algorithms
//!
//! This module provides chain-based approaches for multi-label and multi-output problems,
//! including ClassifierChain, RegressorChain, EnsembleOfChains, and BayesianClassifierChain.
#![allow(non_snake_case)] // Standard ML notation: X for feature matrices, K for kernels

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

/// Classifier Chain
///
/// A multi-label model that arranges binary classifiers into a chain.
/// Each model makes a prediction in the order specified by the chain using
/// all of the available features provided to the model plus the predictions
/// of models that are earlier in the chain.
///
/// # Examples
///
/// ```
/// use sklears_multioutput::chains::ClassifierChain;
/// // Use SciRS2-Core for arrays and random number generation (SciRS2 Policy)
/// use scirs2_core::ndarray::array;
///
/// // This is a simple example showing the structure
/// let data = array![[1.0, 2.0], [2.0, 3.0], [3.0, 1.0]];
/// let labels = array![[0, 1], [1, 0], [1, 1]];
/// ```
#[derive(Debug, Clone)]
pub struct ClassifierChain<S = Untrained> {
    state: S,
    order: Option<Vec<usize>>,
    cv: Option<usize>,
    random_state: Option<u64>,
}

impl ClassifierChain<Untrained> {
    /// Create a new ClassifierChain instance
    pub fn new() -> Self {
        Self {
            state: Untrained,
            order: None,
            cv: None,
            random_state: None,
        }
    }

    /// Set the chain order
    pub fn order(mut self, order: Vec<usize>) -> Self {
        self.order = Some(order);
        self
    }

    /// Set cross-validation folds for training
    pub fn cv(mut self, cv: usize) -> Self {
        self.cv = Some(cv);
        self
    }

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

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

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

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

impl ClassifierChain<Untrained> {
    /// Fit the classifier chain using a simple mock approach
    pub fn fit_simple(
        self,
        X: &ArrayView2<'_, Float>,
        y: &Array2<i32>,
    ) -> SklResult<ClassifierChain<ClassifierChainTrained>> {
        let (n_samples, n_features) = X.dim();
        let n_labels = y.ncols();

        if n_samples != y.nrows() {
            return Err(SklearsError::InvalidInput(
                "X and y must have the same number of samples".to_string(),
            ));
        }

        // Determine chain order
        let order = self
            .order
            .clone()
            .unwrap_or_else(|| (0..n_labels).collect());

        if order.len() != n_labels {
            return Err(SklearsError::InvalidInput(
                "Chain order must contain all label indices".to_string(),
            ));
        }

        // Train models in the chain
        let mut models = Vec::new();
        let mut current_features = X.to_owned();

        for (i, &label_idx) in order.iter().enumerate() {
            let y_binary = y.column(label_idx).to_owned();

            // Train binary classifier
            let model = train_binary_classifier(&current_features.view(), &y_binary)?;
            models.push(model);

            // Add predictions as features for next model (except for the last one)
            if i < order.len() - 1 {
                let predictions = predict_binary_classifier(&current_features.view(), &models[i]);
                let n_current_features = current_features.ncols();
                let mut new_features = Array2::<Float>::zeros((n_samples, n_current_features + 1));

                // Copy existing features
                new_features
                    .slice_mut(s![.., ..n_current_features])
                    .assign(&current_features);

                // Add predictions as new feature
                for j in 0..n_samples {
                    new_features[[j, n_current_features]] = predictions[j] as Float;
                }

                current_features = new_features;
            }
        }

        let trained_state = ClassifierChainTrained {
            models,
            order,
            n_features,
            n_labels,
        };

        Ok(ClassifierChain {
            state: trained_state,
            order: self.order,
            cv: self.cv,
            random_state: self.random_state,
        })
    }
}

impl Fit<ArrayView2<'_, Float>, Array2<i32>, ClassifierChainTrained>
    for ClassifierChain<Untrained>
{
    type Fitted = ClassifierChain<ClassifierChainTrained>;

    fn fit(self, X: &ArrayView2<'_, Float>, y: &Array2<i32>) -> SklResult<Self::Fitted> {
        self.fit_simple(X, y)
    }
}

/// Trained state for ClassifierChain
#[derive(Debug, Clone)]
pub struct ClassifierChainTrained {
    models: Vec<SimpleBinaryModel>,
    order: Vec<usize>,
    n_features: usize,
    n_labels: usize,
}

impl Predict<ArrayView2<'_, Float>, Array2<i32>> for ClassifierChain<ClassifierChainTrained> {
    fn predict(&self, X: &ArrayView2<'_, Float>) -> SklResult<Array2<i32>> {
        let (n_samples, n_features) = X.dim();
        if n_features != self.state.n_features {
            return Err(SklearsError::InvalidInput(
                "X has different number of features than training data".to_string(),
            ));
        }

        let mut predictions = Array2::<i32>::zeros((n_samples, self.state.n_labels));
        let mut current_features = X.to_owned();

        // Make predictions following the chain order
        for (i, &label_idx) in self.state.order.iter().enumerate() {
            let model = &self.state.models[i];
            let label_predictions = predict_binary_classifier(&current_features.view(), model);

            // Store predictions
            for j in 0..n_samples {
                predictions[[j, label_idx]] = label_predictions[j];
            }

            // Add predictions as features for next model (if not last)
            if i < self.state.order.len() - 1 {
                let n_current_features = current_features.ncols();
                let mut new_features = Array2::<Float>::zeros((n_samples, n_current_features + 1));

                // Copy existing features
                new_features
                    .slice_mut(s![.., ..n_current_features])
                    .assign(&current_features);

                // Add current label predictions as feature
                for j in 0..n_samples {
                    new_features[[j, n_current_features]] = label_predictions[j] as Float;
                }

                current_features = new_features;
            }
        }

        Ok(predictions)
    }
}

impl ClassifierChain<ClassifierChainTrained> {
    /// Predict probabilities for each label
    pub fn predict_proba(&self, X: &ArrayView2<'_, Float>) -> SklResult<Array2<Float>> {
        let (n_samples, n_features) = X.dim();
        if n_features != self.state.n_features {
            return Err(SklearsError::InvalidInput(
                "X has different number of features than training data".to_string(),
            ));
        }

        let mut probabilities = Array2::<Float>::zeros((n_samples, self.state.n_labels));
        let mut current_features = X.to_owned();

        // Make probability predictions following the chain order
        for (i, &label_idx) in self.state.order.iter().enumerate() {
            let model = &self.state.models[i];
            let label_probabilities = predict_binary_probabilities(&current_features.view(), model);

            // Store probabilities
            for j in 0..n_samples {
                probabilities[[j, label_idx]] = label_probabilities[j];
            }

            // Add predictions as features for next model (if not last)
            if i < self.state.order.len() - 1 {
                let label_predictions =
                    label_probabilities.mapv(|p| if p > 0.5 { 1.0 } else { 0.0 });
                let n_current_features = current_features.ncols();
                let mut new_features = Array2::<Float>::zeros((n_samples, n_current_features + 1));

                // Copy existing features
                new_features
                    .slice_mut(s![.., ..n_current_features])
                    .assign(&current_features);

                // Add predictions as feature
                for j in 0..n_samples {
                    new_features[[j, n_current_features]] = label_predictions[j];
                }

                current_features = new_features;
            }
        }

        Ok(probabilities)
    }

    /// Get the chain order used during training
    pub fn chain_order(&self) -> &[usize] {
        &self.state.order
    }

    /// Get the number of models in the chain
    pub fn n_models(&self) -> usize {
        self.state.models.len()
    }

    /// Get number of targets/labels
    pub fn n_targets(&self) -> usize {
        self.state.n_labels
    }

    /// Simple prediction method (alias for predict)
    pub fn predict_simple(&self, X: &ArrayView2<'_, Float>) -> SklResult<Array2<i32>> {
        self.predict(X)
    }

    /// Monte Carlo prediction (simplified)
    pub fn predict_monte_carlo(
        &self,
        X: &ArrayView2<'_, Float>,
        n_samples: usize,
        _random_state: Option<u64>,
    ) -> SklResult<Array2<Float>> {
        if n_samples == 0 {
            return Err(SklearsError::InvalidInput(
                "n_samples must be greater than 0".to_string(),
            ));
        }
        // For now, just return probabilities
        self.predict_proba(X)
    }

    /// Monte Carlo prediction for labels (simplified)
    pub fn predict_monte_carlo_labels(
        &self,
        X: &ArrayView2<'_, Float>,
        n_samples: usize,
        _random_state: Option<u64>,
    ) -> SklResult<Array2<i32>> {
        if n_samples == 0 {
            return Err(SklearsError::InvalidInput(
                "n_samples must be greater than 0".to_string(),
            ));
        }
        // For now, just return predictions
        self.predict(X)
    }
}

/// Regressor Chain
///
/// A multi-output model that arranges regressors into a chain.
/// Each model makes a prediction in the order specified by the chain using
/// all of the available features provided to the model plus the predictions
/// of models that are earlier in the chain.
///
/// # Examples
///
/// ```
/// use sklears_multioutput::chains::RegressorChain;
/// // Use SciRS2-Core for arrays and random number generation (SciRS2 Policy)
/// use scirs2_core::ndarray::array;
///
/// // This is a simple example showing the structure
/// let data = array![[1.0, 2.0], [2.0, 3.0], [3.0, 1.0]];
/// let targets = array![[1.5, 2.5], [2.5, 3.5], [3.5, 1.5]];
/// ```
#[derive(Debug, Clone)]
pub struct RegressorChain<S = Untrained> {
    state: S,
    order: Option<Vec<usize>>,
    cv: Option<usize>,
    random_state: Option<u64>,
}

impl RegressorChain<Untrained> {
    /// Create a new RegressorChain instance
    pub fn new() -> Self {
        Self {
            state: Untrained,
            order: None,
            cv: None,
            random_state: None,
        }
    }

    /// Set the chain order
    pub fn order(mut self, order: Vec<usize>) -> Self {
        self.order = Some(order);
        self
    }

    /// Set cross-validation folds for training
    pub fn cv(mut self, cv: usize) -> Self {
        self.cv = Some(cv);
        self
    }

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

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

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

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

impl RegressorChain<Untrained> {
    /// Fit the regressor chain using a simple linear approach
    pub fn fit_simple(
        self,
        X: &ArrayView2<'_, Float>,
        y: &Array2<Float>,
    ) -> SklResult<RegressorChain<RegressorChainTrained>> {
        let (n_samples, n_features) = X.dim();
        let n_targets = y.ncols();

        if n_samples != y.nrows() {
            return Err(SklearsError::InvalidInput(
                "X and y must have the same number of samples".to_string(),
            ));
        }

        // Determine chain order
        let order = self
            .order
            .clone()
            .unwrap_or_else(|| (0..n_targets).collect());

        if order.len() != n_targets {
            return Err(SklearsError::InvalidInput(
                "Chain order must contain all target indices".to_string(),
            ));
        }

        // Train models in the chain
        let mut models = Vec::new();
        let mut current_features = X.to_owned();

        for (i, &target_idx) in order.iter().enumerate() {
            let y_target = y.column(target_idx).to_owned();

            // Train linear regressor
            let model = train_simple_linear_classifier(&current_features.view(), &y_target)?;
            models.push(model);

            // Add predictions as features for next model (except for the last one)
            if i < order.len() - 1 {
                let predictions = predict_simple_linear(&current_features.view(), &models[i]);
                let n_current_features = current_features.ncols();
                let mut new_features = Array2::<Float>::zeros((n_samples, n_current_features + 1));

                // Copy existing features
                new_features
                    .slice_mut(s![.., ..n_current_features])
                    .assign(&current_features);

                // Add predictions as new feature
                for j in 0..n_samples {
                    new_features[[j, n_current_features]] = predictions[j];
                }

                current_features = new_features;
            }
        }

        let trained_state = RegressorChainTrained {
            models,
            order,
            n_features,
            n_targets,
        };

        Ok(RegressorChain {
            state: trained_state,
            order: self.order,
            cv: self.cv,
            random_state: self.random_state,
        })
    }
}

impl Fit<ArrayView2<'_, Float>, Array2<Float>, RegressorChainTrained>
    for RegressorChain<Untrained>
{
    type Fitted = RegressorChain<RegressorChainTrained>;

    fn fit(self, X: &ArrayView2<'_, Float>, y: &Array2<Float>) -> SklResult<Self::Fitted> {
        self.fit_simple(X, y)
    }
}

/// Trained state for RegressorChain
#[derive(Debug, Clone)]
pub struct RegressorChainTrained {
    models: Vec<SimpleLinearClassifier>,
    order: Vec<usize>,
    n_features: usize,
    n_targets: usize,
}

impl Predict<ArrayView2<'_, Float>, Array2<Float>> for RegressorChain<RegressorChainTrained> {
    fn predict(&self, X: &ArrayView2<'_, Float>) -> SklResult<Array2<Float>> {
        let (n_samples, n_features) = X.dim();
        if n_features != self.state.n_features {
            return Err(SklearsError::InvalidInput(
                "X has different number of features than training data".to_string(),
            ));
        }

        let mut predictions = Array2::<Float>::zeros((n_samples, self.state.n_targets));
        let mut current_features = X.to_owned();

        // Make predictions following the chain order
        for (i, &target_idx) in self.state.order.iter().enumerate() {
            let model = &self.state.models[i];
            let target_predictions = predict_simple_linear(&current_features.view(), model);

            // Store predictions
            for j in 0..n_samples {
                predictions[[j, target_idx]] = target_predictions[j];
            }

            // Add predictions as features for next model (if not last)
            if i < self.state.order.len() - 1 {
                let n_current_features = current_features.ncols();
                let mut new_features = Array2::<Float>::zeros((n_samples, n_current_features + 1));

                // Copy existing features
                new_features
                    .slice_mut(s![.., ..n_current_features])
                    .assign(&current_features);

                // Add current target predictions as feature
                for j in 0..n_samples {
                    new_features[[j, n_current_features]] = target_predictions[j];
                }

                current_features = new_features;
            }
        }

        Ok(predictions)
    }
}

impl RegressorChain<RegressorChainTrained> {
    /// Get the chain order used during training
    pub fn chain_order(&self) -> &[usize] {
        &self.state.order
    }

    /// Get the number of models in the chain
    pub fn n_models(&self) -> usize {
        self.state.models.len()
    }

    /// Get model at specified index
    pub fn get_model(&self, index: usize) -> Option<&SimpleLinearClassifier> {
        self.state.models.get(index)
    }

    /// Get the number of targets
    pub fn n_targets(&self) -> usize {
        self.state.n_targets
    }

    /// Simple prediction method (alias for predict)
    pub fn predict_simple(&self, X: &ArrayView2<'_, Float>) -> SklResult<Array2<Float>> {
        self.predict(X)
    }
}

/// Ensemble of Chains
///
/// An ensemble approach that combines multiple ClassifierChain models
/// with different chain orders or different random seeds to improve
/// prediction performance and robustness.
///
/// # Examples
///
/// ```
/// use sklears_multioutput::chains::EnsembleOfChains;
/// // Use SciRS2-Core for arrays and random number generation (SciRS2 Policy)
/// use scirs2_core::ndarray::array;
///
/// // This is a simple example showing the structure
/// let data = array![[1.0, 2.0], [2.0, 3.0], [3.0, 1.0]];
/// let labels = array![[0, 1], [1, 0], [1, 1]];
/// ```
#[derive(Debug, Clone)]
pub struct EnsembleOfChains<S = Untrained> {
    state: S,
    n_chains: usize,
    chain_method: ChainMethod,
    random_state: Option<u64>,
}

/// Method for generating chains in ensemble
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum ChainMethod {
    /// Random chain orders
    Random,
    /// Fixed different orders
    Fixed,
    /// Bootstrap sampling with chains
    Bootstrap,
}

impl EnsembleOfChains<Untrained> {
    /// Create a new EnsembleOfChains instance
    pub fn new() -> Self {
        Self {
            state: Untrained,
            n_chains: 10,
            chain_method: ChainMethod::Random,
            random_state: None,
        }
    }

    /// Set number of chains in ensemble
    pub fn n_chains(mut self, n_chains: usize) -> Self {
        self.n_chains = n_chains;
        self
    }

    /// Set chain generation method
    pub fn chain_method(mut self, method: ChainMethod) -> Self {
        self.chain_method = method;
        self
    }

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

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

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

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

impl EnsembleOfChains<Untrained> {
    /// Fit the ensemble of chains
    pub fn fit_simple(
        self,
        X: &ArrayView2<'_, Float>,
        y: &Array2<i32>,
    ) -> SklResult<EnsembleOfChains<EnsembleOfChainsTrained>> {
        let (n_samples, n_features) = X.dim();
        let n_labels = y.ncols();

        if n_samples != y.nrows() {
            return Err(SklearsError::InvalidInput(
                "X and y must have the same number of samples".to_string(),
            ));
        }

        let mut chains = Vec::new();
        let mut rng_state = self.random_state.unwrap_or(42);

        for i in 0..self.n_chains {
            // Generate chain order based on method
            let chain_order = match self.chain_method {
                ChainMethod::Random => {
                    let mut order: Vec<usize> = (0..n_labels).collect();
                    // Simple shuffle using deterministic random
                    for j in (1..order.len()).rev() {
                        rng_state = rng_state.wrapping_mul(1664525).wrapping_add(1013904223);
                        let k = (rng_state as usize) % (j + 1);
                        order.swap(j, k);
                    }
                    order
                }
                ChainMethod::Fixed => {
                    // Create different fixed orders
                    let mut order: Vec<usize> = (0..n_labels).collect();
                    order.rotate_left(i % n_labels);
                    order
                }
                ChainMethod::Bootstrap => {
                    // For bootstrap, use random order and later bootstrap samples
                    let mut order: Vec<usize> = (0..n_labels).collect();
                    for j in (1..order.len()).rev() {
                        rng_state = rng_state.wrapping_mul(1664525).wrapping_add(1013904223);
                        let k = (rng_state as usize) % (j + 1);
                        order.swap(j, k);
                    }
                    order
                }
            };

            // Create and train individual chain
            let chain = ClassifierChain::new()
                .order(chain_order)
                .random_state(rng_state);

            let trained_chain = chain.fit_simple(X, y)?;
            chains.push(trained_chain);

            rng_state = rng_state.wrapping_add(1);
        }

        let trained_state = EnsembleOfChainsTrained {
            chains,
            n_features,
            n_labels,
        };

        Ok(EnsembleOfChains {
            state: trained_state,
            n_chains: self.n_chains,
            chain_method: self.chain_method,
            random_state: self.random_state,
        })
    }
}

impl Fit<ArrayView2<'_, Float>, Array2<i32>, EnsembleOfChainsTrained>
    for EnsembleOfChains<Untrained>
{
    type Fitted = EnsembleOfChains<EnsembleOfChainsTrained>;

    fn fit(self, X: &ArrayView2<'_, Float>, y: &Array2<i32>) -> SklResult<Self::Fitted> {
        self.fit_simple(X, y)
    }
}

/// Trained state for EnsembleOfChains
#[derive(Debug, Clone)]
pub struct EnsembleOfChainsTrained {
    chains: Vec<ClassifierChain<ClassifierChainTrained>>,
    n_features: usize,
    n_labels: usize,
}

impl Predict<ArrayView2<'_, Float>, Array2<i32>> for EnsembleOfChains<EnsembleOfChainsTrained> {
    fn predict(&self, X: &ArrayView2<'_, Float>) -> SklResult<Array2<i32>> {
        let (n_samples, n_features) = X.dim();
        if n_features != self.state.n_features {
            return Err(SklearsError::InvalidInput(
                "X has different number of features than training data".to_string(),
            ));
        }

        // Collect predictions from all chains
        let mut all_predictions = Vec::new();
        for chain in &self.state.chains {
            let predictions = chain.predict(X)?;
            all_predictions.push(predictions);
        }

        // Ensemble predictions by majority voting
        let mut final_predictions = Array2::<i32>::zeros((n_samples, self.state.n_labels));

        for i in 0..n_samples {
            for j in 0..self.state.n_labels {
                let mut votes = 0;
                for predictions in &all_predictions {
                    votes += predictions[[i, j]];
                }
                // Majority vote
                final_predictions[[i, j]] = if votes > (self.state.chains.len() as i32) / 2 {
                    1
                } else {
                    0
                };
            }
        }

        Ok(final_predictions)
    }
}

impl EnsembleOfChains<EnsembleOfChainsTrained> {
    /// Predict probabilities using ensemble voting
    pub fn predict_proba(&self, X: &ArrayView2<'_, Float>) -> SklResult<Array2<Float>> {
        let (n_samples, n_features) = X.dim();
        if n_features != self.state.n_features {
            return Err(SklearsError::InvalidInput(
                "X has different number of features than training data".to_string(),
            ));
        }

        // Collect probability predictions from all chains
        let mut all_probabilities = Vec::new();
        for chain in &self.state.chains {
            let probabilities = chain.predict_proba(X)?;
            all_probabilities.push(probabilities);
        }

        // Average probabilities across chains
        let mut final_probabilities = Array2::<Float>::zeros((n_samples, self.state.n_labels));

        for i in 0..n_samples {
            for j in 0..self.state.n_labels {
                let mut prob_sum = 0.0;
                for probabilities in &all_probabilities {
                    prob_sum += probabilities[[i, j]];
                }
                final_probabilities[[i, j]] = prob_sum / self.state.chains.len() as Float;
            }
        }

        Ok(final_probabilities)
    }

    /// Get number of chains in ensemble
    pub fn n_chains(&self) -> usize {
        self.state.chains.len()
    }

    /// Get individual chain at specified index
    pub fn get_chain(&self, index: usize) -> Option<&ClassifierChain<ClassifierChainTrained>> {
        self.state.chains.get(index)
    }

    /// Get diversity measure between chains
    pub fn chain_diversity(&self) -> Float {
        if self.state.chains.len() < 2 {
            return 0.0;
        }

        let mut diversity_sum = 0.0;
        let mut count = 0;

        // Compare chain orders pairwise
        for i in 0..self.state.chains.len() {
            for j in (i + 1)..self.state.chains.len() {
                let order1 = self.state.chains[i].chain_order();
                let order2 = self.state.chains[j].chain_order();

                // Calculate order similarity (Kendall's tau-like measure)
                let mut agreements = 0;
                for k in 0..order1.len() {
                    if order1[k] == order2[k] {
                        agreements += 1;
                    }
                }

                let similarity = agreements as Float / order1.len() as Float;
                diversity_sum += 1.0 - similarity;
                count += 1;
            }
        }

        if count > 0 {
            diversity_sum / count as Float
        } else {
            0.0
        }
    }

    /// Get the number of targets
    pub fn n_targets(&self) -> usize {
        self.state.n_labels
    }

    /// Simple prediction method (alias for predict)
    pub fn predict_simple(&self, X: &ArrayView2<'_, Float>) -> SklResult<Array2<i32>> {
        self.predict(X)
    }

    /// Simple probability prediction method (alias for predict_proba)
    pub fn predict_proba_simple(&self, X: &ArrayView2<'_, Float>) -> SklResult<Array2<Float>> {
        self.predict_proba(X)
    }
}

/// Bayesian Classifier Chain
///
/// A probabilistic variant of classifier chain that uses Bayesian inference
/// for the binary classifiers, providing uncertainty quantification alongside
/// predictions.
///
/// # Examples
///
/// ```
/// use sklears_multioutput::chains::BayesianClassifierChain;
/// // Use SciRS2-Core for arrays and random number generation (SciRS2 Policy)
/// use scirs2_core::ndarray::array;
///
/// // This is a simple example showing the structure
/// let data = array![[1.0, 2.0], [2.0, 3.0], [3.0, 1.0]];
/// let labels = array![[0, 1], [1, 0], [1, 1]];
/// let model = BayesianClassifierChain::new()
///     .n_samples(100)
///     .prior_strength(1.0);
/// ```
#[derive(Debug, Clone)]
pub struct BayesianClassifierChain<S = Untrained> {
    state: S,
    /// order
    pub order: Option<Vec<usize>>,
    /// n_samples
    pub n_samples: usize,
    /// prior_strength
    pub prior_strength: Float,
    /// random_state
    pub random_state: Option<u64>,
}

impl BayesianClassifierChain<Untrained> {
    /// Create a new BayesianClassifierChain instance
    pub fn new() -> Self {
        Self {
            state: Untrained,
            order: None,
            n_samples: 100,
            prior_strength: 1.0,
            random_state: None,
        }
    }

    /// Set the chain order
    pub fn order(mut self, order: Vec<usize>) -> Self {
        self.order = Some(order);
        self
    }

    /// Set number of posterior samples
    pub fn n_samples(mut self, n_samples: usize) -> Self {
        self.n_samples = n_samples;
        self
    }

    /// Set prior strength (regularization parameter)
    pub fn prior_strength(mut self, prior_strength: Float) -> Self {
        self.prior_strength = prior_strength;
        self
    }

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

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

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

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

impl BayesianClassifierChain<Untrained> {
    /// Fit the Bayesian classifier chain
    #[allow(non_snake_case)]
    pub fn fit_simple(
        self,
        X: &ArrayView2<'_, Float>,
        y: &Array2<i32>,
    ) -> SklResult<BayesianClassifierChain<BayesianClassifierChainTrained>> {
        let (n_samples, n_features) = X.dim();
        let n_labels = y.ncols();

        if n_samples != y.nrows() {
            return Err(SklearsError::InvalidInput(
                "X and y must have the same number of samples".to_string(),
            ));
        }

        // Validate binary labels
        for &val in y.iter() {
            if val != 0 && val != 1 {
                return Err(SklearsError::InvalidInput(
                    "y must contain only binary values (0 or 1)".to_string(),
                ));
            }
        }

        // Determine chain order
        let order = self
            .order
            .clone()
            .unwrap_or_else(|| (0..n_labels).collect());

        if order.len() != n_labels {
            return Err(SklearsError::InvalidInput(
                "Chain order must contain all label indices".to_string(),
            ));
        }

        // Standardize features
        let feature_means = X
            .mean_axis(Axis(0))
            .expect("array should have elements for mean computation");
        let feature_stds = X.std_axis(Axis(0), 0.0);
        let X_standardized = standardize_features_simple(X, &feature_means, &feature_stds);

        // Train Bayesian models in the chain
        let mut bayesian_models = Vec::new();
        let mut current_features = X_standardized;

        for (i, &label_idx) in order.iter().enumerate() {
            let y_binary = y.column(label_idx).to_owned();

            // Train Bayesian binary classifier
            let model = train_bayesian_binary_classifier(
                &current_features,
                &y_binary,
                self.prior_strength,
            )?;
            bayesian_models.push(model);

            // Add predictions as features for next model (except for the last one)
            if i < order.len() - 1 {
                let predictions =
                    predict_bayesian_mean(&current_features.view(), &bayesian_models[i]);
                let n_current_features = current_features.ncols();
                let mut new_features = Array2::<Float>::zeros((n_samples, n_current_features + 1));

                // Copy existing features
                new_features
                    .slice_mut(s![.., ..n_current_features])
                    .assign(&current_features);

                // Add predictions as new feature
                for j in 0..n_samples {
                    new_features[[j, n_current_features]] = predictions[j];
                }

                current_features = new_features;
            }
        }

        let trained_state = BayesianClassifierChainTrained {
            bayesian_models,
            order,
            n_features,
            n_labels,
            feature_means,
            feature_stds,
        };

        Ok(BayesianClassifierChain {
            state: trained_state,
            order: None,
            n_samples: self.n_samples,
            prior_strength: self.prior_strength,
            random_state: self.random_state,
        })
    }
}

impl Fit<ArrayView2<'_, Float>, Array2<i32>, BayesianClassifierChainTrained>
    for BayesianClassifierChain<Untrained>
{
    type Fitted = BayesianClassifierChain<BayesianClassifierChainTrained>;

    fn fit(self, X: &ArrayView2<'_, Float>, y: &Array2<i32>) -> SklResult<Self::Fitted> {
        self.fit_simple(X, y)
    }
}

/// Trained state for Bayesian Classifier Chain
#[derive(Debug, Clone)]
pub struct BayesianClassifierChainTrained {
    bayesian_models: Vec<BayesianBinaryModel>,
    order: Vec<usize>,
    #[allow(dead_code)]
    n_features: usize,
    n_labels: usize,
    feature_means: Array1<Float>,
    feature_stds: Array1<Float>,
}

impl Predict<ArrayView2<'_, Float>, Array2<i32>>
    for BayesianClassifierChain<BayesianClassifierChainTrained>
{
    #[allow(non_snake_case)]
    fn predict(&self, X: &ArrayView2<'_, Float>) -> SklResult<Array2<i32>> {
        let (n_samples, n_features) = X.dim();
        if n_features != self.state.feature_means.len() {
            return Err(SklearsError::InvalidInput(
                "X has different number of features than training data".to_string(),
            ));
        }

        // Standardize features
        let X_standardized =
            standardize_features_simple(X, &self.state.feature_means, &self.state.feature_stds);

        let mut predictions = Array2::<i32>::zeros((n_samples, self.state.n_labels));
        let mut current_features = X_standardized;

        // Make predictions following the chain order
        for (chain_pos, &label_idx) in self.state.order.iter().enumerate() {
            let model = &self.state.bayesian_models[chain_pos];

            // Sample from posterior distribution and make predictions
            let label_predictions = predict_bayesian_binary(&current_features.view(), model);

            // Convert probabilities to binary predictions
            for i in 0..n_samples {
                predictions[[i, label_idx]] = if label_predictions[i] > 0.5 { 1 } else { 0 };
            }

            // Add predictions as features for next model (if not last)
            if chain_pos < self.state.order.len() - 1 {
                let mut new_features =
                    Array2::<Float>::zeros((n_samples, current_features.ncols() + 1));

                // Copy existing features
                new_features
                    .slice_mut(s![.., ..current_features.ncols()])
                    .assign(&current_features);

                // Add current label predictions as feature
                for i in 0..n_samples {
                    new_features[[i, current_features.ncols()]] =
                        predictions[[i, label_idx]] as Float;
                }

                current_features = new_features;
            }
        }

        Ok(predictions)
    }
}

impl BayesianClassifierChain<BayesianClassifierChainTrained> {
    /// Predict with uncertainty quantification
    #[allow(non_snake_case)]
    pub fn predict_uncertainty(&self, X: &ArrayView2<'_, Float>) -> SklResult<Array2<Float>> {
        let (n_samples, n_features) = X.dim();
        if n_features != self.state.feature_means.len() {
            return Err(SklearsError::InvalidInput(
                "X has different number of features than training data".to_string(),
            ));
        }

        // Standardize features
        let X_standardized =
            standardize_features_simple(X, &self.state.feature_means, &self.state.feature_stds);

        let mut uncertainties = Array2::<Float>::zeros((n_samples, self.state.n_labels));
        let mut current_features = X_standardized;

        // Make predictions following the chain order with uncertainty estimation
        for (chain_pos, &label_idx) in self.state.order.iter().enumerate() {
            let model = &self.state.bayesian_models[chain_pos];

            // Get uncertainty estimates
            let (means, variances) = predict_bayesian_uncertainty(&current_features.view(), model)?;

            // Store uncertainties
            for i in 0..n_samples {
                uncertainties[[i, label_idx]] = variances[i];
            }

            // For chaining, use mean predictions as features
            if chain_pos < self.state.order.len() - 1 {
                let mut new_features =
                    Array2::<Float>::zeros((n_samples, current_features.ncols() + 1));

                // Copy existing features
                new_features
                    .slice_mut(s![.., ..current_features.ncols()])
                    .assign(&current_features);

                // Add mean predictions as feature
                for i in 0..n_samples {
                    new_features[[i, current_features.ncols()]] = means[i];
                }

                current_features = new_features;
            }
        }

        Ok(uncertainties)
    }

    /// Predict probabilities with Bayesian averaging
    #[allow(non_snake_case)]
    pub fn predict_proba(&self, X: &ArrayView2<'_, Float>) -> SklResult<Array2<Float>> {
        let (n_samples, n_features) = X.dim();
        if n_features != self.state.feature_means.len() {
            return Err(SklearsError::InvalidInput(
                "X has different number of features than training data".to_string(),
            ));
        }

        // Standardize features
        let X_standardized =
            standardize_features_simple(X, &self.state.feature_means, &self.state.feature_stds);

        let mut probabilities = Array2::<Float>::zeros((n_samples, self.state.n_labels));
        let mut current_features = X_standardized;

        // Make probability predictions following the chain order
        for (chain_pos, &label_idx) in self.state.order.iter().enumerate() {
            let model = &self.state.bayesian_models[chain_pos];

            // Get probability predictions
            let label_probabilities = predict_bayesian_binary(&current_features.view(), model);

            // Store probabilities
            for i in 0..n_samples {
                probabilities[[i, label_idx]] = label_probabilities[i];
            }

            // Add mean predictions as features for next model (if not last)
            if chain_pos < self.state.order.len() - 1 {
                let mut new_features =
                    Array2::<Float>::zeros((n_samples, current_features.ncols() + 1));

                // Copy existing features
                new_features
                    .slice_mut(s![.., ..current_features.ncols()])
                    .assign(&current_features);

                // Add mean predictions as feature
                for i in 0..n_samples {
                    new_features[[i, current_features.ncols()]] = label_probabilities[i];
                }

                current_features = new_features;
            }
        }

        Ok(probabilities)
    }

    /// Get the chain order used during training
    pub fn chain_order(&self) -> &[usize] {
        &self.state.order
    }

    /// Get number of Bayesian models in the chain
    pub fn n_models(&self) -> usize {
        self.state.bayesian_models.len()
    }

    /// Get posterior statistics for a specific model in the chain
    pub fn model_posterior_stats(
        &self,
        model_idx: usize,
    ) -> Option<(&Array1<Float>, &Array2<Float>)> {
        self.state
            .bayesian_models
            .get(model_idx)
            .map(|model| (&model.weight_mean, &model.weight_cov))
    }

    /// Get the chain order used during training
    pub fn order(&self) -> &[usize] {
        &self.state.order
    }
}

// Chain-specific utility functions

/// Helper function to predict binary classification
fn predict_binary_classifier(X: &ArrayView2<Float>, model: &SimpleBinaryModel) -> Array1<i32> {
    let raw_scores = X.dot(&model.weights) + model.bias;
    raw_scores.mapv(|x| if x > 0.0 { 1 } else { 0 })
}