@@ -79,6 +79,14 @@ class MambularRegressor(SklearnBaseRegressor):
7979 Whether to append a cls to the end of each 'sequence'.
8080 shuffle_embeddings : bool, default=False.
8181 Whether to shuffle the embeddings before being passed to the Mamba layers.
82+ layer_norm_eps : float, default=1e-05
83+ Epsilon value for layer normalization.
84+ AD_weight_decay : bool, default=False
85+ whether weight decay is also applied to A-D matrices.
86+ BC_layer_norm: bool, default=True
87+ whether to apply layer normalization to B-C matrices.
88+ cat_encoding : str, default="int"
89+ whether to use integer encoding or one-hot encoding for cat features.
8290 n_bins : int, default=50
8391 The number of bins to use for numerical feature binning. This parameter is relevant
8492 only if `numerical_preprocessing` is set to 'binning' or 'one_hot'.
@@ -198,6 +206,14 @@ class MambularClassifier(SklearnBaseClassifier):
198206 Whether to use learnable feature interactions before passing through mamba blocks.
199207 shuffle_embeddings : bool, default=False.
200208 Whether to shuffle the embeddings before being passed to the Mamba layers.
209+ layer_norm_eps : float, default=1e-05
210+ Epsilon value for layer normalization.
211+ AD_weight_decay : bool, default=False
212+ whether weight decay is also applied to A-D matrices.
213+ BC_layer_norm: bool, default=True
214+ whether to apply layer normalization to B-C matrices.
215+ cat_encoding : str, default="int"
216+ whether to use integer encoding or one-hot encoding for cat features.
201217 n_bins : int, default=50
202218 The number of bins to use for numerical feature binning. This parameter is relevant
203219 only if `numerical_preprocessing` is set to 'binning' or 'one_hot'.
@@ -320,6 +336,14 @@ class MambularLSS(SklearnBaseLSS):
320336 only if `numerical_preprocessing` is set to 'binning' or 'one_hot'.
321337 shuffle_embeddings : bool, default=False.
322338 Whether to shuffle the embeddings before being passed to the Mamba layers.
339+ layer_norm_eps : float, default=1e-05
340+ Epsilon value for layer normalization.
341+ AD_weight_decay : bool, default=False
342+ whether weight decay is also applied to A-D matrices.
343+ BC_layer_norm: bool, default=True
344+ whether to apply layer normalization to B-C matrices.
345+ cat_encoding : str, default="int"
346+ whether to use integer encoding or one-hot encoding for cat features.
323347 numerical_preprocessing : str, default="ple"
324348 The preprocessing strategy for numerical features. Valid options are
325349 'binning', 'one_hot', 'standardization', and 'normalization'.
0 commit comments