Views
No views yet






git clone https://github.com/ggml-org/llama.cpp.gitcd llama.cpp1git fetch origin pull/22836/head:pr-22836-stq_0
2git checkout pr-22836-stq_01pip install -r requirements.txt
2cmake -B build
3cmake --build build --config Release1pip install huggingface_hub
2huggingface-cli download AngelSlim/Hy-MT1.5-1.8B-1.25bit \
3 --local-dir model_zoo/Hy-MT1.5-1.8B-1.25bit1python convert_hf_to_gguf.py model_zoo/Hy-MT1.5-1.8B-1.25bit \
2 --outfile model_zoo/Hy-MT1.5-1.8B-bf16.gguf \
3 --outtype bf161./build/bin/llama-quantize \
2 model_zoo/Hy-MT1.5-1.8B-bf16.gguf \
3 model_zoo/Hy-MT1.5-1.8B-STQ1_0.gguf \
4 STQ1_01./build/bin/llama-completion \
2 --model model_zoo/Hy-MT1.5-1.8B-STQ1_0.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-STQ1_0.gguf -ngl 01@misc{huang2026sherry,
2 title={Sherry: Hardware-Efficient 1.25-Bit Ternary Quantization via Fine-grained Sparsification},
3 author={Hong Huang and Decheng Wu and Qiangqiang Hu and Guanghua Yu and Jinhai Yang and Jianchen Zhu and Xue Liu and Dapeng Wu},
4 year={2026},
5 eprint={2601.07892},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG},
8 url={https://arxiv.org/abs/2601.07892},
9}
10
11@article{angelslim2026,
12 title={AngelSlim: A more accessible, comprehensive, and efficient toolkit for large model compression},
13 author={Hunyuan AI Infra Team},
14 journal={arXiv preprint arXiv:2602.21233},
15 year={2026}
16}
17
18@misc{zheng2025hymt,
19 title={HY-MT1.5 Technical Report},
20 author={Mao Zheng and Zheng Li and Tao Chen and Mingyang Song and Di Wang},
21 year={2025},
22 eprint={2512.24092},
23 archivePrefix={arXiv},
24 primaryClass={cs.CL},
25 url={https://arxiv.org/abs/2512.24092},
26}