You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi.yaml
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1236,6 +1236,12 @@ paths:
1236
1236
from_checkpoint:
1237
1237
type: string
1238
1238
description: The checkpoint identifier to continue training from a previous fine-tuning job. Format is `{$JOB_ID}` or `{$OUTPUT_MODEL_NAME}` or `{$JOB_ID}:{$STEP}` or `{$OUTPUT_MODEL_NAME}:{$STEP}`. The step value is optional; without it, the final checkpoint will be used.
1239
+
from_hf_model:
1240
+
type: string
1241
+
description: The Hugging Face Hub repo to start training from. Should be as close as possible to the base model (specified by the `model` argument) in terms of architecture and size.
1242
+
hf_model_revision:
1243
+
type: string
1244
+
description: The revision of the Hugging Face Hub model to continue training from. E.g., hf_model_revision=main (default) or hf_model_revision='607a30d783dfa663caf39e06633721c8d4cfcd7e' (specific commit).
1239
1245
hf_api_token:
1240
1246
type: string
1241
1247
description: The API token for the Hugging Face Hub.
@@ -5423,6 +5429,10 @@ components:
5423
5429
type: string
5424
5430
from_checkpoint:
5425
5431
type: string
5432
+
from_hf_model:
5433
+
type: string
5434
+
hf_model_revision:
5435
+
type: string
5426
5436
5427
5437
FinetuneResponseTruncated:
5428
5438
type: object
@@ -5543,6 +5553,12 @@ components:
5543
5553
from_checkpoint:
5544
5554
type: string
5545
5555
description: Checkpoint used to continue training
5556
+
from_hf_model:
5557
+
type: string
5558
+
description: Hugging Face Hub repo to start training from
5559
+
hf_model_revision:
5560
+
type: string
5561
+
description: The revision of the Hugging Face Hub model to continue training from
0 commit comments