nmn 0.1.2__py3-none-any.whl → 0.1.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
nmn/nnx/nmn.py CHANGED
@@ -109,7 +109,7 @@ class YatNMN(Module):
109
109
  self.alpha: nnx.Param[jax.Array] | None
110
110
  if use_alpha:
111
111
  alpha_key = rngs.params()
112
- self.alpha = nnx.Param(alpha_init(bias_key, (1,), param_dtype))
112
+ self.alpha = nnx.Param(alpha_init(alpha_key, (1,), param_dtype))
113
113
  else:
114
114
  self.alpha = None
115
115