Get Fine Tune Job Status
Get Fine Tune Job Status
POST/api/2/auto_eval/fine_tune_job/get_status
Get the status of an existing job, including any results.
Request
- application/json
Body
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Possible values: [JOB_STATUS_UNSPECIFIED
, JOB_STATUS_QUEUED
, JOB_STATUS_RUNNING
, JOB_STATUS_COMPLETED
, JOB_STATUS_CANCELLED
, JOB_STATUS_FAILED
]
fineTuneJobResult
object
required
Result of a Fine-Tuning Job.
progress
object[]
required
A summary is retrieved for a time range from start_time to end_time If no end_time is provided, current time is used
trainedModelFile
object
The trained model, if it was created successfully.
A summary is retrieved for a time range from start_time to end_time If no end_time is provided, current time is used
A summary is retrieved for a time range from start_time to end_time If no end_time is provided, current time is used
Url to view the full results and progress (e.g. external W&B url)
{
"status": "JOB_STATUS_UNSPECIFIED",
"fineTuneJobResult": {
"progress": [
{
"jobId": "string",
"epoch": 0,
"loss": 0,
"accuracy": 0,
"progress": 0,
"timestamp": "2024-07-29T15:51:28.071Z"
}
],
"trainedModelFile": {
"id": "string",
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z",
"modelId": "string",
"contentMd5Hash": "string",
"fileSizeBytes": 0
},
"resultUrl": "string"
}
}