YummyYum commited on
Commit
1b0f715
·
verified ·
1 Parent(s): a7a4d33

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +150 -149
README.md CHANGED
@@ -1,149 +1,150 @@
1
- ---
2
- license: apache-2.0
3
- language:
4
- - zh
5
- - en
6
- ---
7
-
8
- # Introduction
9
- MiniMax M3, released on June 1st, is the first Chinese model to simultaneously deliver frontier coding/agentic capabilities, 1M ultra-long context, and native multimodality — and the only open-source model in the world with all three. The core innovation is a proprietary MSA sparse attention architecture: at 1M context, compute per token is just 1/20th of the previous generation, with 9× prefilling speedup and 15× decoding speedup. On SWE-Bench Pro, M3 scores 59.0%, surpassing GPT-5.5 and Gemini 3.1 Pro, and approaching Opus 4.7; on the multimodal benchmark OmniDocBench, it also outperforms Gemini 3.1 Pro. In real-world tests, M3 autonomously ran for nearly 12 hours to successfully reproduce an ICLR award-winning paper, and within ~24 hours pushed FP8 GEMM kernel utilization from 7.6% to 71.3% — a 9.4× speedup.
10
-
11
- ### Integrated Deployment
12
- - Out-of-the-box inference scripts with pre-configured hardware and software parameters
13
- - Released **FlagOS-Mthreads** container image supporting deployment within minutes
14
- ### Consistency Validation
15
- - Rigorously evaluated through benchmark testing: Performance and results from the FlagOS software stack are compared against native stacks on multiple public.
16
-
17
-
18
- # Evaluation Results
19
- ## Benchmark Result
20
- | Metrics | MiniMax-M3-Nvidia-Origin | MiniMax-M3-Mthreads-FlagOS |
21
- |--------------|-------------------------------|--------------------------------------|
22
- | GPQA_Diamond | 0.8636 | 0.8182 |
23
-
24
- # User Guide
25
- Environment Setup
26
-
27
- | Item | Version |
28
- |------------------|----------------------|
29
- | Docker Version | Docker version 27.5.1, build 9f9e405 |
30
- | Operating System | 22.04.4 LTS (Jammy Jellyfish) |
31
-
32
- ## Operation Steps
33
-
34
- ### Download FlagOS Image
35
- ```bash
36
- docker pull harbor.baai.ac.cn/flagrelease-public/flagrelease-minimaxm3-mthreads-tree_0.5.2-gems_5.0.2-sglang_0.5.11-plugin_01.0-cx_none-python_3.10.12-torch_2.9.0-pcp_musa4.3.5-gpu_mthreads001-arc_amd64-driver_3.3.6-server:202606121704
37
- ```
38
-
39
- ### Download Open-source Model Weights
40
- ```bash
41
- pip install modelscope
42
- modelscope download --model FlagRelease/MiniMax-M3-mthreads-FlagOS --local_dir /data/MiniMax-M3
43
- ```
44
-
45
- ### Start the Container
46
- ```bash
47
- docker run -dit \
48
- --name flagos \
49
- --privileged \
50
- --ipc host \
51
- --network host \
52
- --shm-size 64g \
53
- --env MTHREADS_VISIBLE_DEVICES=all \
54
- -v /data:/data \
55
- harbor.baai.ac.cn/flagrelease-public/flagrelease-minimaxm3-mthreads-tree_0.5.2-gems_5.0.2-sglang_0.5.11-plugin_01.0-cx_none-python_3.10.12-torch_2.9.0-pcp_musa4.3.5-gpu_mthreads001-arc_amd64-driver_3.3.6-server:202606121704 \
56
- sleep infinity
57
- ```
58
- ### Start the Server
59
- ```bash
60
- export SGLANG_FL_FLAGOS_BLACKLIST=cumsum,index_put,nonzero,nonzero_numpy,sort,mm,topk,isin
61
- export MUSA_LAUNCH_BLOCKING=1
62
- export MCCL_TIMEOUT=14400
63
- export TORCH_COMPILE_DISABLE=1
64
-
65
- # in node1
66
- SGLANG_FL_DISPATCH_LOG=/tmp/flaggems_dispatch.log nohup python -m sglang.launch_server \
67
- --model-path /data/MiniMax-M3 \
68
- --tp-size 8 --pp-size 2 \
69
- --nnodes 2 --node-rank 0 \
70
- --dist-init-addr 10.1.15.176:29500 \
71
- --host 0.0.0.0 --port 30000 \
72
- --page-size 1 --disable-cuda-graph --disable-piecewise-cuda-graph \
73
- --trust-remote-code --watchdog-timeout 3600 --mem-fraction-static 0.75 --max-running-requests 1 \
74
- > minimax3.log 2>&1 &
75
-
76
- # in node2
77
- SGLANG_FL_DISPATCH_LOG=/tmp/flaggems_dispatch.log nohup python -m sglang.launch_server \
78
- --model-path /data/MiniMax-M3 \
79
- --tp-size 8 --pp-size 2 \
80
- --nnodes 2 --node-rank 1 \
81
- --dist-init-addr 10.1.15.176:29500 \
82
- --host 0.0.0.0 --port 30000 \
83
- --page-size 1 --disable-cuda-graph --disable-piecewise-cuda-graph \
84
- --trust-remote-code --watchdog-timeout 3600 --mem-fraction-static 0.75 --max-running-requests 1 \
85
- > minimax3.log 2>&1 &
86
- ```
87
-
88
- ## Service Invocation
89
- ### Invocation Script
90
- ```bash
91
- curl http://localhost:30000/v1/completions \
92
- -H "Content-Type: application/json" \
93
- -d '{
94
- "model": "Minimax",
95
- "prompt": "中国的首都是?",
96
- "max_tokens": 32,
97
- "temperature": 0
98
- }'
99
- ```
100
-
101
-
102
- ### AnythingLLM Integration Guide
103
-
104
- #### 1. Download & Install
105
-
106
- - Visit the official site: https://anythingllm.com/
107
- - Choose the appropriate version for your OS (Windows/macOS/Linux)
108
- - Follow the installation wizard to complete the setup
109
-
110
- #### 2. Configuration
111
-
112
- - Launch AnythingLLM
113
- - Open settings (bottom left, fourth tab)
114
- - Configure core LLM parameters
115
- - Click "Save Settings" to apply changes
116
-
117
- #### 3. Model Interaction
118
-
119
- - After model loading is complete:
120
- - Click **"New Conversation"**
121
- - Enter your question (e.g., “Explain the basics of quantum computing”)
122
- - Click the send button to get a response
123
- # Technical Overview
124
- **FlagOS** is a fully open-source system software stack designed to unify the "model–system–chip" layers and foster an open, collaborative ecosystem. It enables a “develop once, run anywhere” workflow across diverse AI accelerators, unlocking hardware performance, eliminating fragmentation among vendor-specific software stacks, and substantially lowering the cost of porting and maintaining AI workloads. With core technologies such as the **FlagScale**, together with vllm-plugin-fl, distributed training/inference framework, **FlagGems** universal operator library, **FlagCX** communication library, and **FlagTree** unified compiler, the **FlagRelease** platform leverages the **FlagOS** stack to automatically produce and release various combinations of \<chip + open-source model\>. This enables efficient and automated model migration across diverse chips, opening a new chapter for large model deployment and application.
125
- ## FlagGems
126
- FlagGems is a high-performance, generic operator libraryimplemented in [Triton](https://github.com/openai/triton) language. It is built on a collection of backend-neutralkernels that aims to accelerate LLM (Large-Language Models) training and inference across diverse hardware platforms.
127
- ## FlagTree
128
- FlagTree is an open source, unified compiler for multipleAI chips project dedicated to developing a diverse ecosystem of AI chip compilers and related tooling platforms, thereby fostering and strengthening the upstream and downstream Triton ecosystem. Currently in its initial phase, the project aims to maintain compatibility with existing adaptation solutions while unifying the codebase to rapidly implement single-repository multi-backend support. Forupstream model users, it provides unified compilation capabilities across multiple backends; for downstream chip manufacturers, it offers examples of Triton ecosystem integration.
129
- ## FlagScale and vllm-plugin-fl
130
- Flagscale is a comprehensive toolkit designed to supportthe entire lifecycle of large models. It builds on the strengths of several prominent open-source projects, including [Megatron-LM](https://github.com/NVIDIA/Megatron-LM) and [vLLM](https://github.com/vllm-project/vllm), to provide a robust, end-to-end solution for managing and scaling large models.
131
- vllm-plugin-fl is a vLLM plugin built on the FlagOS unified multi-chip backend, to help flagscale support multi-chip on vllm framework.
132
- ## **FlagCX**
133
- FlagCX is a scalable and adaptive cross-chip communication library. It serves as a platform where developers, researchers, and AI engineers can collaborate on various projects, contribute to the development of cutting-edge AI solutions, and share their work with the global community.
134
-
135
- ## **FlagEval Evaluation Framework**
136
- FlagEval is a comprehensive evaluation system and open platform for large models launched in 2023. It aims to establish scientific, fair, and open benchmarks, methodologies, and tools to help researchers assess model and training algorithm performance. It features:
137
- - **Multi-dimensional Evaluation**: Supports 800+ modelevaluations across NLP, CV, Audio, and Multimodal fields,covering 20+ downstream tasks including language understanding and image-text generation.
138
- - **Industry-Grade Use Cases**: Has completed horizonta1 evaluations of mainstream large models, providing authoritative benchmarks for chip-model performance validation.
139
-
140
- # Contributing
141
-
142
- We warmly welcome global developers to join us:
143
-
144
- 1. Submit Issues to report problems
145
- 2. Create Pull Requests to contribute code
146
- 3. Improve technical documentation
147
- 4. Expand hardware adaptation support
148
- # License
149
- The model weights are derived from MiniMaxAI/MiniMax-M3 and are open‑sourced under the Apache License 2.0: https://www.apache.org/licenses/LICENSE-2.0.txt
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - zh
5
+ - en
6
+ ---
7
+ # Introduction
8
+ MiniMax M3, released on June 1st, is the first Chinese model to simultaneously deliver frontier coding/agentic capabilities, 1M ultra-long context, and native multimodality — and the only open-source model in the world with all three. The core innovation is a proprietary MSA sparse attention architecture: at 1M context, compute per token is just 1/20th of the previous generation, with 9× prefilling speedup and 15× decoding speedup. On SWE-Bench Pro, M3 scores 59.0%, surpassing GPT-5.5 and Gemini 3.1 Pro, and approaching Opus 4.7; on the multimodal benchmark OmniDocBench, it also outperforms Gemini 3.1 Pro. In real-world tests, M3 autonomously ran for nearly 12 hours to successfully reproduce an ICLR award-winning paper, and within ~24 hours pushed FP8 GEMM kernel utilization from 7.6% to 71.3% — a 9.4× speedup.
9
+
10
+ ### Integrated Deployment
11
+ - Out-of-the-box inference scripts with pre-configured hardware and software parameters
12
+ - Released **FlagOS-Mthreads** container image supporting deployment within minutes
13
+ ### Consistency Validation
14
+ - Rigorously evaluated through benchmark testing: Performance and results from the FlagOS software stack are compared against native stacks on multiple public.
15
+
16
+
17
+ # Evaluation Results
18
+ ## Benchmark Result
19
+ | Metrics | MiniMax-M3-Nvidia-Origin | MiniMax-M3-Mthreads-FlagOS |
20
+ |--------------|-------------------------------|----------------------------|
21
+ | GPQA_Diamond | 86.36 | 83.68 |
22
+ | ERQA | 52.25 | 53.75 |
23
+ # User Guide
24
+ Environment Setup
25
+
26
+ | Item | Version |
27
+ |------------------|----------------------|
28
+ | Docker Version | Docker version 27.5.1, build 9f9e405 |
29
+ | Operating System | 22.04.4 LTS (Jammy Jellyfish) |
30
+
31
+ ## Operation Steps
32
+
33
+ ### Download FlagOS Image
34
+ ```bash
35
+ docker pull harbor.baai.ac.cn/flagrelease-public/flagrelease-minimaxm3-mthreads-tree_0.5.2-gems_5.0.2-sglang_0.5.11-plugin_01.0-cx_none-python_3.10.12-torch_2.9.0-pcp_musa4.3.5-gpu_mthreads001-arc_amd64-driver_3.3.6-server:202606121704
36
+ ```
37
+
38
+ ### Download Open-source Model Weights
39
+ ```bash
40
+ pip install modelscope
41
+ modelscope download --model FlagRelease/MiniMax-M3-mthreads-FlagOS --local_dir /data/MiniMax-M3
42
+ ```
43
+
44
+ ### Start the Container
45
+ ```bash
46
+ docker run -dit \
47
+ --name flagos \
48
+ --privileged \
49
+ --ipc host \
50
+ --network host \
51
+ --shm-size 64g \
52
+ --env MTHREADS_VISIBLE_DEVICES=all \
53
+ -v /data:/data \
54
+ harbor.baai.ac.cn/flagrelease-public/flagrelease-minimaxm3-mthreads-tree_0.5.2-gems_5.0.2-sglang_0.5.11-plugin_01.0-cx_none-python_3.10.12-torch_2.9.0-pcp_musa4.3.5-gpu_mthreads001-arc_amd64-driver_3.3.6-server:202606121704 \
55
+ sleep infinity
56
+ docker exec -it flagos bash
57
+ ```
58
+ ### Start the Server
59
+ ```bash
60
+ export SGLANG_FL_FLAGOS_BLACKLIST=cumsum,index_put,nonzero,nonzero_numpy,sort,mm,topk,isin
61
+ export MUSA_LAUNCH_BLOCKING=1
62
+ export MCCL_TIMEOUT=14400
63
+ export TORCH_COMPILE_DISABLE=1
64
+
65
+ # in node1
66
+ SGLANG_FL_DISPATCH_LOG=/tmp/flaggems_dispatch.log nohup python -m sglang.launch_server \
67
+ --model-path /data/MiniMax-M3 \
68
+ --tp-size 8 --pp-size 2 \
69
+ --nnodes 2 --node-rank 0 \
70
+ --dist-init-addr <node1_ip>:29500 \
71
+ --host 0.0.0.0 --port 30000 \
72
+ --page-size 1 --disable-cuda-graph --disable-piecewise-cuda-graph \
73
+ --trust-remote-code --watchdog-timeout 3600 --mem-fraction-static 0.75 --max-running-requests 1 \
74
+ > minimax3.log 2>&1 &
75
+
76
+ # in node2
77
+ SGLANG_FL_DISPATCH_LOG=/tmp/flaggems_dispatch.log nohup python -m sglang.launch_server \
78
+ --model-path /data/MiniMax-M3 \
79
+ --tp-size 8 --pp-size 2 \
80
+ --nnodes 2 --node-rank 1 \
81
+ --dist-init-addr <node1_ip>:29500 \
82
+ --host 0.0.0.0 --port 30000 \
83
+ --page-size 1 --disable-cuda-graph --disable-piecewise-cuda-graph \
84
+ --trust-remote-code --watchdog-timeout 3600 --mem-fraction-static 0.75 --max-running-requests 1 \
85
+ > minimax3.log 2>&1 &
86
+ ```
87
+
88
+ ## Service Invocation
89
+ ### Invocation Script
90
+ ```bash
91
+ curl http://localhost:30000/v1/completions \
92
+ -H "Content-Type: application/json" \
93
+ -d '{
94
+ "model": "Minimax",
95
+ "prompt": "中国的首都是?",
96
+ "max_tokens": 32,
97
+ "temperature": 0
98
+ }'
99
+ ```
100
+
101
+
102
+ ### AnythingLLM Integration Guide
103
+
104
+ #### 1. Download & Install
105
+
106
+ - Visit the official site: https://anythingllm.com/
107
+ - Choose the appropriate version for your OS (Windows/macOS/Linux)
108
+ - Follow the installation wizard to complete the setup
109
+
110
+ #### 2. Configuration
111
+
112
+ - Launch AnythingLLM
113
+ - Open settings (bottom left, fourth tab)
114
+ - Configure core LLM parameters
115
+ - Click "Save Settings" to apply changes
116
+
117
+ #### 3. Model Interaction
118
+
119
+ - After model loading is complete:
120
+ - Click **"New Conversation"**
121
+ - Enter your question (e.g., “Explain the basics of quantum computing”)
122
+ - Click the send button to get a response
123
+ # Technical Overview
124
+ **FlagOS** is a fully open-source system software stack designed to unify the "model–system–chip" layers and foster an open, collaborative ecosystem. It enables a “develop once, run anywhere” workflow across diverse AI accelerators, unlocking hardware performance, eliminating fragmentation among vendor-specific software stacks, and substantially lowering the cost of porting and maintaining AI workloads. With core technologies such as the **FlagScale**, together with vllm-plugin-fl, distributed training/inference framework, **FlagGems** universal operator library, **FlagCX** communication library, and **FlagTree** unified compiler, the **FlagRelease** platform leverages the **FlagOS** stack to automatically produce and release various combinations of \<chip + open-source model\>. This enables efficient and automated model migration across diverse chips, opening a new chapter for large model deployment and application.
125
+ ## FlagGems
126
+ FlagGems is a high-performance, generic operator libraryimplemented in [Triton](https://github.com/openai/triton) language. It is built on a collection of backend-neutralkernels that aims to accelerate LLM (Large-Language Models) training and inference across diverse hardware platforms.
127
+ ## FlagTree
128
+ FlagTree is an open source, unified compiler for multipleAI chips project dedicated to developing a diverse ecosystem of AI chip compilers and related tooling platforms, thereby fostering and strengthening the upstream and downstream Triton ecosystem. Currently in its initial phase, the project aims to maintain compatibility with existing adaptation solutions while unifying the codebase to rapidly implement single-repository multi-backend support. Forupstream model users, it provides unified compilation capabilities across multiple backends; for downstream chip manufacturers, it offers examples of Triton ecosystem integration.
129
+ ## FlagScale and vllm-plugin-fl
130
+ Flagscale is a comprehensive toolkit designed to supportthe entire lifecycle of large models. It builds on the strengths of several prominent open-source projects, including [Megatron-LM](https://github.com/NVIDIA/Megatron-LM) and [vLLM](https://github.com/vllm-project/vllm), to provide a robust, end-to-end solution for managing and scaling large models.
131
+ vllm-plugin-fl is a vLLM plugin built on the FlagOS unified multi-chip backend, to help flagscale support multi-chip on vllm framework.
132
+ ## **FlagCX**
133
+ FlagCX is a scalable and adaptive cross-chip communication library. It serves as a platform where developers, researchers, and AI engineers can collaborate on various projects, contribute to the development of cutting-edge AI solutions, and share their work with the global community.
134
+
135
+ ## **FlagEval Evaluation Framework**
136
+ FlagEval is a comprehensive evaluation system and open platform for large models launched in 2023. It aims to establish scientific, fair, and open benchmarks, methodologies, and tools to help researchers assess model and training algorithm performance. It features:
137
+ - **Multi-dimensional Evaluation**: Supports 800+ modelevaluations across NLP, CV, Audio, and Multimodal fields,covering 20+ downstream tasks including language understanding and image-text generation.
138
+ - **Industry-Grade Use Cases**: Has completed horizonta1 evaluations of mainstream large models, providing authoritative benchmarks for chip-model performance validation.
139
+
140
+ # Contributing
141
+
142
+ We warmly welcome global developers to join us:
143
+
144
+ 1. Submit Issues to report problems
145
+ 2. Create Pull Requests to contribute code
146
+ 3. Improve technical documentation
147
+ 4. Expand hardware adaptation support
148
+ # License
149
+ The model weights are derived from MiniMaxAI/MiniMax-M3 and are open‑sourced under the Apache License 2.0: https://www.apache.org/licenses/LICENSE-2.0.txt
150
+