Customization
Adapt Muse Glimmer to your domain in two stages, mirroring how the released model was post-trained: supervised fine-tuning (SFT) teaches the model your task format and style from labeled examples, and reinforcement learning (RL) optimizes behavior against a reward signal — preference data or a programmatic reward — where labeled targets alone aren't enough.
Most projects start (and often stop) at SFT. Use RL when you need to optimize an outcome you can score but can't fully demonstrate: preference alignment, tool-use success, or reward-shaped agentic behavior.
| Stage | What it does | When to use | Data you need |
|---|---|---|---|
| Fine-tuning (SFT) | Trains on labeled input→output examples (LoRA, QLoRA, or full) | Domain adaptation, style, format, instruction following | Prompt/response pairs in chat format |
| Reinforcement learning | Optimizes against a reward signal (preference or programmatic) | Preference alignment, tool-use success, agentic behavior | A reward model, preference pairs, or a verifiable reward |
Next steps
Prepare your data and run your first supervised fine-tune. When you have an SFT checkpoint that behaves well, layer on reinforcement learning. Deploy the result with any runtime.