diff --git a/candle-nn/src/layer_norm.rs b/candle-nn/src/layer_norm.rs index 1deef146dc..3faa76aaef 100644 --- a/candle-nn/src/layer_norm.rs +++ b/candle-nn/src/layer_norm.rs @@ -137,6 +137,7 @@ impl LayerNorm { //#[cfg(not(feature = "cuda"))] impl crate::Module for LayerNorm { fn forward(&self, x: &Tensor) -> Result { + dbg!(self.bias); self.forward_slow(x) } }