thad0ctor commited on
Commit
9d41769
·
verified ·
1 Parent(s): b3a4714

Add files using upload-large-folder tool

Browse files
Files changed (4) hide show
  1. .gitattributes +1 -0
  2. LICENSE +26 -0
  3. MiniMax-M2.5.Q6_K.gguf +3 -0
  4. README.md +49 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ MiniMax-M2.5.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
LICENSE ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright 2025 MiniMax AI.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ Our only modification is that, if the Software (or any derivative works
24
+ thereof) is used for any of your commercial products or services, you shall
25
+ prominently display “MiniMax M2.5” on the user interface of such product or
26
+ service.
MiniMax-M2.5.Q6_K.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0011113531d03a7c7f408b3fbebf73568c82610fb345de6ff7cb857b00c5f1a6
3
+ size 187763082496
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: MiniMaxAI/MiniMax-M2.5
3
+ base_model_relation: quantized
4
+ license: other
5
+ license_name: modified-mit
6
+ license_link: LICENSE
7
+ tags:
8
+ - gguf
9
+ - quantized
10
+ - llama.cpp
11
+ ---
12
+
13
+ # MiniMax-M2.5 GGUF
14
+
15
+ GGUF quantization of `MiniMaxAI/MiniMax-M2.5`, created with `llama.cpp`.
16
+
17
+ ## Model Details
18
+
19
+ | Property | Value |
20
+ | --- | --- |
21
+ | Base model | MiniMaxAI/MiniMax-M2.5 |
22
+ | Architecture | Mixture of Experts (MoE) |
23
+ | Total parameters | 230B |
24
+ | Active parameters | 10B per token |
25
+ | Layers | 62 |
26
+ | Total experts | 256 |
27
+ | Active experts per token | 8 |
28
+ | Source precision | FP8 (`float8_e4m3fn`) |
29
+
30
+ ## Available Quantizations
31
+
32
+ | Quantization | Size | Description |
33
+ | --- | --- | --- |
34
+ | Q6_K | 175 GB | 6-bit K-quant, strong quality/size balance |
35
+
36
+ ## Usage
37
+
38
+ These GGUFs can be used with `llama.cpp` and compatible frontends.
39
+
40
+ ```bash
41
+ # Example with llama-cli
42
+ llama-cli -m MiniMax-M2.5.Q6_K.gguf -p "Hello" -n 128
43
+ ```
44
+
45
+ ## Notes
46
+
47
+ - The source model uses FP8 (`float8_e4m3fn`) precision.
48
+ - This is a large MoE model and requires significant memory.
49
+ - Quantized from the official `MiniMaxAI/MiniMax-M2.5` weights.