Views
No views yet
| Base model | DeepSeek V4 Flash |
| Donor GGUF | antirez IQ2XXS-w2Q2K-AProjQ8 (80.8 GiB) |
| Pruning method | REAP (Cerebras Research) |
| Routed experts | 128 per layer (down from 256) |
| Kept slots | 5,888 / 11,008 |
| Hash-preserved | Layers 0-2 (256 experts each) |
| Pruned | Layers 3-42 (128 experts each) |
| Format | ds4-compact-v1 GGUF |
| File size | 46.98 GiB |
| Quantization | Uniform IQ2_XXS / Q2_K experts in all layers |
This is the recommended variant for most users. Uniform expert quantization means it works out of the box with any ds4-engine build. The mixed-precision variant (52 GiB) has Q4_K in layers 37-42 but requires runtime per-layer quant dispatch.
| Domain | Share |
|---|---|
| Coding & development | 35-40% |
| Agentic tool-calling | 16% |
| Research & knowledge | 15-20% |
| Math & science | 10-15% |
| Design & planning | 5-10% |
| Trivia & general QA | 3-5% |
activation_energy_sum2 score metric with 4,096 token context per prompt.
Top-to-bottom expert score gap in layer 3: 2,200x (strong pruning signal).1git clone https://github.com/eouya2/ds4-for-reaped
2cd ds4-for-reaped
3make cuda-spark -j$(nproc) # DGX Spark / CUDA
4# or: make # Metal / macOS
5
6./ds4 --cuda -m DeepSeek-V4-Flash-REAP-K128-uniform.gguf --ctx 1310721./ds4-server --cuda -m DeepSeek-V4-Flash-REAP-K128-uniform.gguf \
2 --host 0.0.0.0 --port 17777 --ctx 131072activation_energy_sum2 (same calibration used for the mixed-precision variant — REAP scores are quantization-independent)ds4_prune_gguf.py from eouya2/reap-for-ds4. Layers 0-2 (hash-routed) preserved. Expert tensors copied byte-for-byte — no dequant/requant.ds4-compact-v1 GGUF| Uniform (this) | Mixed Precision | |
|---|---|---|
| File size | 46.98 GiB | 52.04 GiB |
| Expert quants | IQ2_XXS/Q2_K all layers | Q4_K in layers 37-42 |
| Compatibility | Drop-in | Needs quant-aware runtime |
| Quality | Baseline | Slightly higher in deep layers |