Skip to main content
GET

Authorizations

Authorization
string
header
default:default
required

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

Path Parameters

id
string
required

The ID of the job to retrieve

Response

200 - application/json

Fine-tune job details retrieved successfully

id
string<uuid>
required
user_id
string
required

ID of the user who owns the fine-tune job.

status
enum<string>
required
Available options:
pending,
queued,
running,
compressing,
uploading,
cancel_requested,
cancelled,
error,
completed
training_file
string
validation_file
string
model
string
model_output_name
string
model_output_path
string
model_object_id
string

Together model registry object ID for the final model weights (e.g. ml_...).

model_object_revision_id
string

Together model registry revision ID for the final model weights (e.g. rv_...).

adapter_object_id
string

Together model registry object ID for the final adapter weights on LoRA jobs.

adapter_object_revision_id
string

Together model registry revision ID for the final adapter weights on LoRA jobs.

trainingfile_numlines
integer
trainingfile_size
integer
created_at
string<date-time>
updated_at
string<date-time>
started_at
string<date-time>
n_epochs
integer
n_checkpoints
integer
n_evals
integer
batch_size
default:max
learning_rate
number
lr_scheduler
object
warmup_ratio
number
max_grad_norm
number
weight_decay
number
eval_steps
integer
train_on_inputs
default:auto
training_method
object
training_type
object
multimodal_params
object
job_id
string
events
object[]
token_count
integer
param_count
integer
total_price
integer
epochs_completed
integer
queue_depth
integer
wandb_project_name
string
wandb_url
string
from_checkpoint
string
from_hf_model
string
hf_model_revision
string
progress
object

Progress information for a fine-tuning job

early_stopped
boolean

Whether the early-stopping criterion triggered.

early_stopping_best_step
integer

Step associated with the selected early-stopping artifact. When early_stopping_best_metric is null, no finite best metric was recorded; this is the halt step, not a best-checkpoint step.

early_stopping_best_metric
number | null

Best validation loss observed, corresponding to early_stopping_best_step. Null if no improving evaluation was recorded (for example, a non-finite first evaluation).