List Fine-tune Jobs
POST/api/2/auto_eval/fine_tune_job/list
List evaluator fine-tuning jobs.
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
id
object
required
Name corresponding to the fine tuned model derived from this job
config
object
required
Set of columns to be used in fine-tuning. Supported columns: input, output, ground_truth For example, a task similar to summarization might need output and ground_truth.
Optional name for the job.
Optional description for the job.
baselineModelId
object
required
trainDatasetId
object
required
testDatasetId
object
required
Set of columns to be used in fine-tuning. Supported columns: input, output, ground_truth For example, a task similar to summarization might need output and ground_truth.
result
object
required
Sequential snapshots of training metrics.
progress
object[]
required
Sequential snapshots of training metrics.
jobId
object
required
Possible values: >= -2147483648
and <= 2147483647
trainedModelFile
object
Actual file asset corresponding to a model
id
object
required
modelId
object
required
Possible values: >= -9223372036854776000
and <= 9223372036854776000
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
Possible values: >= -9223372036854776000
and <= 9223372036854776000
{
"jobs": [
{
"id": {
"value": "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": {
"value": "string"
},
"trainDatasetId": {
"value": "string"
},
"testDatasetId": {
"value": "string"
},
"selectedColumns": [
"string"
]
},
"result": {
"progress": [
{
"jobId": {
"value": "string"
},
"epoch": 0,
"loss": 0,
"accuracy": 0,
"progress": 0,
"timestamp": "2024-07-29T15:51:28.071Z"
}
],
"trainedModelFile": {
"id": {
"value": "string"
},
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z",
"modelId": {
"value": "string"
},
"contentMd5Hash": "string",
"fileSizeBytes": 0
},
"resultUrl": "string"
}
}
],
"totalCount": 0
}