relayrl_algorithms 0.3.0

A collection of Multi-Agent Deep Reinforcement Learning Algorithms (IPPO, MAPPO, etc.)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
//! RelayRL learning algorithms and a small **trainer façade** for constructing them.
//!
//! ## Layout
//!
//! - **[`PpoTrainer`]** — independent PPO (and the `IPPO` naming alias for the same type).
//! - **[`ReinforceTrainer`]** — independent REINFORCE (and `IREINFORCE` alias).
//! - **[`MultiagentTrainer`]** — MAPPO / MAREINFORCE; **no** external step kernel type parameter.
//!
//! Use **[`RelayRLTrainer`]** as a convenience namespace with the same constructors as those types.
//!
//! After construction, drive training through **[`AlgorithmTrait`]**: pass trajectories whose type
//! implements [`TrajectoryData`] (for example RelayRL, CSV, or Arrow trajectory wrappers from
//! `relayrl_types`), then call `receive_trajectory`, `train_model`, `log_epoch`, and `save` as your
//! integration loop requires.
//!
//! ## Re-exports
//!
//! This module re-exports algorithm structs and hyperparameter types (`PPOParams`, `MAPPOParams`,
//! …) plus kernel traits ([`PPOKernelTrait`], [`StepKernelTrait`], [`REINFORCEKernelTrait`]) so
//! callers can supply custom kernels without digging through submodule paths.
//!
//! ## Generics
//!
//! `B`, `InK`, and `OutK` are the Burn backend and tensor kinds your environment uses. Independent
//! trainers also take a kernel type `K`. If the compiler cannot infer them, use a turbofish on the
//! constructor, e.g. `RelayRLTrainer::mappo::<B, InK, OutK>(args, None)?`, or give the result a
//! concrete type in a `let` binding.
//!
//! ## Examples in this file
//!
//! Fenced examples are **illustrative** (`ignore`): substitute your real `B`, `InK`, `OutK`, kernel
//! `K`, and async runtime. They are not run as doctests by default so environments without optional
//! backends (for example libtorch) still build docs cleanly.
//!
//! ### End-to-end training flow
//!
//! ```ignore
//! use std::path::PathBuf;
//!
//! use relayrl_algorithms::{AlgorithmError, AlgorithmTrait, RelayRLTrainer, TrainerArgs};
//! use relayrl_types::prelude::trajectory::RelayRLTrajectory;
//!
//! async fn run_training_loop<B, InK, OutK>() -> Result<(), AlgorithmError> {
//!     let args = TrainerArgs {
//!         env_dir: PathBuf::from("./env"),
//!         save_model_path: PathBuf::from("./checkpoints"),
//!         obs_dim: 64,
//!         act_dim: 8,
//!         buffer_size: 1_000_000,
//!     };
//!
//!     let mut trainer = RelayRLTrainer::mappo::<B, InK, OutK>(args, None)?;
//!
//!     let mut trajectory = RelayRLTrajectory::new(1024);
//!     // Populate `trajectory` from your environment loop before handing it to the trainer.
//!
//!     trainer.receive_trajectory(trajectory).await?;
//!     trainer.train_model();
//!     trainer.log_epoch();
//!     trainer.save("epoch-0001");
//!
//!     Ok(())
//! }
//! ```

pub mod algorithms;
pub mod logging;
pub mod templates;

use burn_tensor::TensorKind;
use burn_tensor::backend::Backend;
use relayrl_types::prelude::tensor::relayrl::BackendMatcher;

use std::path::PathBuf;

pub use algorithms::DDPG::{
    DDPGAlgorithm, DDPGKernelTrait, DDPGParams, IDDPGAlgorithm, IDDPGParams, MADDPGAlgorithm,
    MADDPGParams, MultiagentDDPGKernelTrait,
};
pub use algorithms::PPO::{
    IPPOAlgorithm, IPPOParams, MAPPOAlgorithm, MAPPOParams, MultiagentPPOKernelTrait, PPOAlgorithm,
    PPOKernelTrait, PPOParams,
};
pub use algorithms::REINFORCE::{
    IREINFORCEAlgorithm, IREINFORCEParams, MAREINFORCEAlgorithm, MAREINFORCEParams,
    MultiagentReinforceKernelTrait, REINFORCEKernelTrait, REINFORCEParams, ReinforceAlgorithm,
};
pub use algorithms::TD3::{
    ITD3Algorithm, ITD3Params, MATD3Algorithm, MATD3Params, MultiagentTD3KernelTrait, TD3Algorithm,
    TD3KernelTrait, TD3Params,
};
pub use templates::base_algorithm::{
    AlgorithmError, AlgorithmTrait, MultiagentKernelTrait, StepKernelTrait, TrajectoryData,
    WeightProvider,
};

/// Shared filesystem and shape arguments for every trainer constructor in this module.
///
/// These values are forwarded into the underlying algorithm implementations (replay sizing,
/// logging paths, and similar runtime configuration).
///
/// # Fields
///
/// - **`env_dir`**: working directory for environment-related assets the algorithm may expect.
/// - **`save_model_path`**: base path or directory used when persisting checkpoints (see
///   [`AlgorithmTrait::save`] on the concrete algorithm).
/// - **`obs_dim`**, **`act_dim`**: observation and action space sizes used when wiring kernels and
///   buffers.
/// - **`buffer_size`**: replay / trajectory buffer capacity for independent trainers; multi-agent
///   trainers use the same field for their buffers.
///
/// # Examples
///
/// ```ignore
/// use std::path::PathBuf;
/// use relayrl_algorithms::TrainerArgs;
///
/// let args = TrainerArgs {
///     env_dir: PathBuf::from("./env"),
///     save_model_path: PathBuf::from("./checkpoints"),
///     obs_dim: 64,
///     act_dim: 8,
///     buffer_size: 1_000_000,
/// };
/// ```
#[derive(Clone, Debug)]
pub struct TrainerArgs {
    /// Directory the algorithm treats as the environment root.
    pub env_dir: PathBuf,
    /// Where to persist models or session output (algorithm-specific).
    pub save_model_path: PathBuf,
    /// Observation dimensionality expected by the policy / value stack.
    pub obs_dim: usize,
    /// Action dimensionality (or discrete action count, depending on your kernel).
    pub act_dim: usize,
    /// Experience buffer capacity in transitions or slots, depending on the algorithm.
    pub buffer_size: usize,
}

/// Acquire a trained model as a `ModelModule<B>` from layer specifications.
///
/// This function centralizes model acquisition logic for all RL algorithms (DDPG, PPO, TD3, REINFORCE).
/// It supports both ONNX (NdArray backend) and LibTorch (Tch backend) model formats, automatically
/// selecting the appropriate format based on the backend type `B` and enabled feature flags.
///
/// # Arguments
///
/// - `layer_specs`: Layer specifications in the format `(in_dim, out_dim, weights, biases)` per layer,
///   as produced by `WeightProvider::get_pi_layer_specs()`.
/// - `input_dtype`: Data type for model inputs (e.g., `DType::NdArray(NdArrayDType::F32)`).
/// - `output_dtype`: Data type for model outputs.
/// - `input_shape`: Shape of input tensor (e.g., `[1, obs_dim]`).
/// - `output_shape`: Shape of output tensor (e.g., `[1, act_dim]`).
/// - `device`: Optional device specification (e.g., CPU, CUDA). If `None`, uses default device.
///
/// # Backend Dispatch
///
/// The function uses `BackendMatcher::get_supported_backend()` to determine the backend at compile time:
/// - **NdArray backend** (with `onnx-model` feature): Builds an ONNX model via `build_onnx_mlp_bytes`
///   and loads it with `ModelModule::from_onnx_bytes`.
/// - **Tch backend** (with `tch-model` feature): Builds a TorchScript model via `build_pt_mlp_temp`
///   and loads it with `ModelModule::from_pt_bytes`.
///
/// # Returns
///
/// - `Some(ModelModule<B>)` if the model was successfully built and loaded.
/// - `None` if:
///   - `layer_specs` is empty
///   - Required feature flags are not enabled for the backend
///   - Model building or loading fails
///
/// # Examples
///
/// ```ignore
/// use relayrl_algorithms::acquire_model_module;
/// use relayrl_types::data::tensor::{DType, NdArrayDType, DeviceType};
/// use burn_ndarray::NdArray;
///
/// let layer_specs = vec![
///     (64, 128, vec![0.1; 64 * 128], vec![0.0; 128]),
///     (128, 8, vec![0.1; 128 * 8], vec![0.0; 8]),
/// ];
///
/// let model = acquire_model_module::<NdArray>(
///     "policy",
///     layer_specs,
///     DType::NdArray(NdArrayDType::F32),
///     DType::NdArray(NdArrayDType::F32),
///     vec![1, 64],
///     vec![1, 8],
///     None,
/// );
/// ```
#[cfg(all(
    any(feature = "tch-model", feature = "onnx-model"),
    any(feature = "ndarray-backend", feature = "tch-backend")
))]
pub fn acquire_model_module<B: Backend + BackendMatcher<Backend = B>>(
    model_name: &str,
    layer_specs: Vec<(usize, usize, Vec<f32>, Vec<f32>)>,
    input_dtype: relayrl_types::data::tensor::DType,
    output_dtype: relayrl_types::data::tensor::DType,
    input_shape: Vec<usize>,
    output_shape: Vec<usize>,
    device: Option<relayrl_types::data::tensor::DeviceType>,
) -> Option<relayrl_types::model::ModelModule<B>> {
    use relayrl_types::data::tensor::SupportedTensorBackend;
    use relayrl_types::model::{ModelFileType, ModelMetadata, ModelModule};

    if layer_specs.is_empty() {
        return None;
    }

    match B::get_supported_backend() {
        #[cfg(all(feature = "ndarray-backend", feature = "onnx-model"))]
        SupportedTensorBackend::NdArray => {
            use crate::algorithms::onnx_builder::build_onnx_mlp_bytes;

            let onnx_bytes = build_onnx_mlp_bytes(&layer_specs);
            if onnx_bytes.is_empty() {
                return None;
            }

            let model_file = format!("{}.onnx", model_name);

            let metadata = ModelMetadata {
                model_file,
                model_type: ModelFileType::Onnx,
                input_dtype,
                output_dtype,
                input_shape,
                output_shape,
                default_device: device,
            };

            ModelModule::from_onnx_bytes(onnx_bytes, metadata).ok()
        }
        #[cfg(all(feature = "tch-backend", feature = "tch-model"))]
        SupportedTensorBackend::Tch => {
            use crate::algorithms::pt_builder::build_pt_mlp_temp;

            let (pt_bytes, _temp_path) = build_pt_mlp_temp(&layer_specs).ok()?;
            if pt_bytes.is_empty() {
                return None;
            }

            let model_file = format!("{}.pt", model_name);

            let metadata = ModelMetadata {
                model_file,
                model_type: ModelFileType::Pt,
                input_dtype,
                output_dtype,
                input_shape,
                output_shape,
                default_device: device,
            };

            ModelModule::from_pt_bytes(pt_bytes, metadata).ok()
        }
        _ => None,
    }
}

/// Describes **which** independent PPO trainer to build, before you supply a kernel `K`.
///
/// The `PPO` and `IPPO` variants differ only in naming and which hyperparameter type you pass;
/// they construct the same underlying algorithm type (`PPOAlgorithm` / `IPPOAlgorithm` are aliases).
///
/// Pair this with [`PpoTrainer::new`] and a kernel `K` that implements [`PPOKernelTrait`] and [`Default`].
///
/// # Examples
///
/// ```ignore
/// use relayrl_algorithms::{PpoTrainerSpec, TrainerArgs};
///
/// let args = TrainerArgs { /* ... */ };
/// let spec = PpoTrainerSpec::ppo(args, None);
/// // Then: PpoTrainer::<B, InK, OutK, K>::new(spec, kernel)?
/// ```
pub enum PpoTrainerSpec {
    /// Independent PPO with [`PPOParams`].
    PPO {
        args: TrainerArgs,
        hyperparams: Option<PPOParams>,
    },
    /// Same algorithm as the `PPO` variant, using [`IPPOParams`] for naming consistency.
    IPPO {
        args: TrainerArgs,
        hyperparams: Option<IPPOParams>,
    },
}

impl PpoTrainerSpec {
    /// Builds a [`PpoTrainerSpec::PPO`] variant.
    pub fn ppo(args: TrainerArgs, hyperparams: Option<PPOParams>) -> Self {
        Self::PPO { args, hyperparams }
    }

    /// Builds a [`PpoTrainerSpec::IPPO`] variant.
    pub fn ippo(args: TrainerArgs, hyperparams: Option<IPPOParams>) -> Self {
        Self::IPPO { args, hyperparams }
    }
}

/// Describes **which** independent REINFORCE trainer to build, before you supply a kernel `K`.
///
/// [`REINFORCE`] and [`IREINFORCE`](Self::IREINFORCE) mirror the PPO case: same underlying type,
/// different hyperparameter names.
///
/// Use with [`ReinforceTrainer::new`] and `K: StepKernelTrait + REINFORCEKernelTrait + Default`.
///
/// # Examples
///
/// ```ignore
/// use relayrl_algorithms::{ReinforceTrainerSpec, TrainerArgs};
///
/// let args = TrainerArgs { /* ... */ };
/// let spec = ReinforceTrainerSpec::reinforce(args, None);
/// ```
///
pub enum ReinforceTrainerSpec {
    /// Independent REINFORCE with [`REINFORCEParams`].
    REINFORCE {
        args: TrainerArgs,
        hyperparams: Option<REINFORCEParams>,
    },
    /// Same algorithm with [`IREINFORCEParams`].
    IREINFORCE {
        args: TrainerArgs,
        hyperparams: Option<IREINFORCEParams>,
    },
}

impl ReinforceTrainerSpec {
    /// Builds a [`ReinforceTrainerSpec::REINFORCE`] variant.
    pub fn reinforce(args: TrainerArgs, hyperparams: Option<REINFORCEParams>) -> Self {
        Self::REINFORCE { args, hyperparams }
    }

    /// Builds a [`ReinforceTrainerSpec::IREINFORCE`] variant.
    pub fn ireinforce(args: TrainerArgs, hyperparams: Option<IREINFORCEParams>) -> Self {
        Self::IREINFORCE { args, hyperparams }
    }
}

/// Describes **which** multi-agent trainer to build and carries a user-supplied kernel `K`.
///
/// `K` must implement the algorithm-specific sub-trait for whichever variant is chosen.  
/// When passed to [`MultiagentTrainer::new`], `K` must satisfy all four sub-traits so the
/// compiler can validate it at the call site regardless of which variant is selected.
///
/// # Examples
///
/// ```ignore
/// use relayrl_algorithms::{MultiagentTrainerSpec, TrainerArgs};
///
/// let args = TrainerArgs { /* ... */ };
/// let spec = MultiagentTrainerSpec::mappo(args, None, kernel);
/// // Then: MultiagentTrainer::<B, InK, OutK, _>::new(spec)?
/// ```
pub enum MultiagentTrainerSpec<K> {
    /// Multi-agent DDPG with [`MADDPGParams`].
    MADDPG {
        args: TrainerArgs,
        hyperparams: Option<MADDPGParams>,
        kernel: K,
    },
    /// Multi-agent PPO with [`MAPPOParams`].
    MAPPO {
        args: TrainerArgs,
        hyperparams: Option<MAPPOParams>,
        kernel: K,
    },
    /// Multi-agent REINFORCE with [`MAREINFORCEParams`].
    MAREINFORCE {
        args: TrainerArgs,
        hyperparams: Option<MAREINFORCEParams>,
        kernel: K,
    },
    /// Multi-agent TD3 with [`MATD3Params`].
    MATD3 {
        args: TrainerArgs,
        hyperparams: Option<MATD3Params>,
        kernel: K,
    },
}

impl<K> MultiagentTrainerSpec<K> {
    /// Builds a [`MultiagentTrainerSpec::MADDPG`] variant.
    pub fn maddpg(args: TrainerArgs, hyperparams: Option<MADDPGParams>, kernel: K) -> Self {
        Self::MADDPG {
            args,
            hyperparams,
            kernel,
        }
    }

    /// Builds a [`MultiagentTrainerSpec::MAPPO`] variant.
    pub fn mappo(args: TrainerArgs, hyperparams: Option<MAPPOParams>, kernel: K) -> Self {
        Self::MAPPO {
            args,
            hyperparams,
            kernel,
        }
    }

    /// Builds a [`MultiagentTrainerSpec::MAREINFORCE`] variant.
    pub fn mareinforce(
        args: TrainerArgs,
        hyperparams: Option<MAREINFORCEParams>,
        kernel: K,
    ) -> Self {
        Self::MAREINFORCE {
            args,
            hyperparams,
            kernel,
        }
    }

    /// Builds a [`MultiagentTrainerSpec::MATD3`] variant.
    pub fn matd3(args: TrainerArgs, hyperparams: Option<MATD3Params>, kernel: K) -> Self {
        Self::MATD3 {
            args,
            hyperparams,
            kernel,
        }
    }
}

/// Runtime wrapper for **independent** PPO-family algorithms, parameterized by your step kernel `K`.
///
/// - `B`: Burn backend (`Backend` + `BackendMatcher` from `burn_tensor` / `relayrl_types`).
/// - `InK`, `OutK`: input and mask tensor kinds for [`StepKernelTrait`].
/// - `K`: your policy/value kernel; must implement [`PPOKernelTrait`] (includes stepping) and
///   [`Default`] for agent slot initialization inside the algorithm.
///
/// Prefer [`PpoTrainer::ppo`] / [`PpoTrainer::ippo`] when you do not need a separate [`PpoTrainerSpec`]
/// value. Use [`PpoTrainer::new`] when the spec is built dynamically (for example from config).
///
/// # Examples
///
/// ```ignore
/// use relayrl_algorithms::{PpoTrainer, RelayRLTrainer, TrainerArgs};
///
/// async fn run<B, InK, OutK, K>(args: TrainerArgs, kernel: K)
/// where
///     // ... your bounds ...
/// {
///     let mut trainer = RelayRLTrainer::ppo(args, None, kernel)?;
///     // let traj: T = ...;
///     // trainer.receive_trajectory(traj).await?;
///     Ok(())
/// }
/// ```
///
/// ## [`AlgorithmTrait`] behavior
///
/// [`AlgorithmTrait`] is implemented for this type: `save`, `receive_trajectory`, `train_model`, and
/// `log_epoch` forward to whichever concrete `PPOAlgorithm` / `IPPOAlgorithm` variant is held. The
/// trajectory type `T` must implement [`TrajectoryData`].
#[allow(clippy::large_enum_variant)]
pub enum PpoTrainer<
    B: Backend + BackendMatcher,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: StepKernelTrait<B, InK, OutK>,
> {
    /// Holds a [`PPOAlgorithm`] instance.
    PPO(PPOAlgorithm<B, InK, OutK, K>),
    /// Holds an [`IPPOAlgorithm`] instance (type alias of the same struct as the `PPO` variant).
    IPPO(IPPOAlgorithm<B, InK, OutK, K>),
}

impl<B, InK, OutK, K> PpoTrainer<B, InK, OutK, K>
where
    B: Backend + BackendMatcher,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: PPOKernelTrait<B, InK, OutK> + Default,
{
    /// Constructs a trainer from a [`PpoTrainerSpec`] and a kernel instance.
    pub fn new(spec: PpoTrainerSpec, kernel: K) -> Result<Self, AlgorithmError> {
        let trainer = match spec {
            PpoTrainerSpec::PPO { args, hyperparams } => {
                Self::PPO(PPOAlgorithm::<B, InK, OutK, K>::new(
                    hyperparams,
                    &args.env_dir,
                    &args.save_model_path,
                    args.obs_dim,
                    args.act_dim,
                    args.buffer_size,
                    kernel,
                )?)
            }
            PpoTrainerSpec::IPPO { args, hyperparams } => {
                Self::IPPO(IPPOAlgorithm::<B, InK, OutK, K>::new(
                    hyperparams,
                    &args.env_dir,
                    &args.save_model_path,
                    args.obs_dim,
                    args.act_dim,
                    args.buffer_size,
                    kernel,
                )?)
            }
        };

        Ok(trainer)
    }

    /// Shorthand for `PpoTrainer::new(PpoTrainerSpec::ppo(args, hyperparams), kernel)`.
    pub fn ppo(
        args: TrainerArgs,
        hyperparams: Option<PPOParams>,
        kernel: K,
    ) -> Result<Self, AlgorithmError> {
        Self::new(PpoTrainerSpec::ppo(args, hyperparams), kernel)
    }

    /// Shorthand for `PpoTrainer::new(PpoTrainerSpec::ippo(args, hyperparams), kernel)`.
    pub fn ippo(
        args: TrainerArgs,
        hyperparams: Option<IPPOParams>,
        kernel: K,
    ) -> Result<Self, AlgorithmError> {
        Self::new(PpoTrainerSpec::ippo(args, hyperparams), kernel)
    }

    /// Reset per-actor trajectory counts.
    ///
    /// Prevents `receive_trajectory` from auto-triggering `train_model` when called
    /// from an async context at the start of a new epoch.
    pub fn reset_epoch(&mut self) {
        match self {
            Self::PPO(algorithm) => algorithm.reset_epoch(),
            Self::IPPO(algorithm) => algorithm.reset_epoch(),
        }
    }
}

#[cfg(feature = "ndarray-backend")]
impl<B, InK, OutK, K> PpoTrainer<B, InK, OutK, K>
where
    B: Backend + BackendMatcher<Backend = B>,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: PPOKernelTrait<B, InK, OutK> + WeightProvider + Default,
{
    /// Export the trained policy as an in-memory ONNX model.
    ///
    /// Returns `None` before the first training epoch or when no actors have been
    /// registered.
    pub fn acquire_model_module(&self) -> Option<relayrl_types::model::ModelModule<B>> {
        match self {
            Self::PPO(algorithm) => algorithm.acquire_model_module(),
            Self::IPPO(algorithm) => algorithm.acquire_model_module(),
        }
    }
}

/// Runtime wrapper for **independent** REINFORCE-family algorithms with kernel `K`.
///
/// `K` must support stepping ([`StepKernelTrait`]) and the scalar training hooks ([`REINFORCEKernelTrait`]),
/// plus [`Default`] for per-agent kernel cloning inside the algorithm.
///
/// # Examples
///
/// ```ignore
/// use relayrl_algorithms::{ReinforceTrainer, TrainerArgs};
///
/// fn make(args: TrainerArgs, kernel: K) -> Result<ReinforceTrainer<B, InK, OutK, K>, _> {
///     ReinforceTrainer::reinforce(args, None, kernel)
/// }
/// ```
///
/// ## [`AlgorithmTrait`] behavior
///
/// Implements [`AlgorithmTrait`] by delegating to the inner [`ReinforceAlgorithm`] or
/// [`IREINFORCEAlgorithm`], with `T: TrajectoryData` for incoming trajectories.
#[allow(clippy::large_enum_variant)]
pub enum ReinforceTrainer<
    B: Backend + BackendMatcher,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: StepKernelTrait<B, InK, OutK>,
> {
    /// Holds a [`ReinforceAlgorithm`].
    REINFORCE(ReinforceAlgorithm<B, InK, OutK, K>),
    /// Holds an [`IREINFORCEAlgorithm`] (alias of the same struct as the `REINFORCE` variant).
    IREINFORCE(IREINFORCEAlgorithm<B, InK, OutK, K>),
}

impl<B, InK, OutK, K> ReinforceTrainer<B, InK, OutK, K>
where
    B: Backend + BackendMatcher<Backend = B>,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: StepKernelTrait<B, InK, OutK>
        + REINFORCEKernelTrait<B, InK, OutK>
        + WeightProvider
        + Default,
{
    /// Constructs a trainer from a [`ReinforceTrainerSpec`] and a kernel instance.
    pub fn new(spec: ReinforceTrainerSpec, kernel: K) -> Result<Self, AlgorithmError> {
        let trainer = match spec {
            ReinforceTrainerSpec::REINFORCE { args, hyperparams } => {
                Self::REINFORCE(ReinforceAlgorithm::<B, InK, OutK, K>::new(
                    hyperparams,
                    &args.env_dir,
                    &args.save_model_path,
                    args.obs_dim,
                    args.act_dim,
                    args.buffer_size,
                    kernel,
                )?)
            }
            ReinforceTrainerSpec::IREINFORCE { args, hyperparams } => {
                Self::IREINFORCE(IREINFORCEAlgorithm::<B, InK, OutK, K>::new(
                    hyperparams,
                    &args.env_dir,
                    &args.save_model_path,
                    args.obs_dim,
                    args.act_dim,
                    args.buffer_size,
                    kernel,
                )?)
            }
        };

        Ok(trainer)
    }

    /// Shorthand for `ReinforceTrainer::new(ReinforceTrainerSpec::reinforce(args, hyperparams), kernel)`.
    pub fn reinforce(
        args: TrainerArgs,
        hyperparams: Option<REINFORCEParams>,
        kernel: K,
    ) -> Result<Self, AlgorithmError> {
        Self::new(ReinforceTrainerSpec::reinforce(args, hyperparams), kernel)
    }

    /// Shorthand for `ReinforceTrainer::new(ReinforceTrainerSpec::ireinforce(args, hyperparams), kernel)`.
    pub fn ireinforce(
        args: TrainerArgs,
        hyperparams: Option<IREINFORCEParams>,
        kernel: K,
    ) -> Result<Self, AlgorithmError> {
        Self::new(ReinforceTrainerSpec::ireinforce(args, hyperparams), kernel)
    }

    /// No-op for REINFORCE trainers; trajectory counts are managed internally.
    pub fn reset_epoch(&mut self) {}

    /// Export the trained policy as an in-memory ONNX model.
    ///
    /// Returns `None` before the first training epoch or when no actors have been
    /// registered.
    pub fn acquire_model_module(&self) -> Option<relayrl_types::model::ModelModule<B>> {
        match self {
            Self::REINFORCE(algorithm) => algorithm.acquire_model_module(),
            Self::IREINFORCE(algorithm) => algorithm.acquire_model_module(),
        }
    }
}

/// Runtime wrapper for **multi-agent** algorithms, parameterized by your kernel `K`.
///
/// `K` must implement all four multi-agent sub-traits so that a single `MultiagentTrainer<K>`
/// value can hold any of the four algorithm variants. Use [`MultiagentTrainer::new`] with a
/// [`MultiagentTrainerSpec`] or the convenience constructors (`mappo`, `mareinforce`, `maddpg`,
/// `matd3`).
///
/// # Examples
///
/// ```ignore
/// use relayrl_algorithms::{MultiagentTrainer, TrainerArgs};
///
/// fn open<B, InK, OutK, K>(args: TrainerArgs, kernel: K)
///     -> Result<MultiagentTrainer<B, InK, OutK, K>, _>
/// {
///     MultiagentTrainer::mappo(args, None, kernel)
/// }
/// ```
///
/// ## [`AlgorithmTrait`] behavior
///
/// Implements [`AlgorithmTrait`] by delegating to the inner algorithm variant.
#[allow(clippy::large_enum_variant)]
pub enum MultiagentTrainer<
    B: Backend + BackendMatcher,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: MultiagentPPOKernelTrait<B, InK, OutK>
        + MultiagentReinforceKernelTrait<B, InK, OutK>
        + MultiagentDDPGKernelTrait<B, InK, OutK>
        + MultiagentTD3KernelTrait<B, InK, OutK>,
> {
    /// Multi-agent DDPG; see field `trainer`.
    MADDPG {
        /// The constructed [`MADDPGAlgorithm`].
        trainer: MADDPGAlgorithm<B, InK, OutK, K>,
    },
    /// Multi-agent PPO; see field `trainer`.
    MAPPO {
        /// The constructed [`MAPPOAlgorithm`].
        trainer: MAPPOAlgorithm<B, InK, OutK, K>,
    },
    /// Multi-agent REINFORCE; see field `trainer`.
    MAREINFORCE {
        /// The constructed [`MAREINFORCEAlgorithm`].
        trainer: MAREINFORCEAlgorithm<B, InK, OutK, K>,
    },
    /// Multi-agent TD3; see field `trainer`.
    MATD3 {
        /// The constructed [`MATD3Algorithm`].
        trainer: MATD3Algorithm<B, InK, OutK, K>,
    },
}

impl<B, InK, OutK, K> MultiagentTrainer<B, InK, OutK, K>
where
    B: Backend + BackendMatcher,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: MultiagentPPOKernelTrait<B, InK, OutK>
        + MultiagentReinforceKernelTrait<B, InK, OutK>
        + MultiagentDDPGKernelTrait<B, InK, OutK>
        + MultiagentTD3KernelTrait<B, InK, OutK>
        + Default,
{
    /// Builds from a [`MultiagentTrainerSpec`].
    pub fn new(spec: MultiagentTrainerSpec<K>) -> Result<Self, AlgorithmError> {
        let trainer = match spec {
            MultiagentTrainerSpec::MADDPG {
                args,
                hyperparams,
                kernel,
            } => Self::MADDPG {
                trainer: MADDPGAlgorithm::<B, InK, OutK, K>::new(
                    hyperparams,
                    &args.env_dir,
                    &args.save_model_path,
                    args.obs_dim,
                    args.act_dim,
                    args.buffer_size,
                    kernel,
                )?,
            },
            MultiagentTrainerSpec::MAPPO {
                args,
                hyperparams,
                kernel,
            } => Self::MAPPO {
                trainer: MAPPOAlgorithm::<B, InK, OutK, K>::new(
                    hyperparams,
                    &args.env_dir,
                    &args.save_model_path,
                    args.obs_dim,
                    args.act_dim,
                    args.buffer_size,
                    kernel,
                )?,
            },
            MultiagentTrainerSpec::MAREINFORCE {
                args,
                hyperparams,
                kernel,
            } => Self::MAREINFORCE {
                trainer: MAREINFORCEAlgorithm::<B, InK, OutK, K>::new(
                    hyperparams,
                    &args.env_dir,
                    &args.save_model_path,
                    args.obs_dim,
                    args.act_dim,
                    args.buffer_size,
                    kernel,
                )?,
            },
            MultiagentTrainerSpec::MATD3 {
                args,
                hyperparams,
                kernel,
            } => Self::MATD3 {
                trainer: MATD3Algorithm::<B, InK, OutK, K>::new(
                    hyperparams,
                    &args.env_dir,
                    &args.save_model_path,
                    args.obs_dim,
                    args.act_dim,
                    args.buffer_size,
                    kernel,
                )?,
            },
        };

        Ok(trainer)
    }

    /// Shorthand for building a MAPPO trainer.
    pub fn mappo(
        args: TrainerArgs,
        hyperparams: Option<MAPPOParams>,
        kernel: K,
    ) -> Result<Self, AlgorithmError> {
        Self::new(MultiagentTrainerSpec::mappo(args, hyperparams, kernel))
    }

    /// Shorthand for building a MAREINFORCE trainer.
    pub fn mareinforce(
        args: TrainerArgs,
        hyperparams: Option<MAREINFORCEParams>,
        kernel: K,
    ) -> Result<Self, AlgorithmError> {
        Self::new(MultiagentTrainerSpec::mareinforce(
            args,
            hyperparams,
            kernel,
        ))
    }

    /// Shorthand for building a MADDPG trainer.
    pub fn maddpg(
        args: TrainerArgs,
        hyperparams: Option<MADDPGParams>,
        kernel: K,
    ) -> Result<Self, AlgorithmError> {
        Self::new(MultiagentTrainerSpec::maddpg(args, hyperparams, kernel))
    }

    /// Shorthand for building a MATD3 trainer.
    pub fn matd3(
        args: TrainerArgs,
        hyperparams: Option<MATD3Params>,
        kernel: K,
    ) -> Result<Self, AlgorithmError> {
        Self::new(MultiagentTrainerSpec::matd3(args, hyperparams, kernel))
    }

    /// No-op for multi-agent trainers; trajectory counts are managed internally.
    pub fn reset_epoch(&mut self) {}
}

#[cfg(feature = "ndarray-backend")]
impl<B, InK, OutK, K> MultiagentTrainer<B, InK, OutK, K>
where
    B: Backend + BackendMatcher<Backend = B>,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: MultiagentPPOKernelTrait<B, InK, OutK>
        + MultiagentReinforceKernelTrait<B, InK, OutK>
        + MultiagentDDPGKernelTrait<B, InK, OutK>
        + MultiagentTD3KernelTrait<B, InK, OutK>
        + WeightProvider
        + Default,
{
    /// Export the trained policy as an in-memory ONNX model.
    pub fn acquire_model_module(&self) -> Option<relayrl_types::model::ModelModule<B>> {
        match self {
            Self::MADDPG { trainer } => trainer.acquire_model_module(),
            Self::MAPPO { trainer } => trainer.acquire_model_module(),
            Self::MAREINFORCE { trainer } => trainer.acquire_model_module(),
            Self::MATD3 { trainer } => trainer.acquire_model_module(),
        }
    }
}

/// Namespace type with static constructors for each trainer family.
///
/// Each method delegates to the corresponding inherent constructor on [`PpoTrainer`],
/// [`ReinforceTrainer`], or [`MultiagentTrainer`]. Use it when you prefer
/// `RelayRLTrainer::mappo(...)` over `MultiagentTrainer::mappo(...)`.
///
/// # Type inference
///
/// If the compiler cannot infer `B`, `InK`, `OutK`, or `K`, spell them explicitly with turbofish, for
/// example `RelayRLTrainer::mappo::<B, InK, OutK>(args, None)?`, or assign the result to a
/// variable with a concrete type.
///
/// # Examples
///
/// ```ignore
/// use relayrl_algorithms::{RelayRLTrainer, TrainerArgs};
///
/// fn ppo<B, InK, OutK, K>(args: TrainerArgs, kernel: K) -> _ {
///     RelayRLTrainer::ppo(args, None, kernel)
/// }
///
/// fn mappo<B, InK, OutK>(args: TrainerArgs) -> _ {
///     RelayRLTrainer::mappo::<B, InK, OutK>(args, None)
/// }
/// ```
pub struct RelayRLTrainer;

impl RelayRLTrainer {
    /// See [`PpoTrainer::ppo`].
    pub fn ppo<B, InK, OutK, K>(
        args: TrainerArgs,
        hyperparams: Option<PPOParams>,
        kernel: K,
    ) -> Result<PpoTrainer<B, InK, OutK, K>, AlgorithmError>
    where
        B: Backend + BackendMatcher,
        InK: TensorKind<B>,
        OutK: TensorKind<B>,
        K: PPOKernelTrait<B, InK, OutK> + Default,
    {
        PpoTrainer::<B, InK, OutK, K>::ppo(args, hyperparams, kernel)
    }

    /// See [`PpoTrainer::ippo`].
    pub fn ippo<B, InK, OutK, K>(
        args: TrainerArgs,
        hyperparams: Option<IPPOParams>,
        kernel: K,
    ) -> Result<PpoTrainer<B, InK, OutK, K>, AlgorithmError>
    where
        B: Backend + BackendMatcher,
        InK: TensorKind<B>,
        OutK: TensorKind<B>,
        K: PPOKernelTrait<B, InK, OutK> + Default,
    {
        PpoTrainer::<B, InK, OutK, K>::ippo(args, hyperparams, kernel)
    }

    /// See [`ReinforceTrainer::reinforce`].
    pub fn reinforce<B, InK, OutK, K>(
        args: TrainerArgs,
        hyperparams: Option<REINFORCEParams>,
        kernel: K,
    ) -> Result<ReinforceTrainer<B, InK, OutK, K>, AlgorithmError>
    where
        B: Backend + BackendMatcher<Backend = B>,
        InK: TensorKind<B>,
        OutK: TensorKind<B>,
        K: StepKernelTrait<B, InK, OutK>
            + REINFORCEKernelTrait<B, InK, OutK>
            + WeightProvider
            + Default,
    {
        ReinforceTrainer::<B, InK, OutK, K>::reinforce(args, hyperparams, kernel)
    }

    /// See [`ReinforceTrainer::ireinforce`].
    pub fn ireinforce<B, InK, OutK, K>(
        args: TrainerArgs,
        hyperparams: Option<IREINFORCEParams>,
        kernel: K,
    ) -> Result<ReinforceTrainer<B, InK, OutK, K>, AlgorithmError>
    where
        B: Backend + BackendMatcher<Backend = B>,
        InK: TensorKind<B>,
        OutK: TensorKind<B>,
        K: StepKernelTrait<B, InK, OutK>
            + REINFORCEKernelTrait<B, InK, OutK>
            + WeightProvider
            + Default,
    {
        ReinforceTrainer::<B, InK, OutK, K>::ireinforce(args, hyperparams, kernel)
    }

    /// See [`MultiagentTrainer::mappo`].
    pub fn mappo<B, InK, OutK, K>(
        args: TrainerArgs,
        hyperparams: Option<MAPPOParams>,
        kernel: K,
    ) -> Result<MultiagentTrainer<B, InK, OutK, K>, AlgorithmError>
    where
        B: Backend + BackendMatcher,
        InK: TensorKind<B>,
        OutK: TensorKind<B>,
        K: MultiagentPPOKernelTrait<B, InK, OutK>
            + MultiagentReinforceKernelTrait<B, InK, OutK>
            + MultiagentDDPGKernelTrait<B, InK, OutK>
            + MultiagentTD3KernelTrait<B, InK, OutK>
            + Default,
    {
        MultiagentTrainer::<B, InK, OutK, K>::mappo(args, hyperparams, kernel)
    }

    /// See [`MultiagentTrainer::mareinforce`].
    pub fn mareinforce<B, InK, OutK, K>(
        args: TrainerArgs,
        hyperparams: Option<MAREINFORCEParams>,
        kernel: K,
    ) -> Result<MultiagentTrainer<B, InK, OutK, K>, AlgorithmError>
    where
        B: Backend + BackendMatcher,
        InK: TensorKind<B>,
        OutK: TensorKind<B>,
        K: MultiagentPPOKernelTrait<B, InK, OutK>
            + MultiagentReinforceKernelTrait<B, InK, OutK>
            + MultiagentDDPGKernelTrait<B, InK, OutK>
            + MultiagentTD3KernelTrait<B, InK, OutK>
            + Default,
    {
        MultiagentTrainer::<B, InK, OutK, K>::mareinforce(args, hyperparams, kernel)
    }
}

impl<B, InK, OutK, K, T> AlgorithmTrait<T> for PpoTrainer<B, InK, OutK, K>
where
    B: Backend + BackendMatcher<Backend = B>,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: PPOKernelTrait<B, InK, OutK> + WeightProvider + Default,
    T: TrajectoryData,
{
    fn save(&self, filename: &str) {
        match self {
            Self::PPO(algorithm) => AlgorithmTrait::<T>::save(algorithm, filename),
            Self::IPPO(algorithm) => AlgorithmTrait::<T>::save(algorithm, filename),
        }
    }

    async fn receive_trajectory(&mut self, trajectory: T) -> Result<bool, AlgorithmError> {
        match self {
            Self::PPO(algorithm) => {
                AlgorithmTrait::<T>::receive_trajectory(algorithm, trajectory).await
            }
            Self::IPPO(algorithm) => {
                AlgorithmTrait::<T>::receive_trajectory(algorithm, trajectory).await
            }
        }
    }

    fn train_model(&mut self) {
        match self {
            Self::PPO(algorithm) => AlgorithmTrait::<T>::train_model(algorithm),
            Self::IPPO(algorithm) => AlgorithmTrait::<T>::train_model(algorithm),
        }
    }

    fn log_epoch(&mut self) {
        match self {
            Self::PPO(algorithm) => AlgorithmTrait::<T>::log_epoch(algorithm),
            Self::IPPO(algorithm) => AlgorithmTrait::<T>::log_epoch(algorithm),
        }
    }

    #[cfg(all(
        any(feature = "tch-model", feature = "onnx-model"),
        any(feature = "ndarray-backend", feature = "tch-backend")
    ))]
    fn acquire_model<B2: Backend + BackendMatcher<Backend = B2>>(
        &self,
    ) -> Option<relayrl_types::model::ModelModule<B2>>
    where
        B: 'static,
        B2: 'static,
    {
        match self {
            Self::PPO(algorithm) => AlgorithmTrait::<T>::acquire_model::<B2>(algorithm),
            Self::IPPO(algorithm) => AlgorithmTrait::<T>::acquire_model::<B2>(algorithm),
        }
    }
}

impl<B, InK, OutK, K, T> AlgorithmTrait<T> for ReinforceTrainer<B, InK, OutK, K>
where
    B: Backend + BackendMatcher<Backend = B>,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: StepKernelTrait<B, InK, OutK>
        + REINFORCEKernelTrait<B, InK, OutK>
        + WeightProvider
        + Default,
    T: TrajectoryData,
{
    fn save(&self, filename: &str) {
        match self {
            Self::REINFORCE(algorithm) => AlgorithmTrait::<T>::save(algorithm, filename),
            Self::IREINFORCE(algorithm) => AlgorithmTrait::<T>::save(algorithm, filename),
        }
    }

    async fn receive_trajectory(&mut self, trajectory: T) -> Result<bool, AlgorithmError> {
        match self {
            Self::REINFORCE(algorithm) => {
                AlgorithmTrait::<T>::receive_trajectory(algorithm, trajectory).await
            }
            Self::IREINFORCE(algorithm) => {
                AlgorithmTrait::<T>::receive_trajectory(algorithm, trajectory).await
            }
        }
    }

    fn train_model(&mut self) {
        match self {
            Self::REINFORCE(algorithm) => AlgorithmTrait::<T>::train_model(algorithm),
            Self::IREINFORCE(algorithm) => AlgorithmTrait::<T>::train_model(algorithm),
        }
    }

    fn log_epoch(&mut self) {
        match self {
            Self::REINFORCE(algorithm) => AlgorithmTrait::<T>::log_epoch(algorithm),
            Self::IREINFORCE(algorithm) => AlgorithmTrait::<T>::log_epoch(algorithm),
        }
    }

    #[cfg(all(
        any(feature = "tch-model", feature = "onnx-model"),
        any(feature = "ndarray-backend", feature = "tch-backend")
    ))]
    fn acquire_model<B2: Backend + BackendMatcher<Backend = B2>>(
        &self,
    ) -> Option<relayrl_types::model::ModelModule<B2>>
    where
        B: 'static,
        B2: 'static,
    {
        match self {
            Self::REINFORCE(algorithm) => AlgorithmTrait::<T>::acquire_model::<B2>(algorithm),
            Self::IREINFORCE(algorithm) => AlgorithmTrait::<T>::acquire_model::<B2>(algorithm),
        }
    }
}

impl<B, InK, OutK, K, T> AlgorithmTrait<T> for MultiagentTrainer<B, InK, OutK, K>
where
    B: Backend + BackendMatcher<Backend = B>,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: MultiagentPPOKernelTrait<B, InK, OutK>
        + MultiagentReinforceKernelTrait<B, InK, OutK>
        + MultiagentDDPGKernelTrait<B, InK, OutK>
        + MultiagentTD3KernelTrait<B, InK, OutK>
        + WeightProvider
        + Default,
    T: TrajectoryData,
{
    fn save(&self, filename: &str) {
        match self {
            Self::MADDPG { trainer } => AlgorithmTrait::<T>::save(trainer, filename),
            Self::MAPPO { trainer } => AlgorithmTrait::<T>::save(trainer, filename),
            Self::MAREINFORCE { trainer } => AlgorithmTrait::<T>::save(trainer, filename),
            Self::MATD3 { trainer } => AlgorithmTrait::<T>::save(trainer, filename),
        }
    }

    async fn receive_trajectory(&mut self, trajectory: T) -> Result<bool, AlgorithmError> {
        match self {
            Self::MADDPG { trainer } => {
                AlgorithmTrait::<T>::receive_trajectory(trainer, trajectory).await
            }
            Self::MAPPO { trainer } => {
                AlgorithmTrait::<T>::receive_trajectory(trainer, trajectory).await
            }
            Self::MAREINFORCE { trainer } => {
                AlgorithmTrait::<T>::receive_trajectory(trainer, trajectory).await
            }
            Self::MATD3 { trainer } => {
                AlgorithmTrait::<T>::receive_trajectory(trainer, trajectory).await
            }
        }
    }

    fn train_model(&mut self) {
        match self {
            Self::MADDPG { trainer } => AlgorithmTrait::<T>::train_model(trainer),
            Self::MAPPO { trainer } => AlgorithmTrait::<T>::train_model(trainer),
            Self::MAREINFORCE { trainer } => AlgorithmTrait::<T>::train_model(trainer),
            Self::MATD3 { trainer } => AlgorithmTrait::<T>::train_model(trainer),
        }
    }

    fn log_epoch(&mut self) {
        match self {
            Self::MADDPG { trainer } => AlgorithmTrait::<T>::log_epoch(trainer),
            Self::MAPPO { trainer } => AlgorithmTrait::<T>::log_epoch(trainer),
            Self::MAREINFORCE { trainer } => AlgorithmTrait::<T>::log_epoch(trainer),
            Self::MATD3 { trainer } => AlgorithmTrait::<T>::log_epoch(trainer),
        }
    }

    #[cfg(all(
        any(feature = "tch-model", feature = "onnx-model"),
        any(feature = "ndarray-backend", feature = "tch-backend")
    ))]
    fn acquire_model<B2: Backend + BackendMatcher<Backend = B2>>(
        &self,
    ) -> Option<relayrl_types::model::ModelModule<B2>>
    where
        B: 'static,
        B2: 'static,
    {
        match self {
            Self::MADDPG { trainer } => AlgorithmTrait::<T>::acquire_model::<B2>(trainer),
            Self::MAPPO { trainer } => AlgorithmTrait::<T>::acquire_model::<B2>(trainer),
            Self::MAREINFORCE { trainer } => AlgorithmTrait::<T>::acquire_model::<B2>(trainer),
            Self::MATD3 { trainer } => AlgorithmTrait::<T>::acquire_model::<B2>(trainer),
        }
    }
}

/// Which independent DDPG trainer to build.
pub enum DdpgTrainerSpec {
    /// Independent DDPG with [`DDPGParams`].
    DDPG {
        args: TrainerArgs,
        hyperparams: Option<DDPGParams>,
    },
    /// Same algorithm named with the `I`-prefix convention.
    IDDPG {
        args: TrainerArgs,
        hyperparams: Option<IDDPGParams>,
    },
}

impl DdpgTrainerSpec {
    pub fn ddpg(args: TrainerArgs, hyperparams: Option<DDPGParams>) -> Self {
        Self::DDPG { args, hyperparams }
    }

    pub fn iddpg(args: TrainerArgs, hyperparams: Option<IDDPGParams>) -> Self {
        Self::IDDPG { args, hyperparams }
    }
}

/// Runtime wrapper for independent DDPG-family algorithms with kernel `K`.
#[allow(clippy::large_enum_variant)]
pub enum DdpgTrainer<
    B: Backend + BackendMatcher,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: StepKernelTrait<B, InK, OutK>,
> {
    DDPG(DDPGAlgorithm<B, InK, OutK, K>),
    IDDPG(IDDPGAlgorithm<B, InK, OutK, K>),
}

impl<B, InK, OutK, K> DdpgTrainer<B, InK, OutK, K>
where
    B: Backend + BackendMatcher,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: DDPGKernelTrait<B, InK, OutK> + Default,
{
    pub fn new(spec: DdpgTrainerSpec, kernel: K) -> Result<Self, AlgorithmError> {
        let trainer = match spec {
            DdpgTrainerSpec::DDPG { args, hyperparams } => {
                Self::DDPG(DDPGAlgorithm::<B, InK, OutK, K>::new(
                    hyperparams,
                    &args.env_dir,
                    &args.save_model_path,
                    args.obs_dim,
                    args.act_dim,
                    args.buffer_size,
                    kernel,
                )?)
            }
            DdpgTrainerSpec::IDDPG { args, hyperparams } => {
                Self::IDDPG(IDDPGAlgorithm::<B, InK, OutK, K>::new(
                    hyperparams,
                    &args.env_dir,
                    &args.save_model_path,
                    args.obs_dim,
                    args.act_dim,
                    args.buffer_size,
                    kernel,
                )?)
            }
        };
        Ok(trainer)
    }

    pub fn ddpg(
        args: TrainerArgs,
        hyperparams: Option<DDPGParams>,
        kernel: K,
    ) -> Result<Self, AlgorithmError> {
        Self::new(DdpgTrainerSpec::ddpg(args, hyperparams), kernel)
    }

    pub fn iddpg(
        args: TrainerArgs,
        hyperparams: Option<IDDPGParams>,
        kernel: K,
    ) -> Result<Self, AlgorithmError> {
        Self::new(DdpgTrainerSpec::iddpg(args, hyperparams), kernel)
    }

    pub fn reset_epoch(&mut self) {
        match self {
            Self::DDPG(a) => a.reset_epoch(),
            Self::IDDPG(a) => a.reset_epoch(),
        }
    }
}

impl<B, InK, OutK, K, T> AlgorithmTrait<T> for DdpgTrainer<B, InK, OutK, K>
where
    B: Backend + BackendMatcher<Backend = B>,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: DDPGKernelTrait<B, InK, OutK> + WeightProvider + Default,
    T: TrajectoryData,
{
    fn save(&self, filename: &str) {
        match self {
            Self::DDPG(a) => AlgorithmTrait::<T>::save(a, filename),
            Self::IDDPG(a) => AlgorithmTrait::<T>::save(a, filename),
        }
    }

    async fn receive_trajectory(&mut self, trajectory: T) -> Result<bool, AlgorithmError> {
        match self {
            Self::DDPG(a) => AlgorithmTrait::<T>::receive_trajectory(a, trajectory).await,
            Self::IDDPG(a) => AlgorithmTrait::<T>::receive_trajectory(a, trajectory).await,
        }
    }

    fn train_model(&mut self) {
        match self {
            Self::DDPG(a) => AlgorithmTrait::<T>::train_model(a),
            Self::IDDPG(a) => AlgorithmTrait::<T>::train_model(a),
        }
    }

    fn log_epoch(&mut self) {
        match self {
            Self::DDPG(a) => AlgorithmTrait::<T>::log_epoch(a),
            Self::IDDPG(a) => AlgorithmTrait::<T>::log_epoch(a),
        }
    }

    #[cfg(all(
        any(feature = "tch-model", feature = "onnx-model"),
        any(feature = "ndarray-backend", feature = "tch-backend")
    ))]
    fn acquire_model<B2: Backend + BackendMatcher<Backend = B2>>(
        &self,
    ) -> Option<relayrl_types::model::ModelModule<B2>>
    where
        B: 'static,
        B2: 'static,
    {
        match self {
            Self::DDPG(a) => AlgorithmTrait::<T>::acquire_model::<B2>(a),
            Self::IDDPG(a) => AlgorithmTrait::<T>::acquire_model::<B2>(a),
        }
    }
}

// ─────────────────────────────────────────────────────────────────────────────
// Td3Trainer
// ─────────────────────────────────────────────────────────────────────────────

/// Which independent TD3 trainer to build.
pub enum Td3TrainerSpec {
    TD3 {
        args: TrainerArgs,
        hyperparams: Option<TD3Params>,
    },
    ITD3 {
        args: TrainerArgs,
        hyperparams: Option<ITD3Params>,
    },
}

impl Td3TrainerSpec {
    pub fn td3(args: TrainerArgs, hyperparams: Option<TD3Params>) -> Self {
        Self::TD3 { args, hyperparams }
    }

    pub fn itd3(args: TrainerArgs, hyperparams: Option<ITD3Params>) -> Self {
        Self::ITD3 { args, hyperparams }
    }
}

/// Runtime wrapper for independent TD3-family algorithms with kernel `K`.
#[allow(clippy::large_enum_variant)]
pub enum Td3Trainer<
    B: Backend + BackendMatcher,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: StepKernelTrait<B, InK, OutK>,
> {
    TD3(TD3Algorithm<B, InK, OutK, K>),
    ITD3(ITD3Algorithm<B, InK, OutK, K>),
}

impl<B, InK, OutK, K> Td3Trainer<B, InK, OutK, K>
where
    B: Backend + BackendMatcher,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: TD3KernelTrait<B, InK, OutK> + Default,
{
    pub fn new(spec: Td3TrainerSpec, kernel: K) -> Result<Self, AlgorithmError> {
        let trainer = match spec {
            Td3TrainerSpec::TD3 { args, hyperparams } => {
                Self::TD3(TD3Algorithm::<B, InK, OutK, K>::new(
                    hyperparams,
                    &args.env_dir,
                    &args.save_model_path,
                    args.obs_dim,
                    args.act_dim,
                    args.buffer_size,
                    kernel,
                )?)
            }
            Td3TrainerSpec::ITD3 { args, hyperparams } => {
                Self::ITD3(ITD3Algorithm::<B, InK, OutK, K>::new(
                    hyperparams,
                    &args.env_dir,
                    &args.save_model_path,
                    args.obs_dim,
                    args.act_dim,
                    args.buffer_size,
                    kernel,
                )?)
            }
        };
        Ok(trainer)
    }

    pub fn td3(
        args: TrainerArgs,
        hyperparams: Option<TD3Params>,
        kernel: K,
    ) -> Result<Self, AlgorithmError> {
        Self::new(Td3TrainerSpec::td3(args, hyperparams), kernel)
    }

    pub fn itd3(
        args: TrainerArgs,
        hyperparams: Option<ITD3Params>,
        kernel: K,
    ) -> Result<Self, AlgorithmError> {
        Self::new(Td3TrainerSpec::itd3(args, hyperparams), kernel)
    }

    pub fn reset_epoch(&mut self) {
        match self {
            Self::TD3(a) => a.reset_epoch(),
            Self::ITD3(a) => a.reset_epoch(),
        }
    }
}

impl<B, InK, OutK, K, T> AlgorithmTrait<T> for Td3Trainer<B, InK, OutK, K>
where
    B: Backend + BackendMatcher<Backend = B>,
    InK: TensorKind<B>,
    OutK: TensorKind<B>,
    K: TD3KernelTrait<B, InK, OutK> + WeightProvider + Default,
    T: TrajectoryData,
{
    fn save(&self, filename: &str) {
        match self {
            Self::TD3(a) => AlgorithmTrait::<T>::save(a, filename),
            Self::ITD3(a) => AlgorithmTrait::<T>::save(a, filename),
        }
    }

    async fn receive_trajectory(&mut self, trajectory: T) -> Result<bool, AlgorithmError> {
        match self {
            Self::TD3(a) => AlgorithmTrait::<T>::receive_trajectory(a, trajectory).await,
            Self::ITD3(a) => AlgorithmTrait::<T>::receive_trajectory(a, trajectory).await,
        }
    }

    fn train_model(&mut self) {
        match self {
            Self::TD3(a) => AlgorithmTrait::<T>::train_model(a),
            Self::ITD3(a) => AlgorithmTrait::<T>::train_model(a),
        }
    }

    fn log_epoch(&mut self) {
        match self {
            Self::TD3(a) => AlgorithmTrait::<T>::log_epoch(a),
            Self::ITD3(a) => AlgorithmTrait::<T>::log_epoch(a),
        }
    }

    #[cfg(all(
        any(feature = "tch-model", feature = "onnx-model"),
        any(feature = "ndarray-backend", feature = "tch-backend")
    ))]
    fn acquire_model<B2: Backend + BackendMatcher<Backend = B2>>(
        &self,
    ) -> Option<relayrl_types::model::ModelModule<B2>>
    where
        B: 'static,
        B2: 'static,
    {
        match self {
            Self::TD3(a) => AlgorithmTrait::<T>::acquire_model::<B2>(a),
            Self::ITD3(a) => AlgorithmTrait::<T>::acquire_model::<B2>(a),
        }
    }
}

// ─────────────────────────────────────────────────────────────────────────────
// RelayRLTrainer extensions for DDPG and TD3
// ─────────────────────────────────────────────────────────────────────────────

impl RelayRLTrainer {
    /// See [`DdpgTrainer::ddpg`].
    pub fn ddpg<B, InK, OutK, K>(
        args: TrainerArgs,
        hyperparams: Option<DDPGParams>,
        kernel: K,
    ) -> Result<DdpgTrainer<B, InK, OutK, K>, AlgorithmError>
    where
        B: Backend + BackendMatcher,
        InK: TensorKind<B>,
        OutK: TensorKind<B>,
        K: DDPGKernelTrait<B, InK, OutK> + Default,
    {
        DdpgTrainer::<B, InK, OutK, K>::ddpg(args, hyperparams, kernel)
    }

    /// See [`DdpgTrainer::iddpg`].
    pub fn iddpg<B, InK, OutK, K>(
        args: TrainerArgs,
        hyperparams: Option<IDDPGParams>,
        kernel: K,
    ) -> Result<DdpgTrainer<B, InK, OutK, K>, AlgorithmError>
    where
        B: Backend + BackendMatcher,
        InK: TensorKind<B>,
        OutK: TensorKind<B>,
        K: DDPGKernelTrait<B, InK, OutK> + Default,
    {
        DdpgTrainer::<B, InK, OutK, K>::iddpg(args, hyperparams, kernel)
    }

    /// See [`Td3Trainer::td3`].
    pub fn td3<B, InK, OutK, K>(
        args: TrainerArgs,
        hyperparams: Option<TD3Params>,
        kernel: K,
    ) -> Result<Td3Trainer<B, InK, OutK, K>, AlgorithmError>
    where
        B: Backend + BackendMatcher,
        InK: TensorKind<B>,
        OutK: TensorKind<B>,
        K: TD3KernelTrait<B, InK, OutK> + Default,
    {
        Td3Trainer::<B, InK, OutK, K>::td3(args, hyperparams, kernel)
    }

    /// See [`Td3Trainer::itd3`].
    pub fn itd3<B, InK, OutK, K>(
        args: TrainerArgs,
        hyperparams: Option<ITD3Params>,
        kernel: K,
    ) -> Result<Td3Trainer<B, InK, OutK, K>, AlgorithmError>
    where
        B: Backend + BackendMatcher,
        InK: TensorKind<B>,
        OutK: TensorKind<B>,
        K: TD3KernelTrait<B, InK, OutK> + Default,
    {
        Td3Trainer::<B, InK, OutK, K>::itd3(args, hyperparams, kernel)
    }
}