GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

shiiiiiiiiiiiiiiiiiiiiiiiiiiiii/DeepSeek-V4-Flash-0731-K160-REAP.GGUF overview

DeepSeek V4 Flash 0731 — REAP K160 GGUF WARNING Experimental model. This is an unofficial REAP K160 variant of DeepSeek V4 Flash 0731. Quality evaluation is st…

ggufdeepseekdeepseek-v4reapquantizedmixture-of-expertstext-generationenbase_model:deepseek-ai/DeepSeek-V4-Flash-0731base_model:quantized:deepseek-ai/DeepSeek-V4-Flash-0731license:mitendpoints_compatibleregion:usimatrixconversational

Runs locally from ~1.22 GB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
text-generation

Repository Files & Downloads

2 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
DeepSeek-V4-Flash-0731-K160-IQ2XXS-w2Q2K-AProjQ8-SExpQ8-OutQ8-imatrix.ggufGGUFIQ2XXS53.52 GBDownload
DeepSeek-V4-Flash-0731-K160-REAP-MTP-IQ2XXS-w2Q2K-AttnQ8-SExpQ8-ROCm.ggufGGUFIQ2XXS1.22 GBDownload

Model Details

Model IDshiiiiiiiiiiiiiiiiiiiiiiiiiiiii/DeepSeek-V4-Flash-0731-K160-REAP.GGUF
Authorshiiiiiiiiiiiiiiiiiiiiiiiiiiiii
Pipelinetext-generation
Licensemit
Base modeldeepseek-ai/DeepSeek-V4-Flash-0731
Last modified2026-08-17T14:55:09.000Z

Model README

---

license: mit

base_model:

- deepseek-ai/DeepSeek-V4-Flash-0731

base_model_relation: quantized

tags:

- deepseek

- deepseek-v4

- gguf

- reap

- quantized

- mixture-of-experts

- text-generation

language:

- en

library_name: gguf

---

DeepSeek V4 Flash 0731 — REAP K160 GGUF

> [!WARNING]

> Experimental model.

>

> This is an unofficial REAP K160 variant of DeepSeek V4 Flash 0731. Quality evaluation is still in progress, and some capabilities are significantly degraded compared with the full model.

What is this?

This repository contains a REAP K160 / 160-expert variant of DeepSeek V4 Flash 0731, created by pruning routed experts directly from an already-working quantized GGUF.

The current Q2 variant starts from the asymmetric / mixed Q2 quantization published by antirez/deepseek-v4-gguf, and removes the routed experts excluded by the K160 REAP expert selection from 0xSero/DeepSeek-V4-Flash-0731-REAP.

The retained expert weights are not dequantized and requantized.

In simplified form:

DeepSeek-V4-Flash-0731
        │
        ├── antirez Q2 GGUF
        │      │
        │      └── keep already-quantized weights
        │
        └── 0xSero REAP K160 expert selection
               │
               └── remove pruned experts
                        │
                        ▼
            This K160 Q2 GGUF

The goal is to reduce memory usage while preserving as much of the behavior of the known-working Q2 quantization as possible.

Why does this exist?

There are already quantized REAP K160 variants available.

However, this model takes a different conversion path.

Instead of starting from an already-pruned K160 checkpoint and quantizing its remaining weights again, this variant starts from an existing working Q2 GGUF and only removes the experts excluded by the K160 pruning map.

This avoids an additional:

quantized / mixed-precision weights
        ↓
dequantization
        ↓
requantization to Q2

step for the retained expert weights.

The practical motivation is simple: I want a K160 model small enough to run comfortably on memory-constrained local hardware while remaining useful for real agentic workloads.

Current status

The model is still under evaluation.

Confirmed

  • Loads and runs with a K160-compatible DS4 runtime.
  • Produces coherent English output.
  • Has successfully completed a real agentic task involving tool use in my testing.
  • Uses only 160 routed experts per MoE layer instead of the original 256.

Not yet fully evaluated

  • General benchmark quality
  • Coding benchmark performance
  • Agentic task success rate across a larger test set
  • Long-context reliability
  • Comparison against the full Q2 model
  • Comparison against other K160 quantizations
  • ROCmFP2 variants

More results will be added as testing progresses.

Important limitation: Japanese

Japanese capability is effectively unusable in my testing after REAP K160 pruning.

Normal Japanese conversation cannot be reliably sustained.

This is not a small quality regression; for practical purposes, do not use this model for Japanese-language workloads.

English agentic use is the primary target of my current testing.

Q2 quantization

The Q2 variant is derived from the imatrix quantization in:

antirez/deepseek-v4-gguf

The original quantization uses approximately:

| Tensor group | Quantization |

| --------------------- | ---------------------- |

| Routed expert gate/up | IQ2_XXS |

| Routed expert down | Q2_K |

| Attention projections | Q8_0 |

| Shared experts | Q8_0 |

| Output | Q8_0 |

| Other tensors | Mixed higher precision |

This repository preserves the quantized tensors of the retained experts rather than requantizing them.

Files

Q2

DeepSeek-V4-Flash-0731-K160-IQ2XXS-w2Q2K-AProjQ8-SExpQ8-OutQ8-imatrix.gguf

REAP pruning metadata / plan:

DeepSeek-V4-Flash-0731-K160-IQ2XXS-w2Q2K-AProjQ8-SExpQ8-OutQ8-imatrix.gguf.reap_plan.json

Additional quantization variants may be added to this repository later.

In particular, I am considering a ROCmFP2 variant.

Inference

This model is intended primarily for antirez/ds4, the inference engine designed specifically for DeepSeek V4.

You need a DS4 build/runtime capable of loading the compact REAP K160 expert layout.

Example commands and tested commits will be added once the runtime setup is finalized.

Hardware target

My primary test system is:

AMD Ryzen AI MAX+ 395 (Strix Halo)
96 GB unified memory
ROCm

The broader goal is to make DeepSeek V4 Flash practically usable on hardware where the full-size model leaves too little memory headroom for context, KV cache, agent workloads, and other system processes.

Planned evaluation

I plan to compare:

Full asymmetric Q2
        vs
This REAP K160 Q2
        vs
Other K160 quantizations

Across several dimensions:

  • Model size
  • Peak memory usage
  • Prefill speed
  • Decode speed
  • General quality benchmarks
  • Coding capability
  • Tool-call reliability
  • Agentic task completion
  • Repetition / generation failures
  • Long-context behavior

The purpose is not only to ask whether the model "runs", but whether the resulting compressed model remains practically usable.

Provenance

Base model

deepseek-ai/DeepSeek-V4-Flash-0731

Q2 quantization

antirez/deepseek-v4-gguf

REAP K160 expert selection

0xSero/DeepSeek-V4-Flash-0731-REAP

Inference engine

antirez/ds4

License

MIT.

DeepSeek V4 Flash 0731 is released under the MIT License. The referenced quantization and REAP-derived resources are also distributed under their respective licensing terms.

See the upstream repositories for their original license notices.

Disclaimer

This is an unofficial experimental derivative.

It is not released or endorsed by DeepSeek, antirez, or 0xSero.

Benchmark results and compatibility information may change as the model, inference runtime, and evaluation methodology are updated.

Run shiiiiiiiiiiiiiiiiiiiiiiiiiiiii/DeepSeek-V4-Flash-0731-K160-REAP.GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models