GET
/
v1
/
fine_tuning
/
jobs
/
{job_id}
/
checkpoints
/
{checkpoint_id}
Get fine-tuning checkpoint
curl --request GET \
  --url https://api.studio.nebius.com/v1/fine_tuning/jobs/{job_id}/checkpoints/{checkpoint_id} \
  --header 'Authorization: Bearer <token>'
{
  "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
}

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
checkpoint_id
string
required

Response

Successful Response

id
string
required
created_at
integer
required
fine_tuned_model_checkpoint
string
required
fine_tuning_job_id
string
required
metrics
object
required
object
enum<string>
required
Available options:
TitleConst
Objectfine_tuning.job.checkpoint
step_number
integer
required