What this is
Managed SFT jobs are the shortest path for supervised adaptation when you do not need a custom per-step objective loop.Workflow
- Create/upload dataset and validate readiness.
- Launch supervised fine-tuning job with training configuration.
- Monitor job until terminal state and hand off to deployment.
End-to-end examples
Create dataset and upload training data
Launch and monitor SFT job
Deploy resulting model
Operational guidance
- SFT managed jobs optimize a supervised objective without requiring custom per-step loss code.
- Use a fixed held-out set and evaluate before promoting a trained model to production.
- If you need custom objective functions, move to the service-mode Training SDK loop paths instead of managed SFT jobs. Service-mode trainer jobs currently support full-parameter tuning only (
lora_rank=0).