Views
No views yet
Qwen/Qwen3-4B-Instruct-2507 をベースモデルとし、LoRA でファインチューニング後にマージした AgentBench タスク向けモデルを提供します。Output: マーカー以降のアシスタント出力にのみ適用されています。| パラメータ | 値 |
|---|---|
| ベースモデル | Qwen/Qwen3-4B-Instruct-2507 |
| 手法 | LoRA (bfloat16) |
| 最大シーケンス長 | 2048 |
| エポック数 | 2 |
| 学習率 | 2e-6 |
| LoRA r | 64 |
| LoRA alpha | 128 |
| LoRA dropout | 0 |
| LoRA ターゲット | q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj |
| バッチサイズ | 2 per device x 4 gradient accumulation = 8 effective |
| Warmup ratio | 0.1 |
| Weight decay | 0.05 |
| Label smoothing | 0 |
| NEFTune noise alpha | 0 |
| Max grad norm | 1.0 |
| Seed | 3407 |
| 指標 | スコア |
|---|---|
| overall_cat_accuracy | 42.1% |
| UPDATE | 85.0% |
| aggregation-AVG | 57.1% |
| aggregation-SUM | 50.0% |
| other | 42.9% |
| SELECT | 31.1% |
| ranking | 30.0% |
| comparison | 22.2% |
| counting | 18.2% |
| aggregation-MIN | 20.0% |
| aggregation-MAX | 16.7% |
| INSERT | 10.1% |
| 指標 | スコア |
|---|---|
| success_rate | 16.0% (8/50) |
| completed | 16.0% |
| agent invalid action | 58.0% |
| task limit reached | 26.0% |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "tmiyamoto/qwen3-4b-agentbench-exp03"
4
5tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
6model = AutoModelForCausalLM.from_pretrained(
7 model_id, torch_dtype="auto", device_map="auto", trust_remote_code=True
8)1vllm serve tmiyamoto/qwen3-4b-agentbench-exp03 \
2 --max-model-len 8192 \
3 --gpu-memory-utilization 0.95