Views
No views yet
MXFP4 GGUFs in
this repo are direct conversions of those original safetensors.| 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 |
1#!/bin/sh -e
2
3model="./IQ3_XXS/DeepSeek-V4-Flash-0731-IQ3_XXS-00001-of-00004.gguf"
4
5ctx=262144
6parallel=2
7
8ctx_size=$((ctx * parallel))
9
10llama-server --no-mmap --no-warmup \
11 --model $model --ctx-size $ctx_size -np $parallel \
12 --repeat-penalty 1.0 --presence-penalty 0.0 \
13 --chat-template-kwargs '{"reasoning_effort": "max"}' \
14 --reasoning-preserve \
15 -b 2048 -ub 2048 \
16 --cache-ram 4096 -ctxcp 128 \
17 --temp 1.0 --top-p 1.0