Fine-Tuning Service
Pause Fine-tuning Job
Pause a fine-tuning job
POST
Requires version 1.1.5 or later of the Archetype platform.
Overview
Pauses a fine-tuning job, stopping the run; use Resume Job to continue it.To cancel a job and tear down its resources without the ability to resume the job, use the
Cancel Job endpoint instead.
Request
The fine-tuning job ID of the job to pause. This is a TypeID-encoded identifier with the
FineTuningJobId prefix.Response
Returns a description of the fine-tuning job’s state after pausing.The object type. Always
fine_tuning.job.Unique identifier of the fine-tuning job.
The human-readable name supplied when the job was created.
The base model being fine-tuned.
The Unix timestamp (in seconds) at which the job was created.
The organization that owns the job.
The job’s current lifecycle stage. One of
PENDING, ADMITTED, RUNNING, COMPLETED, FAILED, PREEMPTED, CANCELLED, PAUSED, INTERRUPTED.Identifiers of the files used to train the model.
Identifiers of the files used to evaluate the model during training.
Failure details if the job has failed, as the platform error envelope (a list of
{code, message, suggestion, error_uid}). Empty while the job is queued, the job is running, or when
the job has successfully completed.The checkpoint ID of the checkpoint from which the job was started, or
null if it trained from the base model.Name of the model produced by the job. This is available once training has succeeded, and is
null until then.The Unix timestamp (in seconds) at which the job finished, or
null if it is not yet complete.For a
COMPLETED job, this specifies whether it succeeded fully (SUCCESS), partially
(PARTIAL), or produced nothing (FAILED). If the job hasn’t yet completed, this is null.The random seed used for the job.
The suffix supplied on the request, applied to the fine-tuned model’s name.