Skip to content

Commit

Permalink
adjusting mabular config
Browse files Browse the repository at this point in the history
  • Loading branch information
AnFreTh committed Aug 5, 2024
1 parent 8933cf7 commit 55ca124
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mambular/configs/mambular_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ class DefaultMambularConfig:
Whether to shuffle the embeddings before being passed to the Mamba layers.
layer_norm_eps : float, default=1e-05
Epsilon value for layer normalization.
AD_weight_decay : bool, default=False
AD_weight_decay : bool, default=True
whether weight decay is also applied to A-D matrices
BC_layer_norm: bool, default=True
BC_layer_norm: bool, default=False
whether to apply layer normalization to B-C matrices
"""

Expand Down Expand Up @@ -114,5 +114,5 @@ class DefaultMambularConfig:
use_cls: bool = False
shuffle_embeddings: bool = False
layer_norm_eps: float = 1e-05
AD_weight_decay: bool = False
BC_layer_norm: bool = True
AD_weight_decay: bool = True
BC_layer_norm: bool = False

0 comments on commit 55ca124

Please sign in to comment.