diff --git a/crates/ml/src/cuda_pipeline/meta_q_network.rs b/crates/ml/src/cuda_pipeline/meta_q_network.rs index 325d3d022..754d4eacc 100644 --- a/crates/ml/src/cuda_pipeline/meta_q_network.rs +++ b/crates/ml/src/cuda_pipeline/meta_q_network.rs @@ -37,6 +37,7 @@ impl MetaQInput { } /// Small MLP on host (CPU). n_params ≈ 7×32 + 32×16 + 16×1 + biases = ~800. +#[derive(Debug)] pub struct MetaQNetwork { w1: Vec, b1: Vec, w2: Vec, b2: Vec, @@ -187,6 +188,7 @@ impl Default for MetaQNetwork { } /// Deterministic LCG for reproducible weight init and minibatch sampling. +#[derive(Debug)] struct SimpleLcg { state: u64 } impl SimpleLcg {