Dedicated to building a more intuitive, comprehensive, and efficient LLMs compression toolkit.
12
38 commits
3 linked in READMEs
updated Jun 23, 2026
π± Android DemoΒ Β | Β Β
π£ GGUFΒ Β | Β Β
βοΈ AngelSlim ReportΒ Β | Β Β
π DocumentationΒ Β | Β Β
π€ AngelSlimΒ Β | Β Β
π¬ WeChat
Hy-MT1.5-1.8B translation quality scores. Source: HY-MT1.5 Technical Report
For more detailed information, please refer to [AngelSlim] and [HY-MT]
World-Class Translation Quality Hy-MT1.5-1.8B-2bit is built upon the Hy-MT1.5-1.8B foundation model, a specialized translation model developed by Tencent Hunyuan Team through a holistic multi-stage training pipeline integrating MT-oriented pre-training, supervised fine-tuning, on-policy distillation, and reinforcement learning. The base model natively supports 33 languages, 5 dialects/minority languages, and 1,056 translation directions. With only 1.8B parameters, it comprehensively outperforms much larger open-source models (e.g., Tower-Plus-72B, Qwen3-32B) and mainstream commercial translation APIs (e.g., Microsoft Translator, Doubao Translator). For full details, please refer to the HY-MT1.5 Technical Report.
Ultra-Compact 2-bit Quantization Hy-MT1.5-1.8B-2bit employs industry-leading Stretched Elastic Quantization (SEQ) to quantize model weights to {-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.
On-Device Deployment Optimized for Arm SME2-capable mobile devices (e.g., Apple M4, vivo x300), the 2-bit model enables fast, fully offline translation directly on your phone, no internet connection required. Your data never leaves the device, ensuring complete privacy.
Performance comparison of different model sizes on the Flores-200 Chinese-Foreign mutual translation benchmark:
Performance of different model sizes on the Flores-200 Chinese-Foreign mutual translation benchmark.
Speed comparison of the 2-bit model on SME2 and Neon kernels:
Speed comparison of the 2-bit model on SME2 and Neon kernels.
We provide a ready-to-use Android demo APK for offline translation. The app features a background word extraction mode that works across any app on your phone β browse emails, webpages, or chat messages and get instant translations without switching apps. No network required, no data collection, one-time download for permanent use.
Download Demo:
https://huggingface.co/AngelSlim/Hy-MT1.5-1.8B-1.25bit-GGUF/resolve/main/Hy-MT-demo.apk
Demo device: Snapdragon 865, 8GB RAM.
Demo device: Snapdragon 7+ Gen 2, 16GB RAM.
ββ This gguf depends on Q2_0c kernel, which is released at PR #19357.
git clone https://github.com/ggml-org/llama.cpp.git
cd llama.cpp
git fetch origin pull/19357/head:pr-19357-sme2-int2
git checkout pr-19357-sme2-int2
pip install -r requirements.txt
cmake -B build
cmake --build build --config Release
pip install huggingface_hub
hf download AngelSlim/Hy-MT1.5-1.8B-2bit \
--local-dir model_zoo/Hy-MT1.5-1.8B-2bit
python convert_hf_to_gguf.py model_zoo/Hy-MT1.5-1.8B-2bit \
--outfile model_zoo/Hy-MT1.5-1.8B-2bit-qdq.gguf \
--outtype bf16
./build/bin/llama-quantize \
model_zoo/Hy-MT1.5-1.8B-2bit-qdq.gguf\
model_zoo/Hy-MT1.5-1.8B-Q2_0c.gguf \
q2_0c
The prompt format can be viewed at HY-MT1.5-1.8B
./build/bin/llama-completion \
--model model_zoo/Hy-MT1.5-1.8B-Q2_0c.gguf \
-p "Translate the following segment into Chinese, without additional explanation. Hello " \
--jinja \
-ngl 0 \
-n 64 -st
./build/bin/llama-bench -m model_zoo/Hy-MT1.5-1.8B-Q2_0c.gguf -ngl 0
The code for this project is open-sourced under the License for AngelSlim.
@article{angelslim2026,
title={AngelSlim: A more accessible, comprehensive, and efficient toolkit for large model compression},
author={Hunyuan AI Infra Team},
journal={arXiv preprint arXiv:2602.21233},
year={2026}
}
@misc{zheng2025hymt,
title={HY-MT1.5 Technical Report},
author={Mao Zheng and Zheng Li and Tao Chen and Mingyang Song and Di Wang},
year={2025},
eprint={2512.24092},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2512.24092},
}
Dedicated to building a more intuitive, comprehensive, and efficient LLMs compression toolkit.
12
38 commits
3 linked in READMEs
updated Jun 23, 2026
π± Android DemoΒ Β | Β Β
π£ GGUFΒ Β | Β Β
βοΈ AngelSlim ReportΒ Β | Β Β
π DocumentationΒ Β | Β Β
π€ AngelSlimΒ Β | Β Β
π¬ WeChat
Hy-MT1.5-1.8B translation quality scores. Source: HY-MT1.5 Technical Report
For more detailed information, please refer to [AngelSlim] and [HY-MT]
World-Class Translation Quality Hy-MT1.5-1.8B-2bit is built upon the Hy-MT1.5-1.8B foundation model, a specialized translation model developed by Tencent Hunyuan Team through a holistic multi-stage training pipeline integrating MT-oriented pre-training, supervised fine-tuning, on-policy distillation, and reinforcement learning. The base model natively supports 33 languages, 5 dialects/minority languages, and 1,056 translation directions. With only 1.8B parameters, it comprehensively outperforms much larger open-source models (e.g., Tower-Plus-72B, Qwen3-32B) and mainstream commercial translation APIs (e.g., Microsoft Translator, Doubao Translator). For full details, please refer to the HY-MT1.5 Technical Report.
Ultra-Compact 2-bit Quantization Hy-MT1.5-1.8B-2bit employs industry-leading Stretched Elastic Quantization (SEQ) to quantize model weights to {-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.
On-Device Deployment Optimized for Arm SME2-capable mobile devices (e.g., Apple M4, vivo x300), the 2-bit model enables fast, fully offline translation directly on your phone, no internet connection required. Your data never leaves the device, ensuring complete privacy.
Performance comparison of different model sizes on the Flores-200 Chinese-Foreign mutual translation benchmark:
Performance of different model sizes on the Flores-200 Chinese-Foreign mutual translation benchmark.
Speed comparison of the 2-bit model on SME2 and Neon kernels:
Speed comparison of the 2-bit model on SME2 and Neon kernels.
We provide a ready-to-use Android demo APK for offline translation. The app features a background word extraction mode that works across any app on your phone β browse emails, webpages, or chat messages and get instant translations without switching apps. No network required, no data collection, one-time download for permanent use.
Download Demo:
https://huggingface.co/AngelSlim/Hy-MT1.5-1.8B-1.25bit-GGUF/resolve/main/Hy-MT-demo.apk
Demo device: Snapdragon 865, 8GB RAM.
Demo device: Snapdragon 7+ Gen 2, 16GB RAM.
ββ This gguf depends on Q2_0c kernel, which is released at PR #19357.
git clone https://github.com/ggml-org/llama.cpp.git
cd llama.cpp
git fetch origin pull/19357/head:pr-19357-sme2-int2
git checkout pr-19357-sme2-int2
pip install -r requirements.txt
cmake -B build
cmake --build build --config Release
pip install huggingface_hub
hf download AngelSlim/Hy-MT1.5-1.8B-2bit \
--local-dir model_zoo/Hy-MT1.5-1.8B-2bit
python convert_hf_to_gguf.py model_zoo/Hy-MT1.5-1.8B-2bit \
--outfile model_zoo/Hy-MT1.5-1.8B-2bit-qdq.gguf \
--outtype bf16
./build/bin/llama-quantize \
model_zoo/Hy-MT1.5-1.8B-2bit-qdq.gguf\
model_zoo/Hy-MT1.5-1.8B-Q2_0c.gguf \
q2_0c
The prompt format can be viewed at HY-MT1.5-1.8B
./build/bin/llama-completion \
--model model_zoo/Hy-MT1.5-1.8B-Q2_0c.gguf \
-p "Translate the following segment into Chinese, without additional explanation. Hello " \
--jinja \
-ngl 0 \
-n 64 -st
./build/bin/llama-bench -m model_zoo/Hy-MT1.5-1.8B-Q2_0c.gguf -ngl 0
The code for this project is open-sourced under the License for AngelSlim.
@article{angelslim2026,
title={AngelSlim: A more accessible, comprehensive, and efficient toolkit for large model compression},
author={Hunyuan AI Infra Team},
journal={arXiv preprint arXiv:2602.21233},
year={2026}
}
@misc{zheng2025hymt,
title={HY-MT1.5 Technical Report},
author={Mao Zheng and Zheng Li and Tao Chen and Mingyang Song and Di Wang},
year={2025},
eprint={2512.24092},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2512.24092},
}