1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
//! Streaming machine learning in Rust.
//!
//! irithyll is a streaming ML library for the case where data arrives in order
//! and never stops. There is no training set. There is no batch loop. Every
//! sample updates the model and is then released -- no buffer, no replay.
//!
//! All models implement [`StreamingLearner`], a two-method contract:
//! `train_one(features, target, weight)` and `predict(features) -> f64`. A
//! `Box<dyn StreamingLearner>` is a fully typed model. Anything that
//! implements the trait slots into a pipeline, an MoE expert, an AutoML
//! candidate, a projection wrapper, or a classification head.
//!
//! # Model Survey
//!
//! **Gradient-boosted trees** -- [`SGBT`] is the flagship: sequential gradient
//! boosting over streaming Hoeffding trees with automatic drift replacement
//! ([Gunasekara et al., 2024](https://doi.org/10.1007/s10994-024-06517-y)).
//! Variants: [`BaggedSGBT`], [`DistributionalSGBT`], [`MulticlassSGBT`],
//! [`QuantileRegressorSGBT`], [`MultiTargetSGBT`], [`AdaptiveRandomForest`],
//! [`ParallelSGBT`] (requires `parallel` feature).
//!
//! **Linear and kernel models** -- [`RecursiveLeastSquares`] with prediction
//! intervals, [`StreamingLinearModel`] with SGD, [`KRLS`] with RBF /
//! polynomial / linear kernels and ALD sparsification,
//! [`LocallyWeightedRegression`], [`MondrianForest`].
//!
//! **Neural streaming architectures** -- [`StreamingMamba`] (selective SSM,
//! BD-LRU block-diagonal variant), [`StreamingTTT`] (test-time training with
//! Titans-style momentum), [`StreamingKAN`] (Kolmogorov-Arnold networks with
//! B-spline basis), [`StreamingsLSTM`] (exponential-gated stabilized LSTM),
//! [`StreamingMGrade`] (minimal recurrent gating with delay convolutions),
//! [`SpikeNet`] (spiking neural network with e-prop), [`EchoStateNetwork`],
//! [`NextGenRC`], [`LogLinearAttention`] (hierarchical Fenwick state,
//! Han Guo et al., ICLR 2026), [`StreamingAttentionModel`] (GLA,
//! DeltaNet, Hawk, RetNet, RWKV-7 variants), [`NeuralMoE`].
//!
//! **AutoML** -- [`AutoTuner`] races model families under champion-challenger
//! promotion using empirical Bernstein bounds (Maurer & Pontil, 2009) as the
//! statistical gate -- no fixed elimination thresholds. [`AdaptationBus`]
//! composes per-arm adaptation policies (drift reracing, plasticity, meta
//! adaptation) in a Lipschitz-product framework.
//!
//! **Preprocessing and pipelines** -- [`IncrementalNormalizer`], [`CCIPCA`]
//! (O(kd) streaming PCA), [`MinMaxScaler`], [`OneHotEncoder`],
//! [`PolynomialFeatures`], [`FeatureHasher`], [`OnlineFeatureSelector`].
//! Chain with [`Pipeline::builder()`] or the [`pipe`] factory.
//!
//! **Evaluation and drift** -- [`PrequentialEvaluator`],
//! [`AdaptiveConformalInterval`], [`StreamingAUC`], [`EwmaRegressionMetrics`],
//! drift detectors (Page-Hinkley, ADWIN, DDM) via [`DriftDetector`].
//!
//! **Bandits** -- [`EpsilonGreedy`], [`UCB1`], [`UCBTuned`],
//! [`ThompsonSampling`], [`LinUCB`], [`DiscountedThompsonSampling`].
//!
//! **Clustering** -- [`StreamingKMeans`], [`CluStream`], [`DBStream`].
//!
//! **Anomaly detection** -- [`HalfSpaceTree`].
//!
//! **Projection** -- [`ProjectedLearner`] via PAST subspace tracking
//! (Yang, 1995), supervised or PCA mode.
//!
//! # Embedded deployment
//!
//! The companion crate `irithyll-core` is `#![no_std]` and exports trained
//! trees as 12-byte packed nodes ([`PackedNode`]) that traverse branch-free on
//! Cortex-M0+. Train in the cloud, export with [`export_embedded`], deploy on
//! bare metal. The boundary is hard and tested against `thumbv6m-none-eabi`.
//!
//! # Feature Flags
//!
//! | Feature | Default | Description |
//! |---------|---------|-------------|
//! | `serde-json` | Yes | JSON model checkpoint / restore |
//! | `serde-bincode` | No | Bincode serialization (compact, fast) |
//! | `parallel` | No | Rayon-parallel tree training via [`ParallelSGBT`] |
//! | `simd` | No | AVX2 histogram acceleration |
//! | `simd-avx2` | No | Explicit AVX2 SIMD intrinsics |
//! | `kmeans-binning` | No | K-means histogram binning strategy |
//! | `arrow` | No | Apache Arrow `RecordBatch` integration |
//! | `parquet` | No | Parquet file I/O |
//! | `onnx` | No | ONNX model export |
//! | `neural-leaves` | No | Experimental MLP leaf models |
//! | `distill` | No | Knowledge distillation for [`AutoTuner`] racing |
//! | `full` | No | All of the above |
//!
//! # Quick Start
//!
//! The smallest useful pipeline -- normalize, boost, predict:
//!
//! ```no_run
//! use irithyll::{pipe, normalizer, sgbt, StreamingLearner};
//!
//! let mut model = pipe(normalizer()).learner(sgbt(50, 0.01));
//! model.train(&[100.0, 0.5, 42.0], 3.14);
//! let pred = model.predict(&[100.0, 0.5, 42.0]);
//! ```
//!
//! Race three model families against each other -- let the data choose:
//!
//! ```no_run
//! use irithyll::{automl::{AutoTuner, Factory}, StreamingLearner};
//!
//! let mut tuner = AutoTuner::builder()
//! .add_factory(Factory::sgbt(5))
//! .add_factory(Factory::mamba(5))
//! .add_factory(Factory::esn())
//! .build()
//! .unwrap();
//!
//! tuner.train(&[1.0, 2.0, 3.0, 4.0, 5.0], 6.0);
//! let pred = tuner.predict(&[1.0, 2.0, 3.0, 4.0, 5.0]);
//! ```
//!
//! Wrap any regressor for binary classification:
//!
//! ```no_run
//! use irithyll::{sgbt, binary_classifier, StreamingLearner};
//!
//! let mut clf = binary_classifier(sgbt(50, 0.05));
//! clf.train(&[1.5, -0.3, 2.1], 1.0);
//! let label = clf.predict(&[1.5, -0.3, 2.1]);
//! ```
//!
//! For the extended ergonomics guide -- pipeline composition, AutoML
//! tournaments, drift wiring, embedded deployment -- see
//! [`docs/USAGE.md`](https://github.com/evilrat420/irithyll/blob/main/docs/USAGE.md)
//! and [`MODELS.md`](https://github.com/evilrat420/irithyll/blob/main/MODELS.md).
//!
//! # Design Principles
//!
//! **One sample at a time, every time.** No mini-batches hidden inside
//! `train_one`. Architectures that originally required offline training (TTT,
//! KAN, Mamba) are reimplemented with online updates that converge
//! sample-by-sample -- and tested for it.
//!
//! **O(1) memory per model.** State size is a function of the model, not the
//! data seen. Drift detectors are bounded ring buffers; histograms have fixed
//! bin counts; subspace trackers carry rank-k projections, not covariance
//! matrices.
//!
//! **Bounded readouts before linear heads.** Every neural model that feeds a
//! recursive least squares head bounds its features first -- `tanh`, `sigmoid`,
//! L2-normalize, clamp. Unbounded features explode the RLS weights silently.
//!
//! **Every threshold derives from a paper or the data.** Bernstein bounds over
//! fixed elimination thresholds. Information-decay matching over grid-searched
//! half-lives. Magic numbers are technical debt.
/// River-style ergonomic pipeline construction macro.
///
/// Expands a sequence of preprocessors and a terminal learner into the nested
/// `PipelineBuilder::new().pipe(...).pipe(...).learner(...)` form.
///
/// # Syntax
///
/// ```text
/// make_pipeline!(preprocessor => ... => preprocessor => learner)
/// make_pipeline!(learner) // degenerate: no preprocessors
/// ```
///
/// The final (rightmost) argument is the learner; all preceding arguments
/// are preprocessors chained via `.pipe()`.
///
/// # Examples
///
/// ```rust
/// use irithyll::{make_pipeline, normalizer, ccipca, sgbt, StreamingLearner};
///
/// let mut model = make_pipeline!(normalizer() => ccipca(3) => sgbt(50, 0.01));
/// model.train(&[1.0, 2.0, 3.0, 4.0, 5.0], 42.0);
/// let pred = model.predict(&[1.0, 2.0, 3.0, 4.0, 5.0]);
/// assert!(pred.is_finite());
/// ```
///
/// Degenerate case (single learner, no preprocessors):
///
/// ```rust
/// use irithyll::{make_pipeline, sgbt, StreamingLearner};
///
/// let mut model = make_pipeline!(sgbt(50, 0.01));
/// model.train(&[1.0, 2.0], 3.0);
/// let pred = model.predict(&[1.0, 2.0]);
/// assert!(pred.is_finite());
/// ```
// Re-exports -- irithyll-core packed inference
pub use irithyll_core;
pub use ;
// Re-exports -- TurboQuant quantization (8-bit, 3.5-bit, 2.5-bit)
pub use ;
// Re-exports -- SIMD activations
pub use ;
// Re-exports -- core types
pub use ;
pub use ;
pub use AdaptiveSGBT;
pub use BaggedSGBT;
pub use ;
pub use ;
pub use ;
pub use MoEDistributionalSGBT;
pub use MultiTargetSGBT;
pub use MulticlassSGBT;
pub use QuantileRegressorSGBT;
pub use ;
pub use ;
pub use ;
pub use FeatureType;
pub use ;
pub use ;
pub use LeafModelType;
pub use StreamingTree;
// Re-exports -- explainability
pub use ImportanceDriftMonitor;
pub use StreamingShap;
pub use ShapValues;
// Re-exports -- parallel (feature-gated)
pub use ParallelSGBT;
// Re-exports -- async streaming
pub use ;
// Re-exports -- metrics
pub use StreamingAUC;
pub use AdaptiveConformalInterval;
pub use ;
pub use ;
pub use ;
pub use ;
// Re-exports -- StreamingMetric trait and composable instances (Wave 7-2)
pub use ;
// Re-exports -- evaluation
pub use ;
// Re-exports -- clustering
pub use ;
// Re-exports -- classification
pub use AdaptiveRandomForest;
pub use ;
pub use HoeffdingTreeClassifier;
// Re-exports -- anomaly detection
pub use ;
// Re-exports -- streaming learner trait and capability traits
pub use ;
// Re-exports -- continual learning
pub use ContinualLearner;
// Re-exports -- preprocessing & pipeline
pub use ;
pub use ;
// === Wave 7-3 target preprocessor ===
pub use ;
// Re-exports -- learning rate scheduling
pub use LRScheduler;
// Re-exports -- streaming learners
pub use ;
// Re-exports -- time series
pub use ;
// Re-exports -- bandits
pub use ;
// Re-exports -- reservoir computing
pub use ;
// Re-exports -- state space models
pub use ;
// Re-exports -- spiking neural networks
pub use ;
// Re-exports -- test-time training
pub use ;
// Re-exports -- sLSTM (stabilized LSTM with exponential gating)
pub use ;
// Re-exports -- mGRADE (minimal recurrent gating with delay convolutions)
pub use ;
// Re-exports -- Kolmogorov-Arnold Networks
pub use ;
// Re-exports -- streaming linear attention
pub use ;
// Re-exports -- neural moe
pub use ;
// Re-exports -- projection
pub use ;
// Re-exports -- automl
pub use RewardNormalizer;
pub use ;
pub use ;
pub use ;
// AM-15 Knowledge distillation for WelfordRace (default OFF, enable via `distill` feature).
pub use ;
// AdaptationBus — compose-safe per-arm adaptation coordination (AM-12).
pub use ;
// Typed search-space API (v10).
pub use ;
// Empirical Bernstein racing — statistical promotion gate (AM-2).
pub use ;
// Samples × complexity budget accounting (AM-4).
pub use ;
// Top-K champion cohort (AM-5).
pub use ;
// Cross-model MetaLearner trait (AM-11) — per-family declaration consumed by
// the AdaptationBus (AM-12) for Lipschitz-product compose-safety.
pub use ;
// Legacy positional config-space API (deprecated; remove in v11).
pub use ;
// ---------------------------------------------------------------------------
// Convenience factory functions
// ---------------------------------------------------------------------------
/// Create an SGBT learner with squared loss from minimal parameters.
///
/// For full control, use [`SGBTConfig::builder()`] directly.
///
/// ```
/// use irithyll::{sgbt, StreamingLearner};
///
/// let mut model = sgbt(50, 0.01);
/// model.train(&[1.0, 2.0], 3.0);
/// let pred = model.predict(&[1.0, 2.0]);
/// ```
/// Create a streaming linear model with the given learning rate.
///
/// ```
/// use irithyll::{linear, StreamingLearner};
///
/// let mut model = linear(0.01);
/// model.train(&[1.0, 2.0], 3.0);
/// ```
/// Create a recursive least squares model with the given forgetting factor.
///
/// ```
/// use irithyll::{rls, StreamingLearner};
///
/// let mut model = rls(0.99);
/// model.train(&[1.0, 2.0], 3.0);
/// ```
/// Create a Gaussian Naive Bayes classifier.
///
/// ```
/// use irithyll::{gaussian_nb, StreamingLearner};
///
/// let mut model = gaussian_nb();
/// model.train(&[1.0, 2.0], 0.0);
/// ```
/// Create a Mondrian forest with the given number of trees.
///
/// ```
/// use irithyll::{mondrian, StreamingLearner};
///
/// let mut model = mondrian(10);
/// model.train(&[1.0, 2.0], 3.0);
/// ```
/// Create an incremental normalizer for streaming standardization.
///
/// ```
/// use irithyll::{normalizer, StreamingPreprocessor};
///
/// let mut norm = normalizer();
/// let z = norm.update_and_transform(&[10.0, 200.0]);
/// ```
/// Start building a pipeline with the first preprocessor.
///
/// Shorthand for `Pipeline::builder().pipe(preprocessor)`.
///
/// ```
/// use irithyll::{pipe, normalizer, sgbt, StreamingLearner};
///
/// let mut pipeline = pipe(normalizer()).learner(sgbt(10, 0.01));
/// pipeline.train(&[100.0, 0.5], 42.0);
/// let pred = pipeline.predict(&[100.0, 0.5]);
/// ```
/// Create a kernel recursive least squares model with an RBF kernel.
///
/// ```
/// use irithyll::{krls, StreamingLearner};
///
/// let mut model = krls(1.0, 100, 1e-4);
/// model.train(&[1.0], 1.0_f64.sin());
/// ```
/// Create a CCIPCA preprocessor for streaming dimensionality reduction.
///
/// ```
/// use irithyll::{ccipca, StreamingPreprocessor};
///
/// let mut pca = ccipca(3);
/// let reduced = pca.update_and_transform(&[1.0, 2.0, 3.0, 4.0, 5.0]);
/// assert_eq!(reduced.len(), 3);
/// ```
/// Create a feature hasher for fixed-size dimensionality reduction.
///
/// ```
/// use irithyll::{feature_hasher, StreamingPreprocessor};
///
/// let mut h = feature_hasher(32);
/// let hashed = h.update_and_transform(&[1.0, 2.0, 3.0]);
/// assert_eq!(hashed.len(), 32);
/// ```
/// Create a min-max scaler that normalizes features to `[0, 1]`.
///
/// ```
/// use irithyll::{min_max_scaler, StreamingPreprocessor};
///
/// let mut scaler = min_max_scaler();
/// let _ = scaler.update_and_transform(&[10.0, 200.0]);
/// ```
/// Create a one-hot encoder for the given categorical feature indices.
///
/// ```
/// use irithyll::{one_hot, StreamingPreprocessor};
///
/// let mut enc = one_hot(vec![0]); // feature 0 is categorical
/// let encoded = enc.update_and_transform(&[2.0, 3.5]);
/// ```
/// Create a degree-2 polynomial feature generator (interactions + squares).
///
/// ```
/// use irithyll::{polynomial_features, StreamingPreprocessor};
///
/// let poly = polynomial_features();
/// let expanded = poly.transform(&[1.0, 2.0]);
/// assert_eq!(expanded.len(), 5); // [x0, x1, x0*x0, x0*x1, x1*x1]
/// ```
/// Create a target encoder with Bayesian smoothing for categorical features.
///
/// Note: [`TargetEncoder`] does not implement [`StreamingPreprocessor`] because
/// it requires the target value. Use its methods directly.
///
/// ```
/// use irithyll::target_encoder;
///
/// let mut enc = target_encoder(vec![0]); // feature 0 is categorical
/// enc.update(&[1.0, 3.5], 10.0);
/// let encoded = enc.transform(&[1.0, 3.5]);
/// ```
/// Create an adaptive SGBT with a learning rate scheduler.
///
/// ```
/// use irithyll::{adaptive_sgbt, StreamingLearner};
/// use irithyll::ensemble::lr_schedule::ExponentialDecayLR;
///
/// let mut model = adaptive_sgbt(50, 0.1, ExponentialDecayLR::new(0.1, 0.999));
/// model.train(&[1.0, 2.0], 3.0);
/// ```
/// Create an epsilon-greedy bandit with the given number of arms and exploration rate.
///
/// ```
/// use irithyll::{epsilon_greedy, Bandit};
///
/// let mut bandit = epsilon_greedy(3, 0.1);
/// let arm = bandit.select_arm();
/// bandit.update(arm, 1.0);
/// ```
/// Create a UCB1 bandit with the given number of arms.
///
/// ```
/// use irithyll::{ucb1, Bandit};
///
/// let mut bandit = ucb1(3);
/// let arm = bandit.select_arm();
/// bandit.update(arm, 1.0);
/// ```
/// Create a UCB-Tuned bandit with the given number of arms.
///
/// ```
/// use irithyll::{ucb_tuned, Bandit};
///
/// let mut bandit = ucb_tuned(3);
/// let arm = bandit.select_arm();
/// bandit.update(arm, 1.0);
/// ```
/// Create a Thompson Sampling bandit with Beta(1,1) prior.
///
/// Rewards should be in `[0, 1]` (Bernoulli setting).
///
/// ```
/// use irithyll::{thompson, Bandit};
///
/// let mut bandit = thompson(3);
/// let arm = bandit.select_arm();
/// bandit.update(arm, 1.0);
/// ```
/// Create a LinUCB contextual bandit.
///
/// ```
/// use irithyll::{lin_ucb, ContextualBandit};
///
/// let mut bandit = lin_ucb(3, 5, 1.0);
/// let ctx = vec![0.1, 0.2, 0.3, 0.4, 0.5];
/// let arm = bandit.select_arm(&ctx);
/// bandit.update(arm, &ctx, 1.0);
/// ```
/// Create a Next Generation Reservoir Computer.
///
/// ```
/// use irithyll::{ngrc, StreamingLearner};
///
/// let mut model = ngrc(2, 1, 2);
/// model.train(&[1.0], 2.0);
/// model.train(&[2.0], 3.0);
/// model.train(&[3.0], 4.0);
/// let pred = model.predict(&[4.0]);
/// ```
/// Create an Echo State Network with cycle topology.
///
/// ```
/// use irithyll::{esn, StreamingLearner};
///
/// let mut model = esn(50, 0.9);
/// for i in 0..60 {
/// model.train(&[i as f64 * 0.1], 0.0);
/// }
/// let pred = model.predict(&[1.0]);
/// ```
/// Create an ESN preprocessor for pipeline composition.
///
/// ```
/// use irithyll::{esn_preprocessor, pipe, rls, StreamingLearner};
///
/// let mut pipeline = pipe(esn_preprocessor(30, 0.9)).learner(rls(0.998));
/// pipeline.train(&[1.0], 2.0);
/// let pred = pipeline.predict(&[1.5]);
/// ```
/// Create a streaming Mamba (selective SSM) model.
///
/// ```
/// use irithyll::{mamba, StreamingLearner};
///
/// let mut model = mamba(3, 16);
/// model.train(&[1.0, 2.0, 3.0], 4.0);
/// let pred = model.predict(&[1.0, 2.0, 3.0]);
/// ```
/// Create a Mamba preprocessor for pipeline composition.
///
/// ```
/// use irithyll::{mamba_preprocessor, pipe, rls, StreamingLearner};
///
/// let mut pipeline = pipe(mamba_preprocessor(3, 8)).learner(rls(0.99));
/// pipeline.train(&[1.0, 2.0, 3.0], 4.0);
/// let pred = pipeline.predict(&[1.0, 2.0, 3.0]);
/// ```
/// Create a streaming Mamba with BD-LRU block-diagonal recurrence.
///
/// Channels are grouped into blocks of `block_size` with dense cross-channel
/// mixing within each block.
///
/// ```
/// use irithyll::{mamba_bd, StreamingLearner};
///
/// let mut model = mamba_bd(8, 16, 4);
/// model.train(&[0.1; 8], 1.0);
/// let pred = model.predict(&[0.1; 8]);
/// ```
/// Create a spiking neural network with e-prop learning.
///
/// ```
/// use irithyll::{spikenet, StreamingLearner};
///
/// let mut model = spikenet(32);
/// model.train(&[0.5, -0.3], 1.0);
/// let pred = model.predict(&[0.5, -0.3]);
/// ```
/// Create a streaming TTT (Test-Time Training) model.
///
/// The hidden state is a linear model updated by gradient descent at every
/// step. Optional Titans-style momentum and weight decay.
///
/// ```no_run
/// use irithyll::{streaming_ttt, StreamingLearner};
///
/// let mut model = streaming_ttt(16, 0.1);
/// model.train(&[1.0, 2.0], 3.0);
/// let pred = model.predict(&[1.0, 2.0]);
/// ```
/// Create a streaming sLSTM (stabilized LSTM with exponential gating).
///
/// Uses exponential gates with log-domain stabilization for numerically
/// stable long-range memory. RLS readout maps hidden state to predictions.
///
/// ```no_run
/// use irithyll::{streaming_slstm, StreamingLearner};
///
/// let mut model = streaming_slstm(16);
/// model.train(&[1.0, 2.0], 3.0);
/// let pred = model.predict(&[1.0, 2.0]);
/// ```
/// Create a streaming mGRADE (minimal recurrent gating with delay convolutions).
///
/// ```no_run
/// use irithyll::{mgrade, StreamingLearner};
///
/// let mut model = mgrade(3, 16);
/// model.train(&[1.0, 2.0, 3.0], 4.0);
/// let pred = model.predict(&[1.0, 2.0, 3.0]);
/// ```
/// Create a streaming KAN with the given layer sizes and learning rate.
///
/// ```no_run
/// use irithyll::{streaming_kan, StreamingLearner};
///
/// let mut model = streaming_kan(&[3, 10, 1], 0.01);
/// model.train(&[1.0, 2.0, 3.0], 4.0);
/// let pred = model.predict(&[1.0, 2.0, 3.0]);
/// ```
/// Create a Gated Linear Attention model (SOTA streaming attention).
/// Create a Gated DeltaNet model (strongest retrieval, NVIDIA 2024).
/// Create a Hawk model (lightest streaming attention, vector state).
/// Create a RetNet model (simplest, fixed decay).
/// Create a streaming attention model with any mode.
/// Create a Log-Linear Attention model (Han Guo et al., ICLR 2026 — v10 headline).
///
/// Wraps any inner linear-attention rule with an O(log T) hierarchical
/// Fenwick state, bridging linear-attention efficiency and softmax
/// expressivity. State memory is `max_levels * d_k * d_v * n_heads`
/// per layer.
/// Create an auto-tuning streaming learner with default settings.
///
/// Uses champion-challenger racing to automatically tune hyperparameters
/// for the given model factory. The champion always provides predictions
/// while challengers with different configs are evaluated in parallel.
///
/// For full control, use [`AutoTuner::builder()`].
///
/// ```no_run
/// use irithyll::{auto_tune, automl::Factory, StreamingLearner};
///
/// let mut tuner = auto_tune(Factory::sgbt(5));
/// tuner.train(&[1.0, 2.0, 3.0, 4.0, 5.0], 10.0);
/// let pred = tuner.predict(&[1.0, 2.0, 3.0, 4.0, 5.0]);
/// ```
/// Wrap any streaming learner for binary classification.
///
/// The inner model is trained with {0, 1} targets. At prediction time,
/// sigmoid is applied to the raw output and thresholded at 0.5.
///
/// ```
/// use irithyll::{binary_classifier, rls, StreamingLearner};
///
/// let mut clf = binary_classifier(rls(0.99));
/// clf.train(&[1.0, 2.0], 1.0);
/// clf.train(&[-1.0, -2.0], 0.0);
/// let pred = clf.predict(&[1.0, 2.0]);
/// assert!(pred == 0.0 || pred == 1.0);
/// ```
/// Wrap any streaming learner for multiclass classification.
///
/// Creates K independent scalar heads (the inner model as head 0, plus
/// K-1 additional RLS heads). Predictions are softmax-normalized across
/// all heads and the argmax class index is returned.
///
/// # Panics
///
/// Panics if `n_classes < 2`.
///
/// ```
/// use irithyll::{multiclass_classifier, rls, StreamingLearner};
///
/// let mut clf = multiclass_classifier(rls(0.99), 3);
/// for i in 0..60 {
/// clf.train(&[(i % 3) as f64, 1.0], (i % 3) as f64);
/// }
/// let pred = clf.predict(&[1.0, 1.0]);
/// assert!(pred >= 0.0 && pred < 3.0);
/// ```
// === Wave 7-1 wrapper factories ===
//
// Ergonomic factory functions for every wrapper type. Each fn:
// - accepts `impl StreamingLearner + 'static` — no explicit Box::new at call site.
// - delegates directly to the wrapper's own constructor/builder — no re-implementation.
// - returns the concrete wrapper type so callers retain access to its methods.
//
// Naming convention: verb + domain, matching the existing factory catalog
// (`sgbt`, `rls`, `normalizer`, ...).
/// Wrap any streaming learner with drift-detected continual adaptation.
///
/// Uses a Page-Hinkley test (Gama et al., 2013 — prequential evaluation
/// protocol) as the default drift detector. For a different detector, call
/// [`ContinualLearner::new`] + [`ContinualLearner::with_drift_detector`]
/// directly.
///
/// The detector is fed `|prediction - target|` (absolute prequential error) on
/// every sample; when it signals `Drift`, the inner model is reset.
///
/// ```
/// use irithyll::{drift_aware, rls, StreamingLearner};
///
/// let mut model = drift_aware(rls(0.99));
/// for i in 0..100 {
/// model.train(&[i as f64], i as f64 * 2.0);
/// }
/// let pred = model.predict(&[50.0]);
/// assert!(pred.is_finite());
/// ```
/// Wrap any streaming learner with online projection learning (PAST algorithm).
///
/// Applies Welford normalization, then projects `d_in`-dimensional inputs to
/// `rank` dimensions via the PAST subspace tracker (Yang, 1995 — "Projection
/// approximation subspace tracking"). The forgetting factor `lambda` controls
/// the PAST half-life: `lambda = 0.9999` ≈ 6 931-sample half-life.
///
/// When the inner model exposes RLS readout weights ([`HasReadout`]), the
/// projection updates toward prediction-relevant directions (supervised mode);
/// otherwise it tracks variance-maximising directions (PCA mode).
///
/// # Panics
///
/// Panics if `rank > d_in` (delegated to `SubspaceTracker::new`).
///
/// ```
/// use irithyll::{projected, rls, StreamingLearner};
///
/// let mut model = projected(rls(0.99), 10, 4, 0.9999);
/// for i in 0..20 {
/// model.train(&[i as f64; 10], i as f64);
/// }
/// let pred = model.predict(&[1.0; 10]);
/// assert!(pred.is_finite());
/// ```
/// Wrap any streaming learner for multiclass classification.
///
/// Creates `n_classes` independent scalar heads (the inner model as head 0,
/// plus `n_classes - 1` additional RLS heads). Predictions are
/// softmax-normalised across all heads and the argmax class index is returned.
///
/// # Panics
///
/// Panics if `n_classes < 2`.
///
/// ```
/// use irithyll::{multiclass, rls, StreamingLearner};
///
/// let mut clf = multiclass(rls(0.99), 3);
/// for i in 0..60 {
/// clf.train(&[(i % 3) as f64, 1.0], (i % 3) as f64);
/// }
/// let pred = clf.predict(&[1.0, 1.0]);
/// assert!(pred >= 0.0 && pred < 3.0);
/// ```
// NOTE: `binary_classifier` already exists in the factory catalog above.
// The existing fn is the canonical definition; no duplicate needed here.
/// Wrap any streaming learner with champion-challenger auto-tuning.
///
/// Equivalent to `auto_tune(factory)` but named symmetrically with the other
/// wrapper factories. Uses the default [`AutoTunerConfig`] (8 initial
/// candidates, 100-sample rounds, MAE metric).
///
/// ```no_run
/// use irithyll::{auto_tuner, automl::Factory, StreamingLearner};
///
/// let mut tuner = auto_tuner(Factory::sgbt(5));
/// tuner.train(&[1.0, 2.0, 3.0, 4.0, 5.0], 10.0);
/// let pred = tuner.predict(&[1.0, 2.0, 3.0, 4.0, 5.0]);
/// assert!(pred.is_finite());
/// ```
// === Wave 7-1 presets ===
//
// High-level "one-liner" presets that assemble commonly-needed compositions.
// Every constant below is derived from published values or theory — no magic
// numbers. Citations inline.
/// Production-default streaming regressor.
///
/// Assembles `IncrementalNormalizer → RecursiveLeastSquares(λ=0.99)` in a
/// single pipeline.
///
/// **Default rationale:**
/// - Normalizer: zero-mean / unit-variance Welford online standardization
/// (Welford, 1962 — "Note on a method for calculating corrected sums").
/// Required before RLS to prevent magnitude-driven weight explosion.
/// - RLS forgetting factor λ = 0.99 ≈ 100-sample effective window
/// (half-life = −1/log(λ) ≈ 99.5 samples, information-decay matching for
/// datasets without strong long-range dependence).
///
/// ```
/// use irithyll::{online_regressor, StreamingLearner};
///
/// let mut model = online_regressor();
/// for i in 0..20 {
/// model.train(&[i as f64, 1.0], i as f64 * 3.0 + 1.0);
/// }
/// let pred = model.predict(&[10.0, 1.0]);
/// assert!(pred.is_finite());
/// ```
/// Auto-tuned SGBT preset.
///
/// Creates an [`AutoTuner`] wrapping `Factory::sgbt(d_features)`.
///
/// The search space spans `learning_rate` ∈ [0.001, 0.3] (log-scaled per
/// Beygelzimer et al., 2015 "Online Gradient Boosting"), `n_steps` ∈ [10, 500],
/// `max_depth` ∈ [3, 10] (LightGBM/XGBoost canonical range), and
/// `lambda` ∈ [0.01, 10.0] (Friedman 2001 regularisation analysis).
/// Racing uses empirical Bernstein bounds (Maurer & Pontil, 2009) so no
/// fixed elimination thresholds are needed — the gate is data-derived.
///
/// For full control, call `AutoTuner::builder()` directly.
///
/// ```no_run
/// use irithyll::{tuned_sgbt, StreamingLearner};
///
/// let mut tuner = tuned_sgbt(5);
/// for i in 0..200 {
/// tuner.train(&[i as f64; 5], (i as f64).sin());
/// }
/// let pred = tuner.predict(&[1.0; 5]);
/// assert!(pred.is_finite());
/// ```
/// Across-family auto-regressor preset.
///
/// Races SGBT, SpikeNet, and streaming KAN (small default config) in a
/// multi-factory [`AutoTuner`]. The champion-challenger protocol (Bernstein
/// racing, Maurer & Pontil 2009) picks the best-performing family per stream
/// without a fixed elimination threshold.
///
/// The `n_features` argument is used to dimension the SGBT factory; KAN and
/// SpikeNet factories do not require it. For streams where a single family
/// is known to dominate, prefer the targeted preset (`tuned_sgbt`,
/// `auto_tune(Factory::spikenet(...))`).
///
/// ```no_run
/// use irithyll::{auto_regressor, StreamingLearner};
///
/// let mut model = auto_regressor(5);
/// for i in 0..200 {
/// model.train(&[i as f64; 5], (i as f64).powi(2));
/// }
/// let pred = model.predict(&[3.0; 5]);
/// assert!(pred.is_finite());
/// ```
// ---------------------------------------------------------------------------
// Wave 7-1 tests
// ---------------------------------------------------------------------------