Fine-tuning
Creates a fine-tuning job which begins the process of creating a new model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about fine-tuning](https://platform.openai.com/docs/guides/fine-tuning)
post/fine_tuning/jobs
Request body
Example request
{
"training_file": "file-abc123",
"validation_file": "file-abc123",
"integrations": [
{
"wandb": {
"project": "my-wandb-project",
"tags": [
"custom-tag"
]
}
}
],
"seed": 42
}Response
OK
Example response
{
"result_files": [
"file-abc123"
],
"integrations": [
{
"wandb": {
"project": "my-wandb-project",
"tags": [
"custom-tag"
]
}
}
]
}