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
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1684,6 +1684,8 @@ paths:
1684
1684
oneOf:
1685
1685
- $ref: '#/components/schemas/FullTrainingType'
1686
1686
- $ref: '#/components/schemas/LoRATrainingType'
1687
+
multimodal_params:
1688
+
$ref: '#/components/schemas/MultimodalParams'
1687
1689
from_checkpoint:
1688
1690
type: string
1689
1691
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.
@@ -1823,6 +1825,8 @@ paths:
1823
1825
oneOf:
1824
1826
- $ref: '#/components/schemas/FullTrainingType'
1825
1827
- $ref: '#/components/schemas/LoRATrainingType'
1828
+
multimodal_params:
1829
+
$ref: '#/components/schemas/MultimodalParams'
1826
1830
from_checkpoint:
1827
1831
type: string
1828
1832
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.
@@ -7436,6 +7440,8 @@ components:
7436
7440
oneOf:
7437
7441
- $ref: '#/components/schemas/FullTrainingType'
7438
7442
- $ref: '#/components/schemas/LoRATrainingType'
7443
+
multimodal_params:
7444
+
$ref: '#/components/schemas/MultimodalParams'
7439
7445
status:
7440
7446
$ref: '#/components/schemas/FinetuneJobStatus'
7441
7447
job_id:
@@ -7832,6 +7838,13 @@ components:
7832
7838
required:
7833
7839
- method
7834
7840
7841
+
MultimodalParams:
7842
+
type: object
7843
+
properties:
7844
+
train_vision:
7845
+
type: boolean
7846
+
description: Whether to train the vision encoder of the model. Only available for multimodal models.
0 commit comments