catplusplus/MiniMax-M2.5-REAP-172B-A10B-NVFP4

认证创作者 catplusplus 已认证
🤗 Hugging Face 来源apache-2.0116B 参数激活 10B108 GBsafetensors✓ 30 个校验和今天更新
一条命令提交

在你的模型文件夹旁边运行它。它会制作种子、将文件与 Hugging Face 比对,然后提交。你只需开始做种,并粘贴你账户中的密钥。它只读取你的文件,绝不修改。如果愿意,可以先阅读脚本。

curl -fsSL https://pirateface.co/package.sh | bash -s -- --repo catplusplus/MiniMax-M2.5-REAP-172B-A10B-NVFP4 ./model-folder
需要做种者 →

Wanted to try a SOTA coder model on my NVIDIA Thor Dev Kit, full nvidia/MiniMax-M2.5-NVFP4 won't fit and saricles/MiniMax-M2.5-REAP-172B-A10B-NVFP4-GB10 won't work on Thor for some reason. So I asked cloud MiniMax 2.7 to find out which experts from the original model are deleted based on router column deletion and also delete them from NVIDIA model. The resulting model here seems to work fine for chat, will check it out for coding shortly. Full run command with vllm 0.19.0 wrapper:

I have included extras directory in model files with the following tools:

  • Script used to delete experts from nvidia model based on structure of saricles model, should be reusable for other REAP transfer between quants
  • Modified chat template that allows turning off reasoning through the same mechanism as Qwen 3.5, enable_thinking: false in kwargs
  • Modified reasoning parser to support new template
  • cpp tool to aggressively clear memory and swap out inactive processes before running model in order to max out context length, I get ~120K tokens with FP8 kv cache
  • Example script to run vLLM with optimized parameters for speed and memory efficiency, for example limited CUDA graph captures, as well as custom chat template/reasoning parser.