Views
No views yet
| File | Quantization | Size | Notes |
|---|---|---|---|
Qwen3.5-35B-A3B.Q4_K_M.gguf | Q4_K_M | ~20 GB | Recommended — good quality/size trade-off |
Qwen3.5-35B-A3B.Q5_K_M.gguf | Q5_K_M | ~17 GB | Higher quality |
Qwen3.5-35B-A3B.BF16-*.gguf | BF16 (sharded) | ~66 GB | Full precision — re-quantize yourself |
*-mmproj.gguf | BF16 | ~861 MB | Multimodal projection (Unsloth artefact) |
| Property | Value |
|---|---|
| Base model | unsloth/Qwen3.5-35B-A3B |
| Architecture | Qwen3.5 MoE — 35B total params, ~3B active |
| Distillation teacher | DeepSeek-V4-Flash |
| LoRA config (pre-merge) | r=16, alpha=32, BF16, targets: q/k/v/o_proj |
| Task | 5G NR drive-test fault diagnosis (multi-choice) |
| Quantization tool | Unsloth save_pretrained_gguf |
1# Q4_K_M — ~24 GB VRAM or RAM
2llama-cli -m Qwen3.5-35B-A3B.Q4_K_M.gguf \
3 --chat-template qwen3 \
4 -p "You are a 5G NR troubleshooting expert..." \
5 -n 512
6
7# Q5_K_M
8llama-cli -m Qwen3.5-35B-A3B.Q5_K_M.gguf \
9 --chat-template qwen3 \
10 -n 512