Views
No views yet
| Property | Benefit |
|---|---|
| 35B total params | Deep reasoning capacity for complex multi-step tasks |
| 3B active params | Fast inference — only 3B params compute per token |
| Expert routing | Different experts specialize in different command types |
| Efficient LoRA | Only 50MB adapter on top of base model |
| Parameter | Value |
|---|---|
| Base Model | Qwen/Qwen3.5-35B-A3B (MoE) |
| Architecture | Mixture-of-Experts (35B total, 3B active) |
| Method | LoRA (PEFT) + SFT (TRL) |
| Rank (r) | 32 |
| Alpha | 64 |
| Dropout | 0.05 |
| Target Modules | q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj |
| Adapter Size | 50 MB |
| Framework | TRL 0.29.1, Transformers 5.3.0, PyTorch 2.10.0, PEFT 0.18.1 |
| Training | HuggingFace Jobs (cloud GPU) |
1from transformers import pipeline
2
3generator = pipeline(
4 "text-generation",
5 model="cagataydev/qwen3.5-35B-A3B-cagatay",
6 device_map="auto",
7 torch_dtype="auto"
8)
9
10# Complex multi-step robotics reasoning
11output = generator(
12 [{"role": "user", "content": "You're a household robot. The kitchen is messy after cooking. Plan a complete cleanup sequence, considering what needs to be done first and why."}],
13 max_new_tokens=512,
14 return_full_text=False
15)[0]
16print(output["generated_text"])1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4base = AutoModelForCausalLM.from_pretrained(
5 "Qwen/Qwen3.5-35B-A3B",
6 torch_dtype="auto",
7 device_map="auto"
8)
9model = PeftModel.from_pretrained(base, "cagataydev/qwen3.5-35B-A3B-cagatay")
10tokenizer = AutoTokenizer.from_pretrained("cagataydev/qwen3.5-35B-A3B-cagatay")| Model | Base | Total / Active | Best For |
|---|---|---|---|
| qwen2.5-omni-3b | Qwen 2.5 3B | 1.8B / 1.8B | Voice commands |
| qwen3.5-4B | Qwen 3.5 4B | 4B / 4B | Simple task planning |
| qwen3.5-35B-A3B | Qwen 3.5 35B MoE | 35B / 3B | Complex reasoning (this) |
| Setup | Works? | Notes |
|---|---|---|
| A100 80GB | ✅ | Full precision |
| L40S 46GB | ✅ | bf16 |
| RTX 4090 24GB | ✅ | 4-bit quantization (GPTQ/AWQ) |
| Jetson Orin 32GB | ⚠️ | Needs quantization |
| Consumer 16GB | ❌ | Too large even quantized |