Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1684,6 +1684,8 @@ paths:
oneOf:
- $ref: '#/components/schemas/FullTrainingType'
- $ref: '#/components/schemas/LoRATrainingType'
multimodal_params:
$ref: '#/components/schemas/MultimodalParams'
from_checkpoint:
type: string
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.
Expand Down Expand Up @@ -1823,6 +1825,8 @@ paths:
oneOf:
- $ref: '#/components/schemas/FullTrainingType'
- $ref: '#/components/schemas/LoRATrainingType'
multimodal_params:
$ref: '#/components/schemas/MultimodalParams'
from_checkpoint:
type: string
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.
Expand Down Expand Up @@ -7436,6 +7440,8 @@ components:
oneOf:
- $ref: '#/components/schemas/FullTrainingType'
- $ref: '#/components/schemas/LoRATrainingType'
multimodal_params:
$ref: '#/components/schemas/MultimodalParams'
status:
$ref: '#/components/schemas/FinetuneJobStatus'
job_id:
Expand Down Expand Up @@ -7832,6 +7838,13 @@ components:
required:
- method

MultimodalParams:
type: object
properties:
train_vision:
type: boolean
description: Whether to train the vision encoder of the model. Only available for multimodal models.

LRScheduler:
type: object
properties:
Expand Down