Skip to main content
GET
/
v1
/
operations
/
{operation_id}
/
results
List fine-tuning operation checkpoints
curl --request GET \
  --url https://api.tokenfactory.nebius.com/v1/operations/{operation_id}/results \
  --header 'Authorization: Bearer <token>'
{
  "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>"
      ]
    }
  ],
  "object": "list",
  "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

operation_id
string
required

Query Parameters

limit
integer | null
after
string | null

Response

Successful Response

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