Views
No views yet
| Architecture | qwen35moe (Qwen3.5 / 3.6 MoE family) |
| Trunk layers | 40 |
| Experts | 256 total, 8 active per token |
| Context (train) | 262144 tokens |
| Vocab | 248320 |
| Vision | Supported via mmproj-BF16.gguf (optional) |
| MTP draft head | Not included in this release (see note below) |
| File | Size | When to use |
|---|---|---|
Nex-N2-mini-UD-Q3_K_XL.gguf | ~17 GB | Smallest; more VRAM-friendly |
Nex-N2-mini-UD-Q4_K_M.gguf | ~22 GB | Good default balance |
Nex-N2-mini-UD-Q4_K_XL.gguf | ~22 GB | Recommended quality / size sweet spot |
Nex-N2-mini-UD-Q5_K_XL.gguf | ~27 GB | Higher quality |
Nex-N2-mini-UD-Q6_K_XL.gguf | ~32 GB | Highest quality in this set |
mmproj-BF16.gguf | ~0.9 GB | Image / vision input (optional) |
imatrix_unsloth.gguf_file | ~0.2 GB | Importance matrix used during quantization (reference only) |
.gguf model files are at the repo root (flat layout).1llama-server \
2 -m Nex-N2-mini-UD-Q4_K_XL.gguf \
3 --host 127.0.0.1 --port 8080 \
4 -c 8192 \
5 -ngl 99 \
6 -fa on \
7 --cache-type-k q8_0 \
8 --cache-type-v q8_0http://127.0.0.1:8080 in your browser for the built-in chat UI.llama-cli -m Nex-N2-mini-UD-Q4_K_XL.gguf -ngl 99 -fa on1llama-server \
2 -m Nex-N2-mini-UD-Q4_K_XL.gguf \
3 --mmproj mmproj-BF16.gguf \
4 -ngl 99 \
5 -fa on--mmproj.-ngl 99 (or --gpu-layers 99): offloads attention and dense weights to the GPU.-ncmoe N / --n-cpu-moe N: keeps routed expert weights for the first N layers in system RAM; later layers stay on GPU. Useful on 12–16 GB GPUs.N to taste):1llama-server -m Nex-N2-mini-UD-Q4_K_XL.gguf -ngl 99 -ncmoe 30 -fa on -c 8192 \
2 --cache-type-k q8_0 --cache-type-v q8_0-ncmoe = more expert layers on CPU = lower VRAM use, slower generation.block_count=40 and nextn_predict_layers=0, so they load cleanly in current llama.cpp without extra flags.missing tensor blk.40.attn_norm.weight, re-download from this repo, or add:--override-kv qwen35moe.block_count=int:40,qwen35moe.nextn_predict_layers=int:0imatrix_unsloth.gguf_file)convert_hf_to_gguf.py + llama-quantize