Views
No views yet
Qwen/Qwen2.5-3B-Instruct that beats the purpose-built Vietnamese
specialist Arcee-VyLinh-3B on both axes at matched size, on-device, for ≈$0 — produced not by
more training but by weight-space merging two specialist adapters.ΔW = 0.5·ΔW_register + 0.5·ΔW_knowledge (DoRA magnitudes weighted-averaged). No additional training.| Model | VMLU (knowledge) | Register vs VyLinh |
|---|---|---|
| Qwen2.5-3B-Instruct (base) | 52.5 | — |
| Arcee-VyLinh-3B (target) | 53.5 | 50% (bar) |
| Arm A v2 (register only) | 49.1 | 56.7% |
| Arm C (knowledge only) | 56.5 | 40.0% |
| this merge (α0.50) | 55.5 (+2.0) | 53.3% (>50%) |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3tok = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-3B-Instruct")
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-3B-Instruct", device_map="auto")
5model = PeftModel.from_pretrained(base, "<this-repo-id>")