BennyDaBall commited on
Commit
d755148
·
verified ·
1 Parent(s): c182c22

Add model card

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ base_model:
4
+ - MiniMaxAI/MiniMax-M2.5
5
+ language:
6
+ - en
7
+ tags:
8
+ - gguf
9
+ - minimax
10
+ - moe
11
+ - reap
12
+ - text-generation
13
+ pipeline_tag: text-generation
14
+ ---
15
+
16
+ # MiniMax-M2.5-REAP-139B-A10B-GGUF
17
+
18
+ This is the REAP model in practical pants: high quality GGUF quants for local inference without setting your workstation on fire.
19
+
20
+ Built from:
21
+ - Base: `MiniMaxAI/MiniMax-M2.5`
22
+ - REAP source: `tomngdev/MiniMax-M2.5-REAP-139B-A10B-GGUF` (BF16 split)
23
+ - Quantized locally with `llama.cpp` on Strix Halo + high RAM mode.
24
+
25
+ ## Available Quants
26
+
27
+ | Quant | Status | Size (GiB) | Notes |
28
+ |---|---|---:|---|
29
+ | `Q8_0` | uploaded | 137.78 | Highest quality quant in this pack |
30
+ | `Q5_K_M` | processing/uploading | TBD | Better quality/size balance |
31
+ | `Q4_K_M` | uploaded | 78.83 | Strong practical default |
32
+
33
+ ## File Layout
34
+
35
+ All quants are split GGUF sets (`00001-of-00007` etc.) for safer handling of very large models.
36
+
37
+ ## Quality Notes
38
+
39
+ - These are generated from BF16 REAP GGUF, not requantized from lower precision.
40
+ - Token embedding and output tensors are kept at `Q8_0` during quantization for quality retention.
41
+
42
+ ## Usage
43
+
44
+ Use any first shard with `llama.cpp`; it auto-discovers sibling shards:
45
+
46
+ ```bash
47
+ llama-cli -m MiniMax-M2.5-REAP-Q4_K_M-00001-of-00007.gguf -ngl 0 -c 8192
48
+ ```
49
+
50
+ ## Credits
51
+
52
+ - `MiniMaxAI` for MiniMax-M2.5
53
+ - `tomngdev` for the BF16 REAP GGUF release
54
+ - `BennyDaBall` for this quant pack
55
+
56
+ ## Disclaimer
57
+
58
+ You are responsible for your own use, outputs, and compliance with applicable laws and platform policies.