Views
No views yet
pack-quantized format for serving with vLLM / SGLang. Routed-expert
weights keep the base w1/w2/w3 naming, so the checkpoint loads against the native M3
architecture.| Scheme | W4A16 (4-bit weights, 16-bit activations) |
| Weights | int4, symmetric, group size 128 |
| Embeddings | int4, group size 64 |
lm_head | bf16 (kept full precision) |
| Left in bf16 | router gates, lightning-indexer projections, RMSNorms, vision tower |
| KV cache | bf16 |
| Method | GPTQ — Hessian error minimization with cross-layer error propagation |
| Format | compressed-tensors (pack-quantized) |
1# requires a vLLM build with MiniMax-M3 support
2vllm serve Sebesky/MiniMax-M3-W4A16-GPTQ1from transformers import AutoModelForImageTextToText, AutoTokenizer
2model = AutoModelForImageTextToText.from_pretrained("Sebesky/MiniMax-M3-W4A16-GPTQ", device_map="auto")
3tok = AutoTokenizer.from_pretrained("Sebesky/MiniMax-M3-W4A16-GPTQ")