Retrieve fine-tuning job

GEThttps:/api.openai.com/v1/fine_tuning/jobs/{fine_tuning_job_id}

Get info about a fine-tuning job.

Learn more about fine-tuning

Path parameters

  • fine_tuning_job_id
    string
    Required
    The ID of the fine-tuning job.

Response

The fine-tuning object with the given ID.

Example request
1
curl https://api.openai.com/v1/fine_tuning/jobs/ft-AF1WoRqd3aJAHsqc9NY7iL8F \
2
-H "Authorization: Bearer $OPENAI_API_KEY"
Example response
1
{
2
"object": "fine_tuning.job",
3
"id": "ftjob-abc123",
4
"model": "davinci-002",
5
"created_at": 1692661014,
6
"finished_at": 1692661190,
7
"fine_tuned_model": "ft:davinci-002:my-org:custom_suffix:7q8mpxmy",
8
"organization_id": "org-123",
9
"result_files": [
10
"file-abc123"
11
],
12
"status": "succeeded",
13
"validation_file": null,
14
"training_file": "file-abc123",
15
"hyperparameters": {
16
"n_epochs": 4,
17
"batch_size": 1,
18
"learning_rate_multiplier": 1.0
19
},
20
"trained_tokens": 5768,
21
"integrations": [],
22
"seed": 0,
23
"estimated_finish": 0,
24
"method": {
25
"type": "supervised",
26
"supervised": {
27
"hyperparameters": {
28
"n_epochs": 4,
29
"batch_size": 1,
30
"learning_rate_multiplier": 1.0
31
}
32
}
33
}
34
}
Built with