List Fine Tune Jobs
POST/api/2/auto_eval/fine_tune_job/list
List all fine-tune jobs with optional filters.
Request
- application/json
Body
filters
object
search query substring match for name and description
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
jobs
object[]
required
The ID of the fine tune job.
Name corresponding to the fine tuned model derived from this job
config
object
required
Optional name for the job.
Optional description for the job.
The ID for the model used as the starting point for training.
The dataset to use for training, with splits baked in or to be derived dynamically
The dataset to use for an unbiased evaluation of the model
result
object
required
Result of a Fine-Tuning Job.
progress
object[]
required
trainedModelFile
object
The trained model, if it was created successfully.
Url to view the full results and progress (e.g. external W&B url)
Total count of fine tune jobs which can be listed with applicable filters, regardless of page size
{
"jobs": [
{
"id": "string",
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z",
"name": "string",
"description": "string",
"status": "string",
"config": {
"name": "string",
"description": "string",
"baselineModelId": "string",
"trainDatasetId": "string",
"testDatasetId": "string",
"selectedColumns": [
"string"
]
},
"result": {
"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"
}
}
],
"totalCount": 0
}