Skip to content

Commit 78b9dc5

Browse files
committed
fixes
1 parent d97e56a commit 78b9dc5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/together/cli/api/finetune.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ def fine_tuning(ctx: click.Context) -> None:
204204
"--from-hf-model",
205205
type=str,
206206
help="The Hugging Face Hub repo to start training from. "
207-
"Should be as close as possible to the base model (specified by the `model` argument) in terms of architecture "
208-
"and size with the base model specified by the `model` argument.",
207+
"Should be as close as possible to the base model (specified by the `model` argument) "
208+
"in terms of architecture and size",
209209
)
210210
@click.option(
211211
"--hf-model-revision",

src/together/resources/finetune.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ def create(
408408
The format: {$JOB_ID/$OUTPUT_MODEL_NAME}:{$STEP}.
409409
The step value is optional, without it the final checkpoint will be used.
410410
from_hf_model (str, optional): The Hugging Face Hub repo to start training from.
411-
Should be as close as possible to the base model (specified by the `model` argument) in terms of architecture and size"
411+
Should be as close as possible to the base model (specified by the `model` argument) in terms of architecture and size.
412412
hf_model_revision (str, optional): The revision of the Hugging Face Hub model to continue training from. Defaults to None.
413413
Example: hf_model_revision=None (defaults to the latest revision in `main`) or
414414
hf_model_revision="607a30d783dfa663caf39e06633721c8d4cfcd7e" (specific commit).
@@ -844,7 +844,7 @@ async def create(
844844
The format: {$JOB_ID/$OUTPUT_MODEL_NAME}:{$STEP}.
845845
The step value is optional, without it the final checkpoint will be used.
846846
from_hf_model (str, optional): The Hugging Face Hub repo to start training from.
847-
Should be as close as possible to the base model (specified by the `model` argument) in terms of architecture and size"
847+
Should be as close as possible to the base model (specified by the `model` argument) in terms of architecture and size.
848848
hf_model_revision (str, optional): The revision of the Hugging Face Hub model to continue training from. Defaults to None.
849849
Example: hf_model_revision=None (defaults to the latest revision in `main`) or
850850
hf_model_revision="607a30d783dfa663caf39e06633721c8d4cfcd7e" (specific commit).

0 commit comments

Comments
 (0)