Views
No views yet

BF16 version and imatrix file.- MXFP4_MOE : 40.73 GiB (4.39 BPW)
- Q8_0 : 78.98 GiB (8.52 BPW)
- Other Quant Versions (TBD)Note: As shown below, Qwen3-Next features a highly distinctive MoE architecture, markedly different from existing MoE implementations. Because of this uniqueness, we are providing only the most reliable and broadly compatible quantization options at this stage.

huggingface-cli download moxin-org/Qwen3-Next-80B-A3B-Instruct-GGUF --include "*MXFP4_MOE*" --local-dir ./Qwen3-Next-80B-A3B-Instruct-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/Qwen3-Next-80B-A3B-Instruct-GGUF",
7 local_dir = "Qwen3-Next-80B-A3B-Instruct-GGUF",
8 allow_patterns = ["*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 Qwen3-Next-80B-A3B-Instruct-GGUF/MXFP4_MOE/Qwen3-Next-80B-A3B-Instruct-MXFP4_MOE.gguf \
2 -ngl 99 \
3 --temp 0.7 \
4 --top-k 20 \
5 --top-p 0.8 \
6 --min-p 0.00 \
7 --presence-penalty 1.0 \
8 --ctx-size 16384 \ # 4096, 81921@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}