Create Fine Tune Job
POST/api/2/auto_eval/fine_tune_job/create
Create an evaluator fine-tuning job using a labeled Dataset.
Request
- application/json
Body
fineTuneJobConfig
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.
name string
Optional name for the job.
description string
Optional description for the job.
baselineModelId
object
required
value stringrequired
trainDatasetId
object
required
value stringrequired
testDatasetId
object
required
value stringrequired
selectedColumns string[]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.
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
jobId
object
required
value stringrequired
{
"jobId": {
"value": "string"
}
}
Loading...