GET
/
v1
/
fine_tuning
/
jobs
/
{job_id}
/
checkpoints
List fine-tuning checkpoints
curl --request GET \
  --url https://api.studio.nebius.com/v1/fine_tuning/jobs/{job_id}/checkpoints \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "<string>",
      "created_at": 123,
      "fine_tuned_model_checkpoint": "<string>",
      "fine_tuning_job_id": "<string>",
      "metrics": {
        "full_valid_loss": 123,
        "full_valid_mean_token_accuracy": 123,
        "step": 123,
        "train_loss": 123,
        "train_mean_token_accuracy": 123,
        "valid_loss": 123,
        "valid_mean_token_accuracy": 123
      },
      "object": "fine_tuning.job.checkpoint",
      "step_number": 123,
      "result_files": [
        "<string>"
      ]
    }
  ],
  "first_id": "<string>",
  "last_id": "<string>",
  "has_more": false
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

job_id
string
required

Query Parameters

limit
integer | null
after
string | null

Response

Successful Response

data
FineTuningJobCheckpoint · object[]
required
object
string
default:list
first_id
string | null
last_id
string | null
has_more
boolean
default:false