Views
No views yet
nn.Linear), so standard
per-expert PEFT is impossible. We instead freeze all 256 routed experts and the router
(Chinese capacity and routing untouched) and LoRA-adapt only the shared-expert + attention
projections (7 module types, ~8.4M params, 0.024%). A routing profile over hi/te vs zh/en confirmed
Indic specialization concentrates in the final + early script layers. Trained with continued
pretraining on IndicCorpV2/Sangraha Hindi+Telugu (CC0/CC-BY) plus English+Chinese replay.Qwen/Qwen3.6-35B-A3Bgate/up/down_proj) + attention (q/k/v/o_proj), rsLoRA r=161from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3.6-35B-A3B", torch_dtype="bfloat16", device_map="auto")
4model = PeftModel.from_pretrained(base, "srallaba/tarak-qwen3.6-35b-a3b-rsi-v1")