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

Anbeeld/MiniMax-M2.7-DFlash-GGUF overview

base model: z lab/MiniMax M2.7 DFlash tags: transformers safetensors qwen3 dflash speculative decoding block diffusion draft model efficiency minimax minimax m…

transformersggufsafetensorsqwen3dflashspeculative-decodingblock-diffusiondraft-modelefficiencyminimaxminimax_m2diffusion-language-modeltext-generationarxiv:2602.06036license:othertext-generation-inferenceendpoints_compatibleregion:usbase_model:z-lab/MiniMax-M2.7-DFlashbase_model:quantized:z-lab/MiniMax-M2.7-DFlash

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

Downloads
0
Likes
0
Pipeline
text-generation
Author

Repository Files & Downloads

7 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
MiniMax-M2.7-DFlash-Q2_K.ggufGGUFQ2_K463.9 MBDownload
MiniMax-M2.7-DFlash-Q3_K_M.ggufGGUFQ3_K_M608.0 MBDownload
MiniMax-M2.7-DFlash-Q4_K_M.ggufGGUFQ4_K_M752.0 MBDownload
MiniMax-M2.7-DFlash-Q5_K_M.ggufGGUFQ5_K_M889.4 MBDownload
MiniMax-M2.7-DFlash-Q6_K.ggufGGUFQ6_K1.01 GBDownload
MiniMax-M2.7-DFlash-Q8_0.ggufGGUFQ8_01.31 GBDownload
MiniMax-M2.7-DFlash-bf16.ggufGGUFBF162.45 GBDownload

Model Details

Model IDAnbeeld/MiniMax-M2.7-DFlash-GGUF
AuthorAnbeeld
Pipelinetext-generation
License
Base modelz-lab/MiniMax-M2.7-DFlash
Last modified2026-08-29T19:50:11.000Z

Model README

---

base_model: z-lab/MiniMax-M2.7-DFlash

tags:

  • transformers
  • safetensors
  • qwen3
  • dflash
  • speculative-decoding
  • block-diffusion
  • draft-model
  • efficiency
  • minimax
  • minimax_m2
  • diffusion-language-model
  • text-generation
  • arxiv:2602.06036
  • license:other
  • text-generation-inference
  • endpoints_compatible
  • region:us

---

MiniMax M2.7 DFlash GGUF

GGUF quantizations of z-lab DFlash draft model for MiniMax M2.7.

Use with BeeLlama.cpp, a llama.cpp fork with advanced quantization features.

> Conversion note: The gated z-lab checkpoint was not downloadable during conversion. These GGUFs were converted from the compatible public NVIDIA/MiniMax-M2.7-DFlash checkpoint.

---

MiniMax-M2.7-DFlash

Paper | GitHub | Blog

DFlash is a speculative decoding method that uses a lightweight block diffusion model to draft multiple tokens in parallel. This is the drafter model, which must be paired with MiniMaxAI/MiniMax-M2.7.

<div align="center">

<img src="assets/dflash_system.png" alt="DFlash Architecture" width="85%">

</div>

Quick Start

Installation

vLLM:

Check out vLLM issue #46105.

SGLang:

uv pip install "git+https://github.com/sgl-project/sglang.git#subdirectory=python"

Launch Server

vLLM:

Check out vLLM issue #46105.

SGLang:

python -m sglang.launch_server \
  --model-path MiniMaxAI/MiniMax-M2.7 \
  --tp-size 4 \
  --speculative-algorithm DFLASH \
  --speculative-draft-model-path z-lab/MiniMax-M2.7-DFlash \
  --attention-backend trtllm_mha \
  --speculative-draft-attention-backend fa4 \
  --mem-fraction-static 0.8 \
  --trust-remote-code \
  --host 0.0.0.0 \
  --port 30000

Usage

For SGLang, use port 30000.

from openai import OpenAI

client = OpenAI(base_url="http://localhost:30000/v1", api_key="EMPTY")

response = client.chat.completions.create(
    model="MiniMaxAI/MiniMax-M2.7",
    messages=[{"role": "user", "content": "Write a quicksort in Python."}],
    max_tokens=4096,
    temperature=0.0,
    extra_body={"chat_template_kwargs": {"enable_thinking": True}},
)
print(response.choices[0].message.content)

Benchmark Results

Setup: 4 NVIDIA B200 GPUs per server/run, SGLang, tensor parallel size 4, target attention backend trtllm_mha, draft attention backend fa4, thinking enabled, max output length 4096, greedy decoding. Concurrency 1 uses 128 prompts; concurrency 32 uses 1024 prompts.

Throughput

_Generated tokens/sec_

Block Size = 8

| Task | Concurrency | DFlash |

|---|---:|---:|

| Math500 | 1 | 331.12 |

| | 32 | 4422.52 |

| GSM8K | 1 | 304.07 |

| | 32 | 4202.09 |

| HumanEval | 1 | 333.44 |

| | 32 | 4394.23 |

| MT-Bench | 1 | 350.84 |

| | 32 | 4549.75 |

Acceptance Length

| Task | c1 | c32 |

|---|---:|---:|

| Math500 | 3.561 | 3.658 |

| GSM8K | 3.481 | 3.586 |

| HumanEval | 3.610 | 3.657 |

| MT-Bench | 3.550 | 3.624 |

Acknowledgements

Special thanks to David Wang for his outstanding engineering support on this project. We are also grateful to Modal, InnoMatrix, and Yotta Labs for providing the compute resources used to train this draft model.

Citation

If you find DFlash useful, please cite our work. To share feedback on DFlash or request new model support, please fill out this form: DFlash Feedback.

@article{chen2026dflash,
  title   = {{DFlash: Block Diffusion for Flash Speculative Decoding}},
  author  = {Chen, Jian and Liang, Yesheng and Liu, Zhijian},
  journal = {arXiv preprint arXiv:2602.06036},
  year    = {2026}
}

Run Anbeeld/MiniMax-M2.7-DFlash-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