Views
No views yet

IQ1_M is made with tensor-type recipes , and serves only as an experimental configuration for extreme compression.Q2_K_XL is a specialized version with all expert at 2-bit and all other tensors at 8-bit designed for personalized deployment and experiments.Q8_0-Q4_0 [Q4_X] is the almost "full quality" version with the hack fix of Q4_0 provided by jukofyork. Final estimate: PPL = 2.0813 +/- 0.00903Q3_K_XL is derived from the Q4_X variant, with all ffn_gate and ffn_up experts quantized to 3-bits. [recommended if you can't fit in the Q4_X version].- IQ1_M : 226.86 GiB (1.90 BPW)
- Q2_K_XL : 322.13 GiB (2.70 BPW)
- Q3_K_XL : 459.94 GiB (3.85 BPW)
- Q8_0-Q4_0 [Q4_X] : 543.62 GiB (4.55 BPW) attn or shexp.huggingface-cli download moxin-org/Kimi-K2-Thinking-Moxin-GGUF --include "*Q3_K_XL*" --local-dir ./Kimi-K2-Moxin1# !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/Kimi-K2-Thinking-Moxin-GGUF",
7 local_dir = "Kimi-K2-Thinking-Moxin-GGUF",
8 allow_patterns = ["*Q8_0-Q4_0*"], # Q3_K_XL, Q2_K_XL, IQ1_M
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 Kimi-K2-Thinking-Moxin-GGUF/K2-Thinking-IQ1_M/Kimi-K2-Thinking-Moxin-IQ1_M-00001-of-00007.gguf \
2 -ngl 99 \
3 --temp 1.0 \
4 --min-p 0.01 \
5 --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}