GET
/
v1
/
fine_tuning
/
jobs
/
{job_id}
curl --request GET \
  --url https://api.vlm.run/v1/fine_tuning/jobs/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "usage": {
    "elements_processed": 123,
    "element_type": "image",
    "credits_used": 123
  },
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z",
  "status": "pending",
  "message": "<string>",
  "model": "<string>",
  "suffix": "<string>",
  "wandb_base_url": "<string>",
  "wandb_project_name": "<string>",
  "wandb_url": "<string>"
}

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

Response

200
application/json
Successful Response

Response to the VLM API for fine-tuning a model.

message
string
required

The message from the fine-tuning job.

model
string
required

The model identifier to fine-tune (has the format ft:vlm-1:<my-org>:<custom_suffix>:id).

usage
object

The usage metrics for the request.

id
string

The unique identifier for the fine-tuning job.

created_at
string

The date and time when the job was created (in UTC timezone).

completed_at
string | null

The date and time when the job was completed (in UTC timezone).

status
enum<string>
default:
pending

The status of the fine-tuning job.

Available options:
enqueued,
pending,
running,
completed,
failed,
paused
suffix
string | null

The suffix to use for the fine-tuned model.

wandb_base_url
string | null
default:
https://api.wandb.ai

The base URL to use for Weights & Biases.

wandb_project_name
string | null

The project to use for the fine-tuning job.

wandb_url
string | null

The URL to the Weights & Biases project.