Views
No views yet
⚠️ Early Access — requiresbati.cppto run. DeepSeek V4-Pro is the 1.6 trillion parameter flagship of the DeepSeek V4 series, released 2026-05-06. It is not yet supported byggml-org/llama.cppmaster. This GGUF was converted withbatiai/bati.cppv0.1.2 — BatiAI's own inference fork. Inference requires the same library. Ollama is not yet compatible (will auto-update once mainline merges V4 support).
⚠️ This is a workstation/cluster model. Even Mac Studio M3 Ultra 512GB cannot fit Q3. Plan for 768GB+ unified memory or multi-Ultra cluster / 8×A100 80GB / H100 node.
1# Q3_K_M (smallest, 698GB — 768GB+ unified memory)
2hf download batiai/DeepSeek-V4-Pro-GGUF --include "*Q3_K_M*"
3
4# Q4_K_M (balanced, 900GB — 1TB+ recommended)
5hf download batiai/DeepSeek-V4-Pro-GGUF --include "*Q4_K_M*"Higher quants (Q5_K_M 1.12TB / Q8_0 1.67TB) are archived offline (regenerable from the Q8_0 base via--allow-requantize). They are not hosted here to keep storage lean — open a Discussion if you need them and we'll restore on request.
| Quant | Size | Shards | Min RAM | Target Hardware |
|---|---|---|---|---|
| Q3_K_M | 698 GB | 17 × ~43 GB | 768 GB | M3 Ultra 512GB cluster, 8×A100 80GB |
| Q4_K_M | 900 GB | 21 × ~43 GB | 1 TB | 2× M3 Ultra 512GB, 16×A100 |
| Q5_K_M | 1.12 TB | 26 shards | 1.2 TB | archived offline — restore on request |
| Q8_0 | 1.67 TB | 38 shards | 1.8 TB | NAS archive (base) — restore on request |
general.author=BatiAI, general.url=https://flow.bati.ai).Note: IQ-quants (IQ3_XXS / IQ4_XS) are tracked inbati.cppv0.2.0. They require imatrix calibration, andllama-imatrixcurrently segfaults during V4 model context init in the fork. Will be added once that path is fixed (or once mainline llama.cpp merges DeepSeek V4 support). K-quants above usebati.cppv0.1.2's integer-tensor pass-through patch +--allow-requantizefrom a Q8_0 base.
| Your System | Q3 (698GB) | Q4 (900GB) | Q5 (1.06TB) | Q8 (1.67TB) |
|---|---|---|---|---|
| Mac 128GB | ❌ | ❌ | ❌ | ❌ |
| Mac 192GB | ❌ | ❌ | ❌ | ❌ |
| Mac 256GB | ❌ | ❌ | ❌ | ❌ |
| Mac M3 Ultra 512GB | ⚠️ heavy swap (impractical) | ❌ | ❌ | ❌ |
| 2× M3 Ultra (1TB cluster) | ✅ | ✅ tight | ❌ | ❌ |
| 4× M3 Ultra cluster | ✅ | ✅ | ✅ | ⚠️ |
| 8× A100 80GB (640GB total) | ⚠️ tight | ❌ | ❌ | ❌ |
| 8× H100 80GB (640GB total) | ⚠️ tight | ❌ | ❌ | ❌ |
| 8× H200 141GB (1.1TB total) | ✅ Fast | ✅ Fast | ✅ tight | ❌ |
| DGX H200 / H100 node 1TB+ | ✅ Fast | ✅ Fast | ✅ | ⚠️ |
| Multi-node H100/H200 cluster | ✅ | ✅ | ✅ | ✅ |
batiai/DeepSeek-V4-Flash-GGUF
(284B-A13B, 127-282 GB) for the same architecture family in actually-runnable sizes.bati.cpp)1# 1. Clone + build BatiAI's inference library
2git clone https://github.com/batiai/bati.cpp.git
3cd bati.cpp
4cmake -B build -DGGML_CUDA=ON # Linux (recommended for V4-Pro scale)
5# or: cmake -B build -DGGML_METAL=ON # macOS (multi-Ultra cluster only)
6cmake --build build -j 16 --target llama-cli llama-gguf-split llama-server
7
8# 2. Download a quant + merge shards (Q3 example, 698GB → single GGUF)
9hf download batiai/DeepSeek-V4-Pro-GGUF \
10 --include "*Q3_K_M*" --local-dir ./v4-pro
11build/bin/llama-gguf-split --merge \
12 ./v4-pro/deepseek-ai-DeepSeek-V4-Pro-Q3_K_M-00001-of-00017.gguf \
13 ./v4-pro/merged-Q3_K_M.gguf
14
15# 3. Inference (CLI, single-node minimum spec)
16build/bin/llama-cli \
17 -m ./v4-pro/merged-Q3_K_M.gguf \
18 -cnv -ngl 99 -c 8192 \
19 --reasoning on --reasoning-budget 8192
20
21# 4. Or run as a server (recommended for production)
22build/bin/llama-server \
23 -m ./v4-pro/merged-Q3_K_M.gguf \
24 -ngl 99 -c 32768 --port 8080build/bin/llama-cli -m merged.gguf --reasoning on --reasoning-budget 32768 -c 65536quantization_config MXFP4 spec--allow-requantize--allow-requantize (avoids BF16 intermediate)bati.cpp v0.1.2 convert_hf_to_gguf.py (FP4 → Q8 direct path, no BF16)llama-quantize --allow-requantize from Q8 first shardteamblobfish/DeepSeek-V4-Pro-GGUF,
and the first with BatiAI metadata signing + full Q3/Q4/Q5/Q8 K-quant matrix.ggml-org/llama.cpp master merges DeepSeek V4 support:bati.cpp's V4 support transitions to read-only archive (users migrate to mainline)general.author = BatiAIgeneral.url = https://flow.bati.aibati.cppbatiai/bati.cpp is BatiAI's own inference library —
a llama.cpp-based fork focused on Apple Silicon, frontier-model early access, and BatiAI's
quantization standard. Built on top of ggml-org/llama.cpp
and antirez/llama.cpp-deepseek-v4-flash
(all MIT). See bati.cpp's ATTRIBUTION.md for full credits.