Views
No views yet
unsloth/DeepSeek-V4-Flash-0731deepseek-ai/DeepSeek-V4-Flash-0731LICENSE ships in this repo.| piece | detail |
|---|---|
| residual | Hyper-Connections — 4 copies of the hidden state, [b,s,4,4096], not an ordinary residual stream |
| attention | latent, head_dim 512 / 1 KV head, O-LoRA output projection (rank 1024, 8 groups), attention sinks |
| context | 128-token sliding window over raw KV; everything older is reachable only through the Compressor (41/43 layers, ratios alternating 4/128) |
| sparsity | DSA-family Indexer on 21/43 layers, index_topk 512 |
| routing | sqrt(softplus) scores + noaux_tc; the first 3 layers bypass the router entirely and select experts from a tid2eid[token_id] hash table |
| experts | MXFP4 (block-32 nibbles + E8M0 scales), passed through unquantised; dense weights fp8 e4m3 |
| value | |
|---|---|
| decode | 4.7 tok/s end-to-end (4.7 forward-only) |
| prefill | 13.8 tok/s (37.1 s) |
| serving | 4.3 tok/s median, 12 diverse prompts over HTTP |
| expert residency | 79% of 11008 routed experts resident; the rest stream from NVMe (measured 2026-08-05, not re-run) |
decode is the noisiest column here. The eight reps behind that median spanned 4.53-4.78 tok/s forward-only in one session — a 5.5% spread with no code change. Treat a single suite as one draw, and do not read a difference against an earlier revision of this card as a speedup.1scripts/fetch.sh deepseek-v4-flash
2scripts/serve.sh deepseek-v4-flash 8080serve.sh fetches the container itself when it is missing, so the first line is optional. To download it by hand instead, mind the directory name — the registry resolves deepseek-v4-flash to -container-v2, and any other path will serve nothing:1huggingface-cli download Kanposer/DeepSeek-V4-Flash-0731-speedy-colibri-mxfp4 \
2 --local-dir ~/models/DeepSeek-V4-Flash-0731-container-v2