Views
No views yet
unsloth/Qwen3-4B-Instruct-2507, trained for agentic code repair on the local SWE-Gym moto investigation using a search/replace patch format and honest anchored retrieval./mnt/disks/unslothai/datta0/cache/qwen3-grpo-patch/20260604_224830_swegym_q4b-kl02-multionly-sft-lr2e5_389b336/checkpoints/best_holdoutunsloth/Qwen3-4B-Instruct-2507imdatta0/qwen3-4b-swegym-moto-kl02-adapter2e-5136| Qwen3-4B held-out | greedy | pass@8 | single pass@8 | multi pass@8 |
|---|---|---|---|---|
| visible16k SFT-only | 8/35 | 10-11/35 | 8/18 | 2-3/17 |
| KL02 from visible16k SFT | 8/35 | 11-12/35 | 8-9/18 | 3-4/17 |
| KL02 + multi-only SFT | 9/35 | 10/35 | 8/18 | 2/17 |
imdatta0/qwen3-4b-swegym-moto-kl02-adapter1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4base = "unsloth/Qwen3-4B-Instruct-2507"
5adapter = "imdatta0/qwen3-4b-swegym-moto-kl02-multionly-sft-lr2e5-adapter"
6
7tokenizer = AutoTokenizer.from_pretrained(adapter)
8model = AutoModelForCausalLM.from_pretrained(base)
9model = PeftModel.from_pretrained(model, adapter)