Views
No views yet
| Accuracy (repeats=3) | aime25 | gpqa_diamond | gsm8k | piqa |
|---|---|---|---|---|
| Raw | 0.8556 | 0.8872 | 0.9636 | 0.9400 |
| Intel | 0.8889 | 0.8821 | 0.9641 | 0.9436 |
| Ratio | 1.0390 | 0.9943 | 1.0005 | 1.0039 |
1CUDA_VISIBLE_DEVICES=3,4,5,7 vllm serve ~/models/minimax-m2.7-mxfp \
2 --trust-remote-code \
3 --tensor-parallel-size 4 \
4 --tool-call-parser minimax_m2 \
5 --enable-auto-tool-choice \
6 --reasoning-parser minimax_m2 \
7 --served-model-name mxfp \
8 --max-model-len 102400 \
9 --max-num-seqs 1024 \
10 --max-num-batched-tokens 32768 \
11 --enable-chunked-prefill \
12 --port 80011# Prompt generation
2curl http://localhost:8000/v1/chat/completions -H "Content-Type: application/json" -d ' {
3 "model": "mxfp",
4 "messages": [
5 {"role": "system", "content": "You are a helpful assistant."},
6 {"role": "user", "content": "Write code to fine-tune an LLM."}
7 ],
8 "temperature": 1,
9 "max_tokens": 2048
10 } '
11
12# Accuracy evaluation
13evalscope eval --model mxfp --eval-type openai_api --api-key EMPTY --timeout 36000 --datasets gpqa_diamond aime25 gsm8k piqa \
14 --generation-config '{"temperature":1.0, "top_p":0.95, "n":1, "extra_body": { "chat_template_kwargs": { "enable_thinking": true, "reasoning_effort": "max"}},"max_tokens":64000}' \
15 --eval-batch-size 512 --api-url http://127.0.0.1:8001/v1 auto-round MiniMaxAI/MiniMax-M2.7 --model_free --scheme MXFP8 --layer_config {block_sparse_moe:{scheme:MXFP4}} --output_dir minimax-m2.7-mxfp --format llm_compressor