Views
No views yet
unsloth/Qwen3.5-35B-A3B
(a Qwen3.5 VL MoE: 35B total / ~3B active, 256 experts, hybrid linear+full
attention, with a vision tower) on a corpus of spinal-cord-stimulation (SCS) and
motor-recovery research papers.transformers / vLLM / Unsloth.q/k/v/o_proj, gated-DeltaNet linear-attn
projections, and the always-on shared-expert MLP (310 modules, ~21M params,
0.06% of the model). The 256 routed experts are fused tensors and were not
adapted.mtp_num_hidden_layers: 0); it is used only for speculative decoding and
does not affect generation.unsloth/Qwen3.5-35B-A3B.1from transformers import AutoModelForImageTextToText, AutoProcessor
2
3model = AutoModelForImageTextToText.from_pretrained(
4 "achuthc1298/llm_scs_3.5_35B", dtype="bfloat16", device_map="auto",
5)
6proc = AutoProcessor.from_pretrained("achuthc1298/llm_scs_3.5_35B")