Views
No views yet

{-1.5, -0.5, 0.5, 1.5}, combined with quantization-aware distillation. This compresses the original 3.3GB FP16 model down to just 574MB while maintaining near-lossless translation quality that surpasses models hundreds of GBs in size. The quantization details are described in the AngelSlim Technical Report.



git clone https://github.com/ggml-org/llama.cpp.gitcd llama.cpp1git fetch origin pull/19357/head:pr-19357-sme2-int2
2git checkout pr-19357-sme2-int21pip install -r requirements.txt
2cmake -B build
3cmake --build build --config Release1pip install huggingface_hub
2hf download AngelSlim/Hy-MT1.5-1.8B-2bit \
3 --local-dir model_zoo/Hy-MT1.5-1.8B-2bit1python convert_hf_to_gguf.py model_zoo/Hy-MT1.5-1.8B-2bit \
2 --outfile model_zoo/Hy-MT1.5-1.8B-2bit-qdq.gguf \
3 --outtype bf161./build/bin/llama-quantize \
2 model_zoo/Hy-MT1.5-1.8B-2bit-qdq.gguf\
3 model_zoo/Hy-MT1.5-1.8B-Q2_0c.gguf \
4 q2_0c1./build/bin/llama-completion \
2 --model model_zoo/Hy-MT1.5-1.8B-Q2_0c.gguf \
3 -p "Translate the following segment into Chinese, without additional explanation. Hello " \
4 --jinja \
5 -ngl 0 \
6 -n 64 -st./build/bin/llama-bench -m model_zoo/Hy-MT1.5-1.8B-Q2_0c.gguf -ngl 01@article{angelslim2026,
2 title={AngelSlim: A more accessible, comprehensive, and efficient toolkit for large model compression},
3 author={Hunyuan AI Infra Team},
4 journal={arXiv preprint arXiv:2602.21233},
5 year={2026}
6}
7
8@misc{zheng2025hymt,
9 title={HY-MT1.5 Technical Report},
10 author={Mao Zheng and Zheng Li and Tao Chen and Mingyang Song and Di Wang},
11 year={2025},
12 eprint={2512.24092},
13 archivePrefix={arXiv},
14 primaryClass={cs.CL},
15 url={https://arxiv.org/abs/2512.24092},
16}