Monitor, manage, and deploy fine-tuning jobs from the Qwen Cloud console.
After creating a fine-tuning job, use the Qwen Cloud console to monitor progress, review results, and deploy trained models.
The fine-tuning list page shows all your jobs. Use the filter at the top to narrow by status. From here you can:
Click a job name to open the detail page, which has four tabs:
Review the full training configuration — base model, hyperparameters, dataset references, and token consumption. Use this tab to verify what was submitted.
Monitor training quality through charts:
View raw training logs to debug failures or track detailed progress.
Manage saved checkpoints here. Each checkpoint shows the epoch it was saved, publish status, and remaining TTL. Click Publish to make a checkpoint available as a custom model for deployment.
To use a checkpoint, you must publish it:
A custom model cannot be called via API until you create a deployment for it. After publishing a checkpoint:
Job list
The fine-tuning list page shows all your jobs. Use the filter at the top to narrow by status. From here you can:
- Click a job name to view its detail page.
- Click To Deploy on a completed job to create a deployment.
- Click Delete to remove a job and its associated data.
Job detail page
Click a job name to open the detail page, which has four tabs:
Details tab
Review the full training configuration — base model, hyperparameters, dataset references, and token consumption. Use this tab to verify what was submitted.
Metrics tab
Monitor training quality through charts:
- Training loss: Should decrease over time as the model improves.
- Validation loss: If it diverges from training loss, the model is overfitting.
- Accuracy: Token-level accuracy for both training and validation sets.
Logs tab
View raw training logs to debug failures or track detailed progress.
Output tab
Manage saved checkpoints here. Each checkpoint shows the epoch it was saved, publish status, and remaining TTL. Click Publish to make a checkpoint available as a custom model for deployment.
Publish checkpoints
To use a checkpoint, you must publish it:
- Go to the Output tab of the job detail page.
- Click Publish next to the desired checkpoint.
- Assign a model name. The published model appears in your Custom Models list.
Deploy trained models
A custom model cannot be called via API until you create a deployment for it. After publishing a checkpoint:
- Go to the Deployments page.
- Click Create Deployment and select your custom model.
- Once the deployment reaches Active, use its model code to call the API.
Stop and delete jobs
- Stop: Cancels a running job. Any completed checkpoints are preserved.
- Delete: Removes the job and its associated data. This action cannot be undone.
Job statuses
| Status | Description |
|---|---|
| Pending | Job is submitted and waiting for resources. |
| Queued | Job is in the scheduling queue. |
| Running | Training is actively in progress. |
| Completed | Training finished successfully. |
| Failed | Training encountered an error. Check logs for details. |