Views
No views yet
Architecture: DENSE (NOT MoE) — All 27B parameters are active on every token. No expert routing.
| Property | Value |
|---|---|
| Base model | Qwen3.5-27B-GLM5.1-Distill-v1 |
| Parameters | 27B (all active, dense) |
| Layers | 64 (48 GDN recurrent + 16 full-attention, every 4th layer) |
| Architecture | Qwen3_5ForConditionalGeneration (hybrid GDN) |
| Vocab | 248,320 |
| Context | 262,144 |
| File | Type | Size | PPL | Notes |
|---|---|---|---|---|
...-APEX-Quality-v5.gguf | APEX Q4_K_M + edge upgrades | 16.18 GB | 5.5596 | Best quality — beats built-in Q4_K_M |
...-Q4_K_M.gguf | Built-in Q4_K_M | 15.41 GB | 5.5687 | Baseline |
...-Q8_0.gguf | Q8_0 | ~27 GB | — | High quality reference |
...-F16-fixed2.gguf | F16 | 53.8 GB | ~5.55 | Full precision (fixed block_count) |
1# 1. Convert to F16 and fix metadata (block_count bug: 65 → 64)
2python3 convert_hf_to_gguf.py safetensors_source/ --outfile model-F16.gguf --outtype f16
3llama-quantize \
4 --override-kv 'qwen35.block_count=int:64' \
5 --override-kv 'qwen35.nextn_predict_layers=int:0' \
6 model-F16.gguf model-F16-fixed.gguf COPY
7
8# 2. Quantize with APEX tensor-type-file (see APEX-Quality-v5.tensor_types.txt)
9llama-quantize \
10 --tensor-type-file APEX-Quality-v5.tensor_types.txt \
11 model-F16-fixed.gguf APEX-Quality-v5.gguf Q4_K_M
12
13# 3. Benchmark (MUST use c=2048, not default c=512)
14llama-perplexity -m APEX-Quality-v5.gguf -f wiki.test.raw -c 2048 --chunks 10 -t 4