We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efefbbb commit 2ee9bbcCopy full SHA for 2ee9bbc
src/together/cli/api/finetune.py
@@ -412,6 +412,8 @@ def create(
412
)
413
report_string += f" at {formatted_time}"
414
rprint(report_string)
415
+ else:
416
+ click.echo("No confirmation received, stopping job launch")
417
else:
418
click.echo("No confirmation received, stopping job launch")
419
src/together/resources/finetune.py
@@ -550,6 +550,8 @@ def estimate_price(
550
raise ValueError(f"Unknown training method: {training_method}")
551
552
if training_type.lower() == "lora":
553
+ # parameters of lora are unused in price estimation
554
+ # but we need to set them to valid values
555
training_type_cls = LoRATrainingType(
556
type="Lora",
557
lora_r=16,
0 commit comments