Views
No views yet
BF16 version and imatrix file.- Q2_K_XL : 79.04 GiB (2.97 BPW)
- MXFP4_MOE : 115.27 GiB (4.33 BPW)
- Q4_K_XL : 129.72 GiB (4.87 BPW)
- Q8_0 : 226.43 GiB (8.51 BPW)
- Other Quant Versions (Coming soon)huggingface-cli download moxin-org/MiniMax-M2-GGUF --include "*Q4_K_XL*" --local-dir ./MiniMax-M2-GGUF1# !pip install huggingface_hub hf_transfer
2import os
3# os.environ["HF_HUB_ENABLE_HF_TRANSFER"] = "1"
4from huggingface_hub import snapshot_download
5snapshot_download(
6 repo_id = "moxin-org/MiniMax-M2-GGUF",
7 local_dir = "MiniMax-M2-GGUF",
8 allow_patterns = ["*Q4_K_XL*"], # MXFP4_MOE
9)Download Available for huggingface_hub, huggingface-cli, snapshot_download, xet.
1git clone https://github.com/ggml-org/llama.cpp.git
2cd llama.cpp
3
4# -DLLAMA_CURL=OFF if error
5cmake -B build -DGGML_CUDA=ON -DBUILD_SHARED_LIBS=OFF
6cmake --build build --config Release -j --clean-first1build/bin/llama-cli -m MiniMax-M2-GGUF/Moxin-Q4_K_XL/MiniMax-M2-Q4_K_XL-00001-of-00006.gguf \
2 -ngl 99 \
3 --temp 1.0 \
4 --top-k 40 \
5 --top-p 0.95 \
6 --min-p 0.01 \
7 --ctx-size 8192 \ # 4096, 163841@article{chen2025collaborative,
2 title={Collaborative Compression for Large-Scale MoE Deployment on Edge},
3 author={Chen, Yixiao and Xie, Yanyue and Yang, Ruining and Jiang, Wei and Wang, Wei and He, Yong and Chen, Yue and Zhao, Pu and Wang, Yanzhi},
4 journal={arXiv preprint arXiv:2509.25689},
5 year={2025}
6}