Views
No views yet
Qwen/Qwen2.5-72B-Instruct,
produced using
llm-compressor
v0.13.1.dev2.| Property | Value |
|---|---|
| Format | FP8 E4M3 with block scaling |
| Weight block size | 128×128 |
| Activation group size | 128 elements |
| Weight quantization | Static, per 128×128 block |
| Activation quantization | Dynamic, per 128-element group |
| Layers quantized | All nn.Linear in the 80 decoder layers (560 total) |
| Layers skipped | lm_head, embed_tokens |
| Checkpoint format | compressed-tensors (auto-detected by vLLM) |
q_proj, k_proj,
v_proj, o_proj) and MLP projections (gate_proj, up_proj, down_proj)
in every decoder layer.Note: Other hardware configurations have not been validated with this checkpoint.
1from vllm import LLM, SamplingParams
2
3llm = LLM(
4 model="rkayaith/Qwen2.5-72B-Instruct-fp8-block",
5 # vLLM auto-detects compressed-tensors format — no --quantization flag needed
6)
7
8outputs = llm.generate(
9 ["Tell me about AMD MI350X"],
10 SamplingParams(max_tokens=200, temperature=0.7),
11)
12print(outputs[0].outputs[0].text)vllm serve rkayaith/Qwen2.5-72B-Instruct-fp8-block| Variant | Repo | Format |
|---|---|---|
| BF16 (original) | Qwen/Qwen2.5-72B-Instruct | BF16 |
| FP8 (per-channel/per-token) | RedHatAI/Qwen2.5-72B-Instruct-FP8-dynamic | Compressed-Tensors FP8 |
| FP8 block (this repo) | rkayaith/Qwen2.5-72B-Instruct-fp8-block | FP8 E4M3, 128×128 weight blocks, dynamic 128-element activation groups |
| MXFP8 | talumbau/Qwen2.5-72B-Instruct-mxfp8 | OCP MXFP8, 32-element groups |
Qwen License Agreement.