Views
No views yet
| Property | Value |
|---|---|
| Base Model | MiniMaxAI/MiniMax-M2.1 |
| Architecture | Mixture of Experts (MoE) |
| Total Parameters | 229B |
| Active Parameters | ~45B (8 of 256 experts) |
| Quantization | NVFP4 (e2m1 format) |
| Size | 131 GB |
compressed-tensors with nvfp4-pack-quantized format1from vllm import LLM, SamplingParams
2
3llm = LLM(
4 model="GadflyII/MiniMax-M2.1-NVFP4",
5 tensor_parallel_size=2,
6 max_model_len=4096,
7 gpu_memory_utilization=0.90,
8 trust_remote_code=True,
9)
10
11sampling_params = SamplingParams(
12 temperature=0.7,
13 top_p=0.9,
14 max_tokens=1024,
15)
16
17outputs = llm.generate(["Your prompt here"], sampling_params)
18print(outputs[0].outputs[0].text)| Prompt Tokens | Output Tokens | Throughput |
|---|---|---|
| ~100 | 100 | ~73 tok/s |
| ~1260 | 1000 | ~72 tok/s |