Skip to content

Commit

Permalink
fix default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Малахов Алексей Павлович committed Nov 26, 2024
1 parent bced0d4 commit b7186e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions turbo_alignment/settings/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ class ModelType(str, Enum):


class LigerKernelSettings(ExtraFieldsNotAllowedBaseModel):
use_rope: bool = True
use_rope: bool = False
use_cross_entropy: bool = False
use_fused_linear_cross_entropy: bool = False
use_mlp: bool = True
use_mlp: bool = False
use_rms_norm: bool = False

@model_validator(mode='after')
Expand Down

0 comments on commit b7186e8

Please sign in to comment.