Fine-tuning in Pioneer adapts a base model to your specific task and domain using your labeled dataset. You submit a training job through the API, Pioneer handles the compute, and you get back a trained model you can call for inference or download. The whole process is asynchronous — you start the job, then poll until it finishes.Documentation Index
Fetch the complete documentation index at: https://docs.pioneer.ai/llms.txt
Use this file to discover all available pages before exploring further.
Training job lifecycle
Every training job moves through a fixed sequence of states:
A job may also end in failed (an error occurred during training) or stopped (you manually cancelled it with
POST /felix/training-jobs/:id/stop).
Key parameters
| Parameter | Required | Description |
|---|---|---|
model_name | Yes | A name for your trained model, used to identify it in your account. |
base_model | Yes | The model ID to fine-tune. Use a value from GET /base-models or a checkpoint UUID from a previous job. |
datasets | Yes | An array of dataset objects: [{"name": "your-dataset-name"}]. |
training_type | No | "lora" (default, parameter-efficient) or "full" (all weights). |
nr_epochs | No | Number of training epochs. Defaults to a reasonable value for the base model. |
learning_rate | No | Learning rate. Omit to use the default for the chosen base model. |
base_model is required. Omitting it returns a 422 validation error. The value must be a model ID from GET /base-models or a checkpoint UUID — not a free-form string.Starting a training job
id — you’ll use it to poll status, retrieve metrics, and run inference against your trained model.
Polling status and reading metrics
Poll the job endpoint until status iscomplete or failed:
Stopping a job
If you need to cancel a running job:stopped. Partial checkpoints saved before the stop may still be available.
Checkpoints and downloading weights
Pioneer saves checkpoints during training. You can list them at any point after the job starts:base_model value in a new training job to continue training from that checkpoint.
Training endpoints summary
| Method | Endpoint | Description |
|---|---|---|
POST | /felix/training-jobs | Start a new training job |
GET | /felix/training-jobs | List all training jobs |
GET | /felix/training-jobs/:id | Get job status and metrics |
GET | /felix/training-jobs/:id/logs | Stream training logs |
GET | /felix/training-jobs/:id/checkpoints | List saved checkpoints |
GET | /felix/training-jobs/:id/download | Download trained weights |
POST | /felix/training-jobs/:id/stop | Stop a running job |
DELETE | /felix/training-jobs/:id | Delete a training job record |