tarruda/DeepSeek-V4-Flash-0731-GGUF overview
DeepSeek V4 Flash 0731 GGUF GGUF quantizations for deepseek ai/DeepSeek V4 Flash 0731 https://huggingface.co/deepseek ai/DeepSeek V4 Flash 0731 DeepSeek publis…
Runs locally from ~5.0 MB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| DeepSeek-V4-Flash-0731-DSpark.gguf | GGUF | GGUF | 10.15 GB | Download |
| IQ3_XXS/DeepSeek-V4-Flash-0731-IQ3_XXS-00001-of-00004.gguf | GGUF | IQ3_XXS | 5.0 MB | Download |
| IQ3_XXS/DeepSeek-V4-Flash-0731-IQ3_XXS-00002-of-00004.gguf | GGUF | IQ3_XXS | 45.88 GB | Download |
| IQ3_XXS/DeepSeek-V4-Flash-0731-IQ3_XXS-00003-of-00004.gguf | GGUF | IQ3_XXS | 46.40 GB | Download |
| IQ3_XXS/DeepSeek-V4-Flash-0731-IQ3_XXS-00004-of-00004.gguf | GGUF | IQ3_XXS | 13.77 GB | Download |
| MXFP4/DeepSeek-V4-Flash-0731-MXFP4-00001-of-00005.gguf | GGUF | GGUF | 5.0 MB | Download |
| MXFP4/DeepSeek-V4-Flash-0731-MXFP4-00002-of-00005.gguf | GGUF | GGUF | 45.70 GB | Download |
| MXFP4/DeepSeek-V4-Flash-0731-MXFP4-00003-of-00005.gguf | GGUF | GGUF | 45.69 GB | Download |
| MXFP4/DeepSeek-V4-Flash-0731-MXFP4-00004-of-00005.gguf | GGUF | GGUF | 45.69 GB | Download |
| MXFP4/DeepSeek-V4-Flash-0731-MXFP4-00005-of-00005.gguf | GGUF | GGUF | 8.56 GB | Download |
| Q2_K/DeepSeek-V4-Flash-0731-Q2_K-00001-of-00003.gguf | GGUF | Q2_K | 5.0 MB | Download |
| Q2_K/DeepSeek-V4-Flash-0731-Q2_K-00002-of-00003.gguf | GGUF | Q2_K | 46.21 GB | Download |
| Q2_K/DeepSeek-V4-Flash-0731-Q2_K-00003-of-00003.gguf | GGUF | Q2_K | 45.73 GB | Download |
| Q3_K/DeepSeek-V4-Flash-0731-Q3_K-00001-of-00004.gguf | GGUF | Q3_K | 5.0 MB | Download |
| Q3_K/DeepSeek-V4-Flash-0731-Q3_K-00002-of-00004.gguf | GGUF | Q3_K | 46.46 GB | Download |
| Q3_K/DeepSeek-V4-Flash-0731-Q3_K-00003-of-00004.gguf | GGUF | Q3_K | 46.30 GB | Download |
| Q3_K/DeepSeek-V4-Flash-0731-Q3_K-00004-of-00004.gguf | GGUF | Q3_K | 25.38 GB | Download |
| imatrix.gguf | GGUF | GGUF | 448.1 MB | Download |
Model Details
| Model ID | tarruda/DeepSeek-V4-Flash-0731-GGUF |
|---|---|
| Author | tarruda |
| Pipeline | text-generation |
| License | mit |
| Base model | deepseek-ai/DeepSeek-V4-Flash-0731 |
| Last modified | 2026-08-04T13:50:44.000Z |
Model README
---
quantized_by: tarruda
pipeline_tag: text-generation
base_model: deepseek-ai/DeepSeek-V4-Flash-0731
base_model_relation: quantized
license: mit
license_link: https://huggingface.co/datasets/choosealicense/licenses/blob/main/markdown/mit.md
tags:
- gguf
- imatrix
- conversational
- deepseek
- llama.cpp
---
DeepSeek V4 Flash 0731 GGUF
GGUF quantizations for
deepseek-ai/DeepSeek-V4-Flash-0731
DeepSeek published the original model weights in MXFP4, so the MXFP4 GGUFs in
this repo are direct conversions of those original safetensors.
Quant Recipes
| Recipe | Quant Size | Default type | Tensor-specific overrides |
| --- | --- | --- | --- |
| Q3_K | 120974.36 MiB (3.57 BPW) | Q8_0 | ffn_down_exps=q3_k, ffn_gate_exps=q3_k, ffn_up_exps=q3_k |
| IQ3_XXS | 108590.36 MiB (3.20 BPW) | Q8_0 | ffn_down_exps=iq3_xxs, ffn_gate_exps=iq3_xxs, ffn_up_exps=iq3_xxs |
| Q2_K | 94142.36 MiB (2.78 BPW) | Q8_0 | ffn_down_exps=q2_k, ffn_gate_exps=q2_k, ffn_up_exps=q2_k |
Usage
This is the script I use to run:
#!/bin/sh -e
model="./IQ3_XXS/DeepSeek-V4-Flash-0731-IQ3_XXS-00001-of-00004.gguf"
ctx=262144
parallel=2
ctx_size=$((ctx * parallel))
llama-server --no-mmap --no-warmup \
--model $model --ctx-size $ctx_size -np $parallel \
--repeat-penalty 1.0 --presence-penalty 0.0 \
--chat-template-kwargs '{"reasoning_effort": "max"}' \
--reasoning-preserve \
-b 2048 -ub 2048 \
--cache-ram 4096 -ctxcp 128 \
--temp 1.0 --top-p 1.0Run tarruda/DeepSeek-V4-Flash-0731-GGUF with guIDE
Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.
Source: Hugging Face · Compare models