85742ab165
Deploy Documentation / deploy (push) Has been cancelled
CPU Test / Test (Utilities, legacy, Python 3.10) (push) Has been cancelled
CPU Test / Test (LLM proxy, stable, Python 3.11) (push) Has been cancelled
CPU Test / Test (Others, stable, Python 3.11) (push) Has been cancelled
CPU Test / Test (Store, stable, Python 3.11) (push) Has been cancelled
CPU Test / Test (Utilities, stable, Python 3.11) (push) Has been cancelled
CPU Test / Test (Weave, stable, Python 3.11) (push) Has been cancelled
CPU Test / Test (AgentOps, stable, Python 3.12) (push) Has been cancelled
CPU Test / Test (LLM proxy, stable, Python 3.12) (push) Has been cancelled
CPU Test / Test (Others, stable, Python 3.12) (push) Has been cancelled
CPU Test / Test (Weave, latest, Python 3.13) (push) Has been cancelled
Dashboard / Chromatic (push) Has been cancelled
CPU Test / Lint - fast (push) Has been cancelled
CPU Test / Lint - next (push) Has been cancelled
CPU Test / Lint - slow (push) Has been cancelled
CPU Test / Lint - JavaScript (push) Has been cancelled
CPU Test / Build documentation (push) Has been cancelled
CPU Test / Test (AgentOps, legacy, Python 3.10) (push) Has been cancelled
CPU Test / Test (LLM proxy, legacy, Python 3.10) (push) Has been cancelled
CPU Test / Test (Others, legacy, Python 3.10) (push) Has been cancelled
CPU Test / Test (Store, legacy, Python 3.10) (push) Has been cancelled
CPU Test / Test (Weave, legacy, Python 3.10) (push) Has been cancelled
CPU Test / Test (AgentOps, stable, Python 3.11) (push) Has been cancelled
CPU Test / Test (Store, stable, Python 3.12) (push) Has been cancelled
CPU Test / Test (Utilities, stable, Python 3.12) (push) Has been cancelled
CPU Test / Test (Weave, stable, Python 3.12) (push) Has been cancelled
CPU Test / Test (AgentOps, latest, Python 3.13) (push) Has been cancelled
CPU Test / Test (LLM proxy, latest, Python 3.13) (push) Has been cancelled
CPU Test / Test (Others, latest, Python 3.13) (push) Has been cancelled
CPU Test / Test (Store, latest, Python 3.13) (push) Has been cancelled
CPU Test / Test (Utilities, latest, Python 3.13) (push) Has been cancelled
CPU Test / Test (JavaScript) (push) Has been cancelled
78 lines
3.4 KiB
Markdown
78 lines
3.4 KiB
Markdown
# Unsloth SFT Example
|
|
|
|
[](https://github.com/microsoft/agent-lightning/actions/workflows/examples-unsloth.yml)
|
|
|
|
This example demonstrates Supervised Fine-Tuning (SFT) using the Unsloth library for efficient training with 4-bit quantization and LoRA. The example trains a math-solving agent on the GSM-hard dataset. It's compatible with Agent-lightning v0.2 or later.
|
|
|
|
## Overview
|
|
|
|
The SFT workflow iteratively improves the model by collecting rollouts, ranking them by reward, and fine-tuning on the top-performing examples. Unsloth optimizes the training process with memory-efficient techniques including 4-bit quantization, LoRA (Low-Rank Adaptation), and gradient checkpointing.
|
|
|
|
## Requirements
|
|
|
|
Follow the [installation guide](../../docs/tutorials/installation.md) to install Agent-Lightning, PyTorch and vLLM. You will not need VERL for this example. Additionally, install Unsloth and related packages.
|
|
|
|
```bash
|
|
pip install torch==2.8.0 torchvision==0.23.0 --index-url https://download.pytorch.org/whl/cu128
|
|
pip install vllm==0.10.2
|
|
pip install unsloth==2025.10.1 unsloth_zoo==2025.10.1 bitsandbytes peft datasets transformers trl kernels
|
|
|
|
pip install openai-agents mcp
|
|
```
|
|
|
|
This example requires a GPU with 16GB memory to load models in 4-bit quantization. The training uses LoRA to reduce memory requirements during fine-tuning.
|
|
|
|
## Dataset
|
|
|
|
The example uses the GSM-hard dataset from Hugging Face. The dataset contains mathematical reasoning problems with numeric answers. A convenience function is provided in `math_agent.py` to download the first 64 samples for quick experimentation. The samples have already been included in the repository in `data_gsmhard.jsonl`.
|
|
|
|
## Included Files
|
|
|
|
| File/Directory | Description |
|
|
|----------------|-------------|
|
|
| `math_agent.py` | Math agent implementation using the OpenAI Agents library and MCP calculator tool |
|
|
| `sft_allinone.py` | All-in-one SFT training script that runs the complete workflow |
|
|
| `sft_algorithm.py` | Core SFT algorithm implementation with data collection and training logic |
|
|
| `sft_rollout_runners.py` | Rollout runner configuration for parallel agent execution |
|
|
| `unsloth_helper.py` | Unsloth training utilities with LoRA configuration and model management |
|
|
| `data_gsmhard.jsonl` | Local copy of GSM-hard dataset samples (64 samples) |
|
|
|
|
## Running Examples
|
|
|
|
### Training
|
|
|
|
The all-in-one script handles the complete SFT workflow including store management, rollout execution, and model training:
|
|
|
|
```bash
|
|
python sft_allinone.py
|
|
```
|
|
|
|
See [How to Fine-tune with Unsloth](../../docs/how-to/unsloth-sft.md) for more details.
|
|
|
|
### Training in Separate Processes
|
|
|
|
The all-in-one script is recommended for most use cases. However, you can also run the algorithm, runners, and store in separate processes if needed:
|
|
|
|
```bash
|
|
# Terminal 1: Start the store
|
|
agl store
|
|
|
|
# Terminal 2: Run the algorithm
|
|
python sft_algorithm.py
|
|
|
|
# Terminal 3: Run the rollout runners
|
|
python sft_rollout_runners.py
|
|
```
|
|
|
|
This approach provides more control for debugging and distributed setups but requires manual coordination between processes.
|
|
|
|
### Debugging
|
|
|
|
To test the math agent without training:
|
|
|
|
```bash
|
|
python math_agent.py
|
|
```
|
|
|
|
This runs a dry run with a few problems to verify the agent setup. Set `OPENAI_API_KEY` and `OPENAI_BASE_URL` environment variables to configure the API endpoint.
|