@@ -81,9 +81,9 @@ class MambularRegressor(SklearnBaseRegressor):
8181 Whether to shuffle the embeddings before being passed to the Mamba layers.
8282 layer_norm_eps : float, default=1e-05
8383 Epsilon value for layer normalization.
84- AD_weight_decay : bool, default=False
84+ AD_weight_decay : bool, default=True
8585 whether weight decay is also applied to A-D matrices.
86- BC_layer_norm: bool, default=True
86+ BC_layer_norm: bool, default=False
8787 whether to apply layer normalization to B-C matrices.
8888 cat_encoding : str, default="int"
8989 whether to use integer encoding or one-hot encoding for cat features.
@@ -208,9 +208,9 @@ class MambularClassifier(SklearnBaseClassifier):
208208 Whether to shuffle the embeddings before being passed to the Mamba layers.
209209 layer_norm_eps : float, default=1e-05
210210 Epsilon value for layer normalization.
211- AD_weight_decay : bool, default=False
211+ AD_weight_decay : bool, default=True
212212 whether weight decay is also applied to A-D matrices.
213- BC_layer_norm: bool, default=True
213+ BC_layer_norm: bool, default=False
214214 whether to apply layer normalization to B-C matrices.
215215 cat_encoding : str, default="int"
216216 whether to use integer encoding or one-hot encoding for cat features.
@@ -338,9 +338,9 @@ class MambularLSS(SklearnBaseLSS):
338338 Whether to shuffle the embeddings before being passed to the Mamba layers.
339339 layer_norm_eps : float, default=1e-05
340340 Epsilon value for layer normalization.
341- AD_weight_decay : bool, default=False
341+ AD_weight_decay : bool, default=True
342342 whether weight decay is also applied to A-D matrices.
343- BC_layer_norm: bool, default=True
343+ BC_layer_norm: bool, default=False
344344 whether to apply layer normalization to B-C matrices.
345345 cat_encoding : str, default="int"
346346 whether to use integer encoding or one-hot encoding for cat features.
0 commit comments