Views
No views yet
BF16 version and imatrix file.- MXFP4_MOE : 16.74 GiB (4.55 BPW)
- IQ4_NL : 17.38 GiB (4.73 BPW)
- Q8_0 : 31.27 GiB (8.51 BPW)
- Other Quant Versions (TBD)Note: NemotronHForCausalLM features a 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/Nemotron-3-Nano-30B-A3B-GGUF --include "*MXFP4_MOE*" --local-dir ./Nemotron-3-Nano-30B-A3B-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/Nemotron-3-Nano-30B-A3B-GGUF",
7 local_dir = "Nemotron-3-Nano-30B-A3B-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 <path-to-gguf> \
2 --jinja \
3 -ngl 99 \
4 --temp 0.6 \
5 --top-p 0.95 \
6 --ctx-size 16384 \ # 8192, 326841@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}