Skip to main content

Create

To start a new fine-tuning job:
You must provide either --model (to start from a base model) or --from-checkpoint (to resume from a previous job). Before the job is submitted, the CLI prints an estimated price and asks for confirmation. Pass --confirm (or -y) to skip the prompt in scripts and CI.
If --training-file (or --validation-file) is a local path, the CLI uploads the file to the Files API automatically before kicking off the job.

Parameters

Weights & Biases

LoRA

Preference fine-tuning (DPO, RPO, SimPO)

The id field in the JSON response contains the fine-tune job ID (ft-…) that you use to retrieve status, list events, cancel the job, and download weights.

List

To list past and running fine-tune jobs:
Jobs are listed newest first.

Retrieve

To retrieve metadata for a job, including its current status:

List events

To list events of a past or running job:

Cancel

To cancel a running job:

List checkpoints

To list saved checkpoints of a job:
Each checkpoint includes step, path, created_at, checkpoint_type, and checkpoint (the download selector: model or adapter). When the job uploaded the artifact to the Together model registry, the entry also includes object_id and object_revision_id (for example, ml_… and rv_…). See Model registry object IDs for how these relate to the job-level model_object_id / adapter_object_id fields.

Download model weights

To download the weights of a fine-tuned model, run:
The command downloads Zstandard-compressed (.zst) weights. To extract them, run tar -xf filename.

Parameters

Delete

To delete a fine-tuning job:

Parameters