curl --request GET \
--url https://api.openai.com/v1/fine_tuning/jobs/{fine_tuning_job_id}/checkpoints \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"created_at": 123,
"fine_tuned_model_checkpoint": "<string>",
"step_number": 123,
"metrics": {
"step": 123,
"train_loss": 123,
"train_mean_token_accuracy": 123,
"valid_loss": 123,
"valid_mean_token_accuracy": 123,
"full_valid_loss": 123,
"full_valid_mean_token_accuracy": 123
},
"fine_tuning_job_id": "<string>",
"object": "fine_tuning.job.checkpoint"
}
],
"object": "list",
"first_id": "<string>",
"last_id": "<string>",
"has_more": true
}
curl --request GET \
--url https://api.openai.com/v1/fine_tuning/jobs/{fine_tuning_job_id}/checkpoints \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"created_at": 123,
"fine_tuned_model_checkpoint": "<string>",
"step_number": 123,
"metrics": {
"step": 123,
"train_loss": 123,
"train_mean_token_accuracy": 123,
"valid_loss": 123,
"valid_mean_token_accuracy": 123,
"full_valid_loss": 123,
"full_valid_mean_token_accuracy": 123
},
"fine_tuning_job_id": "<string>",
"object": "fine_tuning.job.checkpoint"
}
],
"object": "list",
"first_id": "<string>",
"last_id": "<string>",
"has_more": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The ID of the fine-tuning job to get checkpoints for.
"ft-AF1WoRqd3aJAHsqc9NY7iL8F"
Identifier for the last checkpoint ID from the previous pagination request.
Number of checkpoints to retrieve.
OK
The response is of type object
.