Fine-Tuning Service
Cancel Fine-tuning Job
Cancel a fine-tuning job
POST
Requires version 1.1.5 or later of the Archetype platform.
Overview
Cancel a fine-tuning job. Force-stops the run (worker pods are killed without a final checkpoint) and tears down its resources. A cancelled job cannot be resumed; use the Pause Job endpoint for a graceful, resumable stop instead.Request
A TypeID-encoded identifier with the
FineTuningJobId prefix, which identifies the
fine-tuning job.Response
Returns a description of the fine-tuning job after cancellation.The object type. Always
fine_tuning.job.A unique identifier for 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. To determine whether a
COMPLETED job was fully or partially successful, or produced no output, see the value of the
outcome property.Identifiers of the files used to train the model.
Identifiers of the files used to evaluate the model during training.
Failure detail when the job has failed, as the platform error envelope (a list of
{code, message, suggestion, error_uid}). Empty while the job is queued/running or on success. See
Error Handling for information about handling platform errors.The checkpoint the job was started from, or
null if it trained from the base model.The name of the model produced by the job. This is available once training has succeeded but 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 string indicates whether it succeeded fully (SUCCESS), partially (PARTIAL), or produced nothing (FAILED); null for any non-completed status.Seed. The random seed used for the job.
The suffix supplied on the request, applied to the fine-tuned model’s name.