Skip to content

Commit 5cb1430

Browse files
committed
Change defaults for FT
1 parent 759add7 commit 5cb1430

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/together/cli/api/finetune.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def fine_tuning(ctx: click.Context) -> None:
9292
@click.option(
9393
"--lora/--no-lora",
9494
type=bool,
95-
default=False,
95+
default=True,
9696
help="Whether to use LoRA adapters for fine-tuning",
9797
)
9898
@click.option("--lora-r", type=int, default=8, help="LoRA adapters' rank")

src/together/resources/finetune.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def create(
149149
warmup_ratio: float = 0.0,
150150
max_grad_norm: float = 1.0,
151151
weight_decay: float = 0.0,
152-
lora: bool = False,
152+
lora: bool = TrueS,
153153
lora_r: int | None = None,
154154
lora_dropout: float | None = 0,
155155
lora_alpha: float | None = None,

0 commit comments

Comments
 (0)