Principle:Mistralai Client python Finetuning Job Control
| Knowledge Sources | |
|---|---|
| Domains | Fine_Tuning, Job_Management |
| Last Updated | 2026-02-15 14:00 GMT |
Overview
A job lifecycle control pattern that starts queued fine-tuning jobs and cancels running ones.
Description
Finetuning Job Control provides explicit lifecycle management for training jobs. start transitions a queued job to running (useful when auto_start was not set). cancel requests cancellation of a running or queued job. These operations provide manual control over training resource usage and job scheduling.
Usage
Use start when a job was created without auto_start=True. Use cancel to abort a job that is no longer needed.
Theoretical Basis
Job lifecycle states:
- CREATED → (start) → QUEUED → RUNNING → SUCCEEDED / FAILED
- Any active state → (cancel) → CANCELLATION_REQUESTED → CANCELLED