Jump to content

Connect SuperML | Leeroopedia MCP: Equip your AI agents with best practices, code verification, and debugging knowledge. Powered by Leeroo — building Organizational Superintelligence. Contact us at founders@leeroo.com.

Principle:Mistralai Client python Finetuning Job Control

From Leeroopedia
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

Related Pages

Implemented By

Page Connections

Double-click a node to navigate. Hold to expand connections.
Principle
Implementation
Heuristic
Environment