Views
No views yet
| Config | Reward | Error Rate |
|---|---|---|
| LoRA ep5 t=0.5 | 0.356 | 22.2% |
| LoRA ep4 t=0.7 | 0.341 | 21.6% |
| Base t=0.5 | 0.322 | 28.4% |
| Base t=0.7 | 0.220 | 27.8% |
| Service | LoRA ep5 t=0.5 | Base t=0.5 | Delta |
|---|---|---|---|
| Box | 0.266 | 0.100 | +0.166 |
| Calendar | 0.453 | 0.369 | +0.084 |
| Linear | 0.317 | 0.142 | +0.175 |
| Slack | 0.435 | 0.452 | -0.017 |
SFTConfig(
num_train_epochs=8,
per_device_train_batch_size=1,
gradient_accumulation_steps=6,
learning_rate=5e-5,
lr_scheduler_type="cosine",
warmup_ratio=0.08,
bf16=True,
max_length=64000,
optim="adamw_torch_fused",
gradient_checkpointing=True,
save_strategy="epoch",
packing=False,
)1export HF_TOKEN='your_token'
2vllm serve mistralai/Ministral-3-14B-Instruct-2512 \
3 --tokenizer_mode mistral --config_format mistral --load_format mistral \
4 --enable-lora \
5 --lora-modules agent-diff=ministral-3-14b-agent-diff-sft-lora \
6 --enable-auto-tool-choice --tool-call-parser mistral \
7 --max-model-len 64000 \
8 --max-lora-rank 64 \
9 --enforce-eager1prime eval hubert-marek/agent-diff-bench \
2 -m agent-diff \
3 --api-base-url http://localhost:8000/v1 \
4 -n -1 -r 3 -c 15 \
5 --max-retries 20 \
6 --env-args '{"agentdiff_api_key": "YOUR_KEY"}' \
7 --save-results \
8 --temperature 0.5