Skip to content

Commit 714f910

Browse files
committed
default value of fp16 changed to False
1 parent 03e4c59 commit 714f910

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autointent/configs/_transformers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class EmbedderFineTuningConfig(BaseModel):
2323
warmup_ratio: float = Field(default=0.1)
2424
early_stopping: bool = Field(default=True)
2525
early_stopping_threshold: float = Field(default=0.0)
26-
fp16: bool = Field(default=True)
26+
fp16: bool = Field(default=False)
2727
bf16: bool = Field(default=False)
2828

2929

0 commit comments

Comments
 (0)