Views
No views yet


| Model Name | Description | Download |
|---|---|---|
| HY-MT1.5-1.8B | Hunyuan 1.8B translation model | 🤗 Model |
| HY-MT1.5-1.8B-FP8 | Hunyuan 1.8B translation model, fp8 quant | 🤗 Model |
| HY-MT1.5-1.8B-GPTQ-Int4 | Hunyuan 1.8B translation model, int4 quant | 🤗 Model |
| HY-MT1.5-7B | Hunyuan 7B translation model | 🤗 Model |
| HY-MT1.5-7B-FP8 | Hunyuan 7B translation model, fp8 quant | 🤗 Model |
| HY-MT1.5-7B-GPTQ-Int4 | Hunyuan 7B translation model, int4 quant | 🤗 Model |
将以下文本翻译为{target_language},注意只需要输出翻译后的结果,不要额外解释:
{source_text}Translate the following segment into {target_language}, without additional explanation.
{source_text}参考下面的翻译:
{source_term} 翻译成 {target_term}
将以下文本翻译为{target_language},注意只需要输出翻译后的结果,不要额外解释:
{source_text}{context}
参考上面的信息,把下面的文本翻译成{target_language},注意不需要翻译上文,也不要额外解释:
{source_text}
将以下<source></source>之间的文本翻译为中文,注意只需要输出翻译后的结果,不要额外解释,原文中的<sn></sn>标签表示标签内文本包含格式信息,需要在译文中相应的位置尽量保留该标签。输出格式为:<target>str</target>
<source>{src_text_with_format}</source>pip install transformers==4.56.01from transformers import AutoModelForCausalLM, AutoTokenizer
2import os
3
4model_name_or_path = "tencent/HY-MT1.5-1.8B"
5
6tokenizer = AutoTokenizer.from_pretrained(model_name_or_path)
7model = AutoModelForCausalLM.from_pretrained(model_name_or_path, device_map="auto") # You may want to use bfloat16 and/or move to GPU here
8messages = [
9 {"role": "user", "content": "Translate the following segment into Chinese, without additional explanation.\n\nIt’s on the house."},
10]
11tokenized_chat = tokenizer.apply_chat_template(
12 messages,
13 tokenize=True,
14 add_generation_prompt=False,
15 return_tensors="pt"
16)
17
18outputs = model.generate(tokenized_chat.to(model.device), max_new_tokens=2048)
19output_text = tokenizer.decode(outputs[0])1{
2 "top_k": 20,
3 "top_p": 0.6,
4 "repetition_penalty": 1.05,
5 "temperature": 0.7
6}| Languages | Abbr. | Chinese Names |
|---|---|---|
| Chinese | zh | 中文 |
| English | en | 英语 |
| French | fr | 法语 |
| Portuguese | pt | 葡萄牙语 |
| Spanish | es | 西班牙语 |
| Japanese | ja | 日语 |
| Turkish | tr | 土耳其语 |
| Russian | ru | 俄语 |
| Arabic | ar | 阿拉伯语 |
| Korean | ko | 韩语 |
| Thai | th | 泰语 |
| Italian | it | 意大利语 |
| German | de | 德语 |
| Vietnamese | vi | 越南语 |
| Malay | ms | 马来语 |
| Indonesian | id | 印尼语 |
| Filipino | tl | 菲律宾语 |
| Hindi | hi | 印地语 |
| Traditional Chinese | zh-Hant | 繁体中文 |
| Polish | pl | 波兰语 |
| Czech | cs | 捷克语 |
| Dutch | nl | 荷兰语 |
| Khmer | km | 高棉语 |
| Burmese | my | 缅甸语 |
| Persian | fa | 波斯语 |
| Gujarati | gu | 古吉拉特语 |
| Urdu | ur | 乌尔都语 |
| Telugu | te | 泰卢固语 |
| Marathi | mr | 马拉地语 |
| Hebrew | he | 希伯来语 |
| Bengali | bn | 孟加拉语 |
| Tamil | ta | 泰米尔语 |
| Ukrainian | uk | 乌克兰语 |
| Tibetan | bo | 藏语 |
| Kazakh | kk | 哈萨克语 |
| Mongolian | mn | 蒙古语 |
| Uyghur | ug | 维吾尔语 |
| Cantonese | yue | 粤语 |
1@misc{hy-mt1.5,
2 title={HY-MT1.5 Technical Report},
3 author={Mao Zheng and Zheng Li and Tao Chen and Mingyang Song and Di Wang},
4 year={2025},
5 eprint={2512.24092},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2512.24092},
9}