Instructions to use tencent/Hy-MT2-30B-A3B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tencent/Hy-MT2-30B-A3B-GGUF with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="tencent/Hy-MT2-30B-A3B-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tencent/Hy-MT2-30B-A3B-GGUF", device_map="auto") - llama-cpp-python
How to use tencent/Hy-MT2-30B-A3B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tencent/Hy-MT2-30B-A3B-GGUF", filename="Hy-MT2-30B-A3B-Q4_K_M.gguf", )
llm.create_chat_completion( messages = "\"Меня зовут Вольфганг и я живу в Берлине\"" )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tencent/Hy-MT2-30B-A3B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use tencent/Hy-MT2-30B-A3B-GGUF with Ollama:
ollama run hf.co/tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M
- Unsloth Studio
How to use tencent/Hy-MT2-30B-A3B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for tencent/Hy-MT2-30B-A3B-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for tencent/Hy-MT2-30B-A3B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tencent/Hy-MT2-30B-A3B-GGUF to start chatting
- Pi
How to use tencent/Hy-MT2-30B-A3B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use tencent/Hy-MT2-30B-A3B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use tencent/Hy-MT2-30B-A3B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use tencent/Hy-MT2-30B-A3B-GGUF with Docker Model Runner:
docker model run hf.co/tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M
- Lemonade
How to use tencent/Hy-MT2-30B-A3B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Hy-MT2-30B-A3B-GGUF-Q4_K_M
List all available models
lemonade list
Upload 3 files
Browse files- LICENSE.txt +208 -0
- README.md +297 -0
- README_CN.md +254 -0
LICENSE.txt
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Tencent is pleased to support the open-source community by making Hy-MT2-30B-A3B available.
|
| 2 |
+
|
| 3 |
+
Copyright (C) 2026 Tencent. All rights reserved.
|
| 4 |
+
|
| 5 |
+
Hy-MT2-30B-A3B is licensed under the Apache License, Version 2.0.
|
| 6 |
+
|
| 7 |
+
--------------------------------------------------------------------
|
| 8 |
+
Apache License
|
| 9 |
+
Version 2.0, January 2004
|
| 10 |
+
http://www.apache.org/licenses/
|
| 11 |
+
|
| 12 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 13 |
+
|
| 14 |
+
1. Definitions.
|
| 15 |
+
|
| 16 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 17 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 18 |
+
|
| 19 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 20 |
+
the copyright owner that is granting the License.
|
| 21 |
+
|
| 22 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 23 |
+
other entities that control, are controlled by, or are under common
|
| 24 |
+
control with that entity. For the purposes of this definition,
|
| 25 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 26 |
+
direction or management of such entity, whether by contract or
|
| 27 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 28 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 29 |
+
|
| 30 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 31 |
+
exercising permissions granted by this License.
|
| 32 |
+
|
| 33 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 34 |
+
including but not limited to software source code, documentation
|
| 35 |
+
source, and configuration files.
|
| 36 |
+
|
| 37 |
+
"Object" form shall mean any form resulting from mechanical
|
| 38 |
+
transformation or translation of a Source form, including but
|
| 39 |
+
not limited to compiled object code, generated documentation,
|
| 40 |
+
and conversions to other media types.
|
| 41 |
+
|
| 42 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 43 |
+
Object form, made available under the License, as indicated by a
|
| 44 |
+
copyright notice that is included in or attached to the work
|
| 45 |
+
(an example is provided in the Appendix below).
|
| 46 |
+
|
| 47 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 48 |
+
form, that is based on (or derived from) the Work and for which the
|
| 49 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 50 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 51 |
+
of this License, Derivative Works shall not include works that remain
|
| 52 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 53 |
+
the Work and Derivative Works thereof.
|
| 54 |
+
|
| 55 |
+
"Contribution" shall mean any work of authorship, including
|
| 56 |
+
the original version of the Work and any modifications or additions
|
| 57 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 58 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 59 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 60 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 61 |
+
means any form of electronic, verbal, or written communication sent
|
| 62 |
+
to the Licensor or its representatives, including but not limited to
|
| 63 |
+
communication on electronic mailing lists, source code control systems,
|
| 64 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 65 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 66 |
+
excluding communication that is conspicuously marked or otherwise
|
| 67 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 68 |
+
|
| 69 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 70 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 71 |
+
subsequently incorporated within the Work.
|
| 72 |
+
|
| 73 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 76 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 77 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 78 |
+
Work and such Derivative Works in Source or Object form.
|
| 79 |
+
|
| 80 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 81 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 82 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 83 |
+
(except as stated in this section) patent license to make, have made,
|
| 84 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 85 |
+
where such license applies only to those patent claims licensable
|
| 86 |
+
by such Contributor that are necessarily infringed by their
|
| 87 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 88 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 89 |
+
institute patent litigation against any entity (including a
|
| 90 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 91 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 92 |
+
or contributory patent infringement, then any patent licenses
|
| 93 |
+
granted to You under this License for that Work shall terminate
|
| 94 |
+
as of the date such litigation is filed.
|
| 95 |
+
|
| 96 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 97 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 98 |
+
modifications, and in Source or Object form, provided that You
|
| 99 |
+
meet the following conditions:
|
| 100 |
+
|
| 101 |
+
(a) You must give any other recipients of the Work or
|
| 102 |
+
Derivative Works a copy of this License; and
|
| 103 |
+
|
| 104 |
+
(b) You must cause any modified files to carry prominent notices
|
| 105 |
+
stating that You changed the files; and
|
| 106 |
+
|
| 107 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 108 |
+
that You distribute, all copyright, patent, trademark, and
|
| 109 |
+
attribution notices from the Source form of the Work,
|
| 110 |
+
excluding those notices that do not pertain to any part of
|
| 111 |
+
the Derivative Works; and
|
| 112 |
+
|
| 113 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 114 |
+
distribution, then any Derivative Works that You distribute must
|
| 115 |
+
include a readable copy of the attribution notices contained
|
| 116 |
+
within such NOTICE file, excluding those notices that do not
|
| 117 |
+
pertain to any part of the Derivative Works, in at least one
|
| 118 |
+
of the following places: within a NOTICE text file distributed
|
| 119 |
+
as part of the Derivative Works; within the Source form or
|
| 120 |
+
documentation, if provided along with the Derivative Works; or,
|
| 121 |
+
within a display generated by the Derivative Works, if and
|
| 122 |
+
wherever such third-party notices normally appear. The contents
|
| 123 |
+
of the NOTICE file are for informational purposes only and
|
| 124 |
+
do not modify the License. You may add Your own attribution
|
| 125 |
+
notices within Derivative Works that You distribute, alongside
|
| 126 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 127 |
+
that such additional attribution notices cannot be construed
|
| 128 |
+
as modifying the License.
|
| 129 |
+
|
| 130 |
+
You may add Your own copyright statement to Your modifications and
|
| 131 |
+
may provide additional or different license terms and conditions
|
| 132 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 133 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 134 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 135 |
+
the conditions stated in this License.
|
| 136 |
+
|
| 137 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 138 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 139 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 140 |
+
this License, without any additional terms or conditions.
|
| 141 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 142 |
+
the terms of any separate license agreement you may have executed
|
| 143 |
+
with Licensor regarding such Contributions.
|
| 144 |
+
|
| 145 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 146 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 147 |
+
except as required for reasonable and customary use in describing the
|
| 148 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 149 |
+
|
| 150 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 151 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 152 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 153 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 154 |
+
implied, including, without limitation, any warranties or conditions
|
| 155 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 156 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 157 |
+
appropriateness of using or redistributing the Work and assume any
|
| 158 |
+
risks associated with Your exercise of permissions under this License.
|
| 159 |
+
|
| 160 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 161 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 162 |
+
unless required by applicable law (such as deliberate and grossly
|
| 163 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 164 |
+
liable to You for damages, including any direct, indirect, special,
|
| 165 |
+
incidental, or consequential damages of any character arising as a
|
| 166 |
+
result of this License or out of the use or inability to use the
|
| 167 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 168 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 169 |
+
other commercial damages or losses), even if such Contributor
|
| 170 |
+
has been advised of the possibility of such damages.
|
| 171 |
+
|
| 172 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 173 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 174 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 175 |
+
or other liability obligations and/or rights consistent with this
|
| 176 |
+
License. However, in accepting such obligations, You may act only
|
| 177 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 178 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 179 |
+
defend, and hold each Contributor harmless for any liability
|
| 180 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 181 |
+
of your accepting any such warranty or additional liability.
|
| 182 |
+
|
| 183 |
+
END OF TERMS AND CONDITIONS
|
| 184 |
+
|
| 185 |
+
APPENDIX: How to apply the Apache License to your work.
|
| 186 |
+
|
| 187 |
+
To apply the Apache License to your work, attach the following
|
| 188 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
| 189 |
+
replaced with your own identifying information. (Don't include
|
| 190 |
+
the brackets!) The text should be enclosed in the appropriate
|
| 191 |
+
comment syntax for the file format. We also recommend that a
|
| 192 |
+
file or class name and description of purpose be included on the
|
| 193 |
+
same "printed page" as the copyright notice for easier
|
| 194 |
+
identification within third-party archives.
|
| 195 |
+
|
| 196 |
+
Copyright [yyyy] [name of copyright owner]
|
| 197 |
+
|
| 198 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 199 |
+
you may not use this file except in compliance with the License.
|
| 200 |
+
You may obtain a copy of the License at
|
| 201 |
+
|
| 202 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 203 |
+
|
| 204 |
+
Unless required by applicable law or agreed to in writing, software
|
| 205 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 206 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 207 |
+
See the License for the specific language governing permissions and
|
| 208 |
+
limitations under the License.
|
README.md
CHANGED
|
@@ -1,3 +1,300 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
tags:
|
| 4 |
+
- translation
|
| 5 |
+
language:
|
| 6 |
+
- zh
|
| 7 |
+
- en
|
| 8 |
+
- fr
|
| 9 |
+
- pt
|
| 10 |
+
- es
|
| 11 |
+
- ja
|
| 12 |
+
- tr
|
| 13 |
+
- ru
|
| 14 |
+
- ar
|
| 15 |
+
- ko
|
| 16 |
+
- th
|
| 17 |
+
- it
|
| 18 |
+
- de
|
| 19 |
+
- vi
|
| 20 |
+
- ms
|
| 21 |
+
- id
|
| 22 |
+
- tl
|
| 23 |
+
- hi
|
| 24 |
+
- pl
|
| 25 |
+
- cs
|
| 26 |
+
- nl
|
| 27 |
+
- km
|
| 28 |
+
- my
|
| 29 |
+
- fa
|
| 30 |
+
- gu
|
| 31 |
+
- ur
|
| 32 |
+
- te
|
| 33 |
+
- mr
|
| 34 |
+
- he
|
| 35 |
+
- bn
|
| 36 |
+
- ta
|
| 37 |
+
- uk
|
| 38 |
+
- bo
|
| 39 |
+
- kk
|
| 40 |
+
- mn
|
| 41 |
+
- ug
|
| 42 |
license: apache-2.0
|
| 43 |
---
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
<p align="left">
|
| 47 |
+
English | <a href="https://huggingface.co/tencent/Hy-MT2-30B-A3B/blob/main/README_CN.md">中文</a>
|
| 48 |
+
</p>
|
| 49 |
+
<br>
|
| 50 |
+
|
| 51 |
+
<p align="center">
|
| 52 |
+
<img src="imgs/logo-en.png" width="400"/> <br>
|
| 53 |
+
</p>
|
| 54 |
+
|
| 55 |
+
<div align="center" style="line-height: 1;">
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
[](https://huggingface.co/collections/tencent/hy-mt2)
|
| 59 |
+
|
| 60 |
+
[](https://modelscope.cn/collections/Tencent-Hunyuan/Hy-MT2)
|
| 61 |
+
|
| 62 |
+
</div>
|
| 63 |
+
|
| 64 |
+
<p align="center">
|
| 65 |
+
🖥️ <a href="https://aistudio.tencent.com/llm/en?tabIndex=0"><b>Official Website</b></a> |
|
| 66 |
+
💬 <a href="https://github.com/Tencent-Hunyuan/Hy-MT2"><b>GitHub</b></a> |
|
| 67 |
+
🪡 <a href="https://github.com/Tencent/AngelSlim/tree/main"><b>AngelSlim</b></a> |
|
| 68 |
+
📚 <a href="https://arxiv.org/pdf/2605.22064"><b>Hy-MT2 Report</b></a></p>
|
| 69 |
+
|
| 70 |
+
## Model Introduction
|
| 71 |
+
|
| 72 |
+
|
| 73 |
+
Hy-MT2 is a family of “fast-thinking” multilingual translation models designed for complex real-world scenarios. It includes three model sizes: 1.8B, 7B, and 30B-A3B (MoE), all of which support translation among 33 languages and effectively follow translation instructions in multiple languages.
|
| 74 |
+
For on-device deployment, AngelSlim 1.25-bit extreme quantization reduces the storage requirement of the 1.8B model to only 440 MB and improves inference speed by 1.5x.
|
| 75 |
+
Multi-dimensional evaluations show that Hy-MT2 delivers outstanding performance across general, real-world business, domain-specific, and instruction-following translation tasks. The 7B and 30B-A3B models outperform open-source models such as DeepSeek-V4-Pro and Kimi K2.6 in fast-thinking mode, while the lightweight 1.8B model also surpasses mainstream commercial APIs from providers such as Microsoft and Doubao overall.
|
| 76 |
+
|
| 77 |
+
In this release, we also open-source [IFMTBench](./IFMTBench/README.md), a benchmark for evaluating translation instruction-following capabilities.
|
| 78 |
+
|
| 79 |
+
We also welcome everyone to use our released Hy-MT2-Translator Skill, which makes it easy to integrate Hy-MT2 series models for translation tasks. Download links: [ClawHub](https://clawhub.ai/tencent-adm/hy-mt2-translator-skill) and [SkillHub](https://skillhub.cn/skills/hy-mt2-translator).
|
| 80 |
+
|
| 81 |
+
Now, Tencent Hy is officially partnering with WMT26 for the "Video Subtitle Translation Task" (https://www2.statmt.org/wmt26/video-subtitle-translation.html). Participants who use the Hy-MT model series to compete in the "General Machine Translation Task" (https://www2.statmt.org/wmt26/translation-task.html) and the "Video Subtitle Translation Task" will have the chance to win special awards sponsored by Hunyuan. We sincerely invite everyone to participate and jointly push the boundaries of machine translation technology!
|
| 82 |
+
|
| 83 |
+
## News
|
| 84 |
+
|
| 85 |
+
* 2026.5.21 We open-sourced **Hy-MT2-1.8B**/**Hy-MT2-7B**/**Hy-MT2-30B-A3B**/**IFMTBench** on HuggingFace and ModelScope.
|
| 86 |
+
* 2025.12.30 We open-sourced **HY-MT1.5-1.8B** and **HY-MT1.5-7B** on HuggingFace and ModelScope.
|
| 87 |
+
* 2025.9.1 We open-sourced **Hunyuan-MT-7B** and **Hunyuan-MT-Chimera-7B** on HuggingFace and ModelScope.
|
| 88 |
+
|
| 89 |
+
|
| 90 |
+
## Results
|
| 91 |
+
<div align='center'>
|
| 92 |
+
<img src="imgs/main_result.png" width = "100%" />
|
| 93 |
+
</div>
|
| 94 |
+
|
| 95 |
+
For more experimental results and analysis, please refer to our [report](https://arxiv.org/pdf/2605.22064).
|
| 96 |
+
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
## Model Links
|
| 100 |
+
| Model Name | Description | Download Link |
|
| 101 |
+
| ----------- | ----------- |-----------
|
| 102 |
+
| Hy-MT2-1.8B | Hy 1.8B translation model |🤗 [Model](https://huggingface.co/tencent/Hy-MT2-1.8B)|
|
| 103 |
+
| Hy-MT2-1.8B-FP8 | Hy 1.8B translation model, FP8 quantization | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-1.8B-FP8)|
|
| 104 |
+
| Hy-MT2-1.8B-GGUF | Hy 1.8B translation model, llama.cpp | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-1.8B-GGUF)|
|
| 105 |
+
| Hy-MT2-1.8B-2bit-GGUF | Hy 1.8B translation model, llama.cpp, 2bit | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-1.8B-2bit-GGUF)|
|
| 106 |
+
| Hy-MT2-1.8B-1.25bit-GGUF | Hy 1.8B translation model, llama.cpp, 1.25bit | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-1.8B-1.25bit-GGUF)|
|
| 107 |
+
| Hy-MT2-7B | Hy 7B translation model | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-7B)|
|
| 108 |
+
| Hy-MT2-7B-FP8 | Hy 7B translation model, FP8 quantization | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-7B-FP8)|
|
| 109 |
+
| Hy-MT2-7B-GGUF | Hy 7B translation model, llama.cpp | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-7B-GGUF)|
|
| 110 |
+
| Hy-MT2-30B-A3B | Hy 30B-A3B translation model | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-30B-A3B)|
|
| 111 |
+
| Hy-MT2-30B-A3B-FP8 | Hy 30B-A3B translation model, FP8 quantization | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-30B-A3B-FP8)|
|
| 112 |
+
|
| 113 |
+
|
| 114 |
+
|
| 115 |
+
## Hy-MT2 Translation Task Instruction Examples (Chinese-English Comparison)
|
| 116 |
+
|
| 117 |
+
*Note: In the following examples, both source_lang and target_lang should use the full language names. Chinese names should be used in Chinese prompts, and English names should be used in English prompts.*
|
| 118 |
+
|
| 119 |
+
| Type | Chinese prompt | English prompt |
|
| 120 |
+
|---|---|---|
|
| 121 |
+
| **Default Translation** | 将以下文本翻译为 `{target_lang}`,注意**只需要输出翻译后的结果,不要额外解释**:<br><br>`{source_text}` | Translate the following text into `{target_lang}`. Note that you should **only output the translated result without any additional explanation**:<br><br>`{source_text}` |
|
| 122 |
+
| **Terminology** | *参考下面的翻译:*<br>`{text}` 翻译成 `{text}`<br>`{text}` 翻译成 `{text}`<br>`{text}` 翻译成 `{text}`<br>将以下文本翻译为 `{target_lang}`,注意**只需要输出翻译后的结果,不要额外解释**:<br><br>`{source_text}` | *Reference the following translations:*<br>`{text}` translates to `{text}`<br>`{text}` translates to `{text}`<br>`{text}` translates to `{text}`<br><br>Translate the following text into `{target_lang}`. Note that you must **ONLY output the translated result without any additional explanation**:<br><br>`{source_text}` |
|
| 123 |
+
| **Style** | 请将以下文本翻译为 `{target_lang}`。<br>注意翻译的风格要严格符合【**`{target_style}`**】<br><br>`{source_text}` | Please translate the following text into `{target_lang}`. Note that the translation style must strictly conform to [**`{target_style}`**]:<br><br>`{source_text}` |
|
| 124 |
+
| **Personalization** | *【待翻译文本】*<br>`{source_text}`<br><br>*【翻译任务】*<br>1、**`{user_preferences}`**<br>2、**`{user_preferences}`**<br>3、……<br>4、将【待翻译文本】翻译为 `{target_lang}`。 | *[Source Text]*<br>`{source_text}`<br><br>*[Translation Tasks]*<br>1. **`{user_preferences}`**<br>2. **`{user_preferences}`**<br>3. ...<br>4. Translate the [Source Text] into `{target_lang}`. |
|
| 125 |
+
| **Delimiters** | 请将以下文本准确翻译为 `{target_lang}`。<br>你必须在译文中**保留等量的分隔符,绝对不可遗漏、转义或翻译该符号,并注意分隔符的位置**。<br><br>`{source_text}` | Please accurately translate the following text into `{target_lang}`.<br>You must **retain the exact same number of delimiters in the translation. Strictly do not omit, escape, or translate these symbols, and pay close attention to their placement**.<br><br>`{source_text}` |
|
| 126 |
+
| **Structured Data 1** | *# 任务目标*<br>将下方 `{source_text}` 中的 `{format_type}` 格式数据翻译为 `{target_lang}`。<br><br>*# 严格约束*<br>1. **结构锁定**:绝对保持原有的 `{format_type}` 数据结构、缩进和层级完全不变。<br>2. **选择性翻译**:仅翻译面向用户展示的可见文本内容。<br>3. **禁止修改**:**严禁**翻译或更改任何代码标签、键名 (Key)、变量占位符(如 `{{var}}`、`${var}`、`%s`、`%d` 等)或代码属性。<br><br>*# 数据输入*<br>`{source_text}` | *### Task*<br>Translate the user-facing text within the following `{format_type}` data into `{target_lang}`.<br><br>*### Strict Rules*<br>1. **Structure Preservation:** You MUST preserve the original `{format_type}` data structure, nesting, hierarchy, and indentation exactly as they are.<br>2. **Selective Translation:** Translate ONLY the visible, user-facing text content/values.<br>3. **Strict Non-Translation:** NEVER translate or alter code tags, keys, properties, object names, or variable placeholders. Leave them exactly in their original English/code form.<br><br>*### Source Data*<br>`{source_text}` |
|
| 127 |
+
| **Structured Data 2** | *【背景信息】*<br>`{background_text}`<br><br>请结合背景信息将以下文本翻译为 `{target_lang}`。<br><br>*【待翻译文本】*<br>`{source_text}` | *[Background Information]*<br>`{background_text}`<br><br>Please translate the following text into `{target_lang}`, taking the provided background information into consideration.<br><br>*[Source Text]*<br>`{source_text}` |
|
| 128 |
+
|
| 129 |
+
---
|
| 130 |
+
|
| 131 |
+
## Inference and Deployment
|
| 132 |
+
|
| 133 |
+
For 1.8B and 7B, we recommend using the following parameters for inference. Note that our models do not have a default system_prompt.
|
| 134 |
+
|
| 135 |
+
```json
|
| 136 |
+
|
| 137 |
+
{
|
| 138 |
+
"temperature": 0.7,
|
| 139 |
+
"top_p": 0.6,
|
| 140 |
+
"top_k": 20,
|
| 141 |
+
"repetition_penalty": 1.05,
|
| 142 |
+
"max_tokens": 4096
|
| 143 |
+
}
|
| 144 |
+
```
|
| 145 |
+
|
| 146 |
+
For 30B-A3B, we recommend using the following parameters for inference. Note that our models do not have a default system_prompt.
|
| 147 |
+
|
| 148 |
+
```json
|
| 149 |
+
|
| 150 |
+
{
|
| 151 |
+
"temperature": 0.7,
|
| 152 |
+
"top_p": 1.0,
|
| 153 |
+
"top_k": -1,
|
| 154 |
+
"repetition_penalty": 1.0,
|
| 155 |
+
"max_tokens": 4096
|
| 156 |
+
}
|
| 157 |
+
```
|
| 158 |
+
|
| 159 |
+
### transformers
|
| 160 |
+
|
| 161 |
+
transformers>=5.6.0
|
| 162 |
+
|
| 163 |
+
```python
|
| 164 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 165 |
+
import torch
|
| 166 |
+
|
| 167 |
+
model_path = "tencent/Hy-MT2-30B-A3B"
|
| 168 |
+
|
| 169 |
+
# Load tokenizer
|
| 170 |
+
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
|
| 171 |
+
|
| 172 |
+
# Load model
|
| 173 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 174 |
+
model_path,
|
| 175 |
+
dtype=torch.bfloat16,
|
| 176 |
+
device_map="auto",
|
| 177 |
+
trust_remote_code=True,
|
| 178 |
+
)
|
| 179 |
+
|
| 180 |
+
model.eval()
|
| 181 |
+
|
| 182 |
+
# Example inference
|
| 183 |
+
prompt = "将以下文本翻译成英语,注意只需要输出翻译后的结果,不要额外解释:\n\n今天天气真好。"
|
| 184 |
+
messages = [{"role": "user", "content": prompt}]
|
| 185 |
+
inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to(model.device)
|
| 186 |
+
|
| 187 |
+
with torch.no_grad():
|
| 188 |
+
outputs = model.generate(
|
| 189 |
+
**inputs,
|
| 190 |
+
max_new_tokens=4096,
|
| 191 |
+
)
|
| 192 |
+
response = tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True)
|
| 193 |
+
print(response)
|
| 194 |
+
```
|
| 195 |
+
|
| 196 |
+
### vllm
|
| 197 |
+
|
| 198 |
+
Build vLLM from source:
|
| 199 |
+
```bash
|
| 200 |
+
uv venv --python 3.12 --seed --managed-python
|
| 201 |
+
source .venv/bin/activate
|
| 202 |
+
git clone https://github.com/vllm-project/vllm.git
|
| 203 |
+
cd vllm
|
| 204 |
+
uv pip install --editable . --torch-backend=auto
|
| 205 |
+
```
|
| 206 |
+
|
| 207 |
+
Start the vLLM server:
|
| 208 |
+
|
| 209 |
+
```bash
|
| 210 |
+
vllm serve tencent/Hy-MT2-30B-A3B --tensor-parallel-size 1
|
| 211 |
+
```
|
| 212 |
+
|
| 213 |
+
### sglang
|
| 214 |
+
|
| 215 |
+
Build SGLang from source:
|
| 216 |
+
```bash
|
| 217 |
+
git clone https://github.com/sgl-project/sglang
|
| 218 |
+
cd sglang
|
| 219 |
+
pip3 install pip --upgrade
|
| 220 |
+
pip3 install "transformers>=5.6.0"
|
| 221 |
+
pip3 install -e "python"
|
| 222 |
+
```
|
| 223 |
+
|
| 224 |
+
Launch SGLang server:
|
| 225 |
+
|
| 226 |
+
```bash
|
| 227 |
+
python3 -m sglang.launch_server --model tencent/Hy-MT2-30B-A3B --tp 1
|
| 228 |
+
```
|
| 229 |
+
|
| 230 |
+
|
| 231 |
+
## Model Training
|
| 232 |
+
Hy-MT2 provides a complete model training pipeline, supporting both full-parameter fine-tuning and LoRA fine-tuning, as well as multiple DeepSpeed ZeRO configurations and LLaMA-Factory integration.
|
| 233 |
+
|
| 234 |
+
For detailed training documentation, please refer to: [Model Training Guide](./train/README.md)
|
| 235 |
+
|
| 236 |
+
## Quantization Tool
|
| 237 |
+
|
| 238 |
+
We provide [AngelSlim](https://github.com/tencent/AngelSlim), an easy-to-use, comprehensive, and efficient large model compression toolkit covering common quantization algorithms, low-bit quantization, speculative sampling, and more.
|
| 239 |
+
|
| 240 |
+
|
| 241 |
+
## Supported Languages
|
| 242 |
+
| Languages | Abbr. | Chinese Names |
|
| 243 |
+
|-------------------|---------|-----------------|
|
| 244 |
+
| Chinese | zh | 中文 |
|
| 245 |
+
| English | en | 英语 |
|
| 246 |
+
| French | fr | 法语 |
|
| 247 |
+
| Portuguese | pt | 葡萄牙语 |
|
| 248 |
+
| Spanish | es | 西班牙语 |
|
| 249 |
+
| Japanese | ja | 日语 |
|
| 250 |
+
| Turkish | tr | 土耳其语 |
|
| 251 |
+
| Russian | ru | 俄语 |
|
| 252 |
+
| Arabic | ar | 阿拉伯语 |
|
| 253 |
+
| Korean | ko | 韩语 |
|
| 254 |
+
| Thai | th | 泰语 |
|
| 255 |
+
| Italian | it | 意大利语 |
|
| 256 |
+
| German | de | 德语 |
|
| 257 |
+
| Vietnamese | vi | 越南语 |
|
| 258 |
+
| Malay | ms | 马来语 |
|
| 259 |
+
| Indonesian | id | 印尼语 |
|
| 260 |
+
| Filipino | tl | 菲律宾语 |
|
| 261 |
+
| Hindi | hi | 印地语 |
|
| 262 |
+
| Traditional Chinese | zh-Hant| 繁体中文 |
|
| 263 |
+
| Polish | pl | 波兰语 |
|
| 264 |
+
| Czech | cs | 捷克语 |
|
| 265 |
+
| Dutch | nl | 荷兰语 |
|
| 266 |
+
| Khmer | km | 高棉语 |
|
| 267 |
+
| Burmese | my | 缅甸语 |
|
| 268 |
+
| Persian | fa | 波斯语 |
|
| 269 |
+
| Gujarati | gu | 古吉拉特语 |
|
| 270 |
+
| Urdu | ur | 乌尔都语 |
|
| 271 |
+
| Telugu | te | 泰卢固语 |
|
| 272 |
+
| Marathi | mr | 马拉地语 |
|
| 273 |
+
| Hebrew | he | 希伯来语 |
|
| 274 |
+
| Bengali | bn | 孟加拉语 |
|
| 275 |
+
| Tamil | ta | 泰米尔语 |
|
| 276 |
+
| Ukrainian | uk | 乌克兰语 |
|
| 277 |
+
| Tibetan | bo | 藏语 |
|
| 278 |
+
| Kazakh | kk | 哈萨克语 |
|
| 279 |
+
| Mongolian | mn | 蒙古语 |
|
| 280 |
+
| Uyghur | ug | 维吾尔语 |
|
| 281 |
+
| Cantonese | yue | 粤语 |
|
| 282 |
+
|
| 283 |
+
|
| 284 |
+
|
| 285 |
+
## Citing Hy-MT2
|
| 286 |
+
|
| 287 |
+
```bibtex
|
| 288 |
+
@misc{zheng2026hymt2familyfastefficient,
|
| 289 |
+
title={Hy-MT2: A Family of Fast, Efficient and Powerful Multilingual Translation Models in the Wild},
|
| 290 |
+
author={Mao Zheng and Zheng Li and Tao Chen and Bo Lv and Mingrui Sun and Mingyang Song and Jinlong Song and Hong Huang and Decheng Wu and Hai Wang and Yifan Song and Yanfeng Chen and Guanwei Zhang},
|
| 291 |
+
year={2026},
|
| 292 |
+
eprint={2605.22064},
|
| 293 |
+
archivePrefix={arXiv},
|
| 294 |
+
primaryClass={cs.CL},
|
| 295 |
+
url={https://arxiv.org/abs/2605.22064},
|
| 296 |
+
}
|
| 297 |
+
```
|
| 298 |
+
|
| 299 |
+
## Contact Us
|
| 300 |
+
If you would like to leave feedback for our R&D and product teams, you are welcome to contact the Tencent Hunyuan LLM team. You can reach us by email at hunyuan_opensource@tencent.com.
|
README_CN.md
ADDED
|
@@ -0,0 +1,254 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<p align="left">
|
| 2 |
+
<a href="README.md">English</a> | 中文
|
| 3 |
+
</p>
|
| 4 |
+
<br>
|
| 5 |
+
|
| 6 |
+
<p align="center">
|
| 7 |
+
<img src="imgs/logo-zh.png" width="400"/> <br>
|
| 8 |
+
</p>
|
| 9 |
+
|
| 10 |
+
<div align="center" style="line-height: 1;">
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
[](https://huggingface.co/collections/tencent/hy-mt2)
|
| 14 |
+
|
| 15 |
+
[](https://modelscope.cn/collections/Tencent-Hunyuan/Hy-MT2)
|
| 16 |
+
|
| 17 |
+
</div>
|
| 18 |
+
|
| 19 |
+
<p align="center">
|
| 20 |
+
🖥️ <a href="https://aistudio.tencent.com/llm/zh?tabIndex=0"><b>官方网站</b></a> |
|
| 21 |
+
💬 <a href="https://github.com/Tencent-Hunyuan/Hy-MT2"><b>GitHub</b></a> |
|
| 22 |
+
🪡 <a href="https://github.com/Tencent/AngelSlim/tree/main"><b>AngelSlim</b></a> |
|
| 23 |
+
📚 <a href="https://arxiv.org/pdf/2605.22064"><b>Hy-MT2报告</b></a></p>
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
## 模型介绍
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
Hy-MT2 是一款面向真实复杂场景的“快思考”多语言翻译模型家族,涵盖 1.8B、7B 和 30B-A3B(MoE)三种体量,支持 33 种语言互译并具备强大的多语言指令遵循能力。在端侧部署上,得益于 AngelSlim 1.25-bit 极端量化,其 1.8B 模型仅需 440MB 存储空间,推理速度显著提升 1.5 倍。多维度评测表明,Hy-MT2 在通用、真实业务、专业领域及指令遵循等翻译任务中表现卓越:7B 和 30B-A3B 模型性能不仅超越了 DeepSeek-V4-Pro、Kimi K2.6 等开源模型在快思考模式下的表现,轻量级 1.8B 模型亦在整体上超越了微软和豆包等主流商业 API。
|
| 30 |
+
|
| 31 |
+
同时,本次我们也开源了一个针对翻译指令遵循能力的评测集[IFMTBench](./IFMTBench/README_zh.md)。
|
| 32 |
+
|
| 33 |
+
也欢迎大家使用我们发布的 Hy-MT2-Translator Skill,可以方便接入Hy-MT2系列模型完成翻译任务,下载链接[ClawHub](https://clawhub.ai/tencent-adm/hy-mt2-translator-skill)和[SkillHub](https://skillhub.cn/skills/hy-mt2-translator)。
|
| 34 |
+
|
| 35 |
+
现在,腾讯混元也在与WMT26官方合作「视频字幕翻译比赛」(https://www2.statmt.org/wmt26/video-subtitle-translation.html ),使用Hy-MT系列模型参与「通用机器翻译比赛」(https://www2.statmt.org/wmt26/translation-task.html )和「视频字幕翻译比赛」有机会获得混元特设奖励,诚邀邀大家参与,共同推动机器翻译前沿技术发展。
|
| 36 |
+
|
| 37 |
+
## 新闻
|
| 38 |
+
|
| 39 |
+
* 2026.5.21 我们在HuggingFace和ModelScope上开源了 **Hy-MT2-1.8B**/**Hy-MT2-7B**/**Hy-MT2-30B-A3B**/**IFMTBench**
|
| 40 |
+
* 2025.12.30 我们在HuggingFace和ModelScope开源了 **HY-MT1.5-1.8B**和**HY-MT1.5-7B**
|
| 41 |
+
* 2025.9.1 我们在HuggingFace和ModelScope开源了 **Hunyuan-MT-7B**和**Hunyuan-MT-Chimera-7B**。
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
## 效果
|
| 45 |
+
<div align='center'>
|
| 46 |
+
<img src="imgs/main_result.png" width = "100%" />
|
| 47 |
+
</div>
|
| 48 |
+
|
| 49 |
+
更多的实验效果和分析可以参考我们的[报告](https://arxiv.org/pdf/2605.22064)。
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
## 模型链接
|
| 54 |
+
| 模型名 | 简介 | 下载链接 |
|
| 55 |
+
| ----------- | ----------- |-----------
|
| 56 |
+
| Hy-MT2-1.8B | 混元1.8B翻译模型 |🤗 [Model](https://huggingface.co/tencent/Hy-MT2-1.8B)|
|
| 57 |
+
| Hy-MT2-1.8B-FP8 | 混元1.8B翻译模型,fp8量化 | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-1.8B-FP8)|
|
| 58 |
+
| Hy-MT2-1.8B-GGUF | 混元1.8B翻译模型, llama.cpp | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-1.8B-GGUF)|
|
| 59 |
+
| Hy-MT2-1.8B-2bit-GGUF | 混元1.8B翻译模型, llama.cpp, 2bit | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-1.8B-2bit-GGUF)|
|
| 60 |
+
| Hy-MT2-1.8B-1.25bit-GGUF | 混元1.8B翻译模型, llama.cpp, 1.25bit | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-1.8B-1.25bit-GGUF)|
|
| 61 |
+
| Hy-MT2-7B | 混元7B翻译模型 | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-7B)|
|
| 62 |
+
| Hy-MT2-7B-FP8 | 混元7B翻译模型,fp8量化 | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-7B-FP8)|
|
| 63 |
+
| Hy-MT2-7B-GGUF | 混元7B翻译模型, llama.cpp | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-7B-GGUF)|
|
| 64 |
+
| Hy-MT2-30B-A3B | 混元30B-A3B翻译模型 | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-30B-A3B)|
|
| 65 |
+
| Hy-MT2-30B-A3B-FP8 | 混元30B-A3B翻译模型,fp8量化 | 🤗 [Model](https://huggingface.co/tencent/Hy-MT2-30B-A3B-FP8)|
|
| 66 |
+
|
| 67 |
+
|
| 68 |
+
|
| 69 |
+
## Hy-MT2 翻译任务指令示例(中英文对照)
|
| 70 |
+
|
| 71 |
+
*注意:下面的source_lang和target_lang都使用语言的全称,中文使用中文全称,英文使用英文全称。*
|
| 72 |
+
|
| 73 |
+
| Type | Chinese prompt | English prompt |
|
| 74 |
+
|---|---|---|
|
| 75 |
+
| **Default Translation** | 将以下文本翻译为 `{target_lang}`,注意**只需要输出翻译后的结果,不要额外解释**:<br><br>`{source_text}` | Translate the following text into `{target_lang}`. Note that you should **only output the translated result without any additional explanation**:<br><br>`{source_text}` |
|
| 76 |
+
| **Terminology** | *参考下面的翻译:*<br>`{text}` 翻译成 `{text}`<br>`{text}` 翻译成 `{text}`<br>`{text}` 翻译成 `{text}`<br>将以下文本翻译为 `{target_lang}`,注意**只需要输出翻译后的结果,不要额外解释**:<br><br>`{source_text}` | *Reference the following translations:*<br>`{text}` translates to `{text}`<br>`{text}` translates to `{text}`<br>`{text}` translates to `{text}`<br><br>Translate the following text into `{target_lang}`. Note that you must **ONLY output the translated result without any additional explanation**:<br><br>`{source_text}` |
|
| 77 |
+
| **Style** | 请将以下文本翻译为 `{target_lang}`。<br>注意翻译的风格要严格符合【**`{target_style}`**】<br><br>`{source_text}` | Please translate the following text into `{target_lang}`. Note that the translation style must strictly conform to [**`{target_style}`**]:<br><br>`{source_text}` |
|
| 78 |
+
| **Personalization** | *【待翻译文本】*<br>`{source_text}`<br><br>*【翻译任务】*<br>1、**`{user_preferences}`**<br>2、**`{user_preferences}`**<br>3、……<br>4、将【待翻译文本】翻译为 `{target_lang}`。 | *[Source Text]*<br>`{source_text}`<br><br>*[Translation Tasks]*<br>1. **`{user_preferences}`**<br>2. **`{user_preferences}`**<br>3. ...<br>4. Translate the [Source Text] into `{target_lang}`. |
|
| 79 |
+
| **Delimiters** | 请将以下文本准确翻译为 `{target_lang}`。<br>你必须在译文中**保留等量的分隔符,绝对不可遗漏、转义或翻译该符号,并注意分隔符的位置**。<br><br>`{source_text}` | Please accurately translate the following text into `{target_lang}`.<br>You must **retain the exact same number of delimiters in the translation. Strictly do not omit, escape, or translate these symbols, and pay close attention to their placement**.<br><br>`{source_text}` |
|
| 80 |
+
| **Structured Data 1** | *# 任务目标*<br>将下方 `{source_text}` 中的 `{format_type}` 格式数据翻译为 `{target_lang}`。<br><br>*# 严格约束*<br>1. **结构锁定**:绝对保持原有的 `{format_type}` 数据结构、缩进和层级完全不变。<br>2. **选择性翻译**:仅翻译面向用户展示的可见文本内容。<br>3. **禁止修改**:**严禁**翻译或更改任何代码标签、键名 (Key)、变量占位符(如 `{{var}}`、`${var}`、`%s`、`%d` 等)或代码属性。<br><br>*# 数据输入*<br>`{source_text}` | *### Task*<br>Translate the user-facing text within the following `{format_type}` data into `{target_lang}`.<br><br>*### Strict Rules*<br>1. **Structure Preservation:** You MUST preserve the original `{format_type}` data structure, nesting, hierarchy, and indentation exactly as they are.<br>2. **Selective Translation:** Translate ONLY the visible, user-facing text content/values.<br>3. **Strict Non-Translation:** NEVER translate or alter code tags, keys, properties, object names, or variable placeholders. Leave them exactly in their original English/code form.<br><br>*### Source Data*<br>`{source_text}` |
|
| 81 |
+
| **Structured Data 2** | *【背景信息】*<br>`{background_text}`<br><br>请结合背景信息将以下文本翻译为 `{target_lang}`。<br><br>*【待翻译文本】*<br>`{source_text}` | *[Background Information]*<br>`{background_text}`<br><br>Please translate the following text into `{target_lang}`, taking the provided background information into consideration.<br><br>*[Source Text]*<br>`{source_text}` |
|
| 82 |
+
|
| 83 |
+
---
|
| 84 |
+
|
| 85 |
+
## 推理和部署
|
| 86 |
+
|
| 87 |
+
对于1.8B和7B,我们推荐使用下面这组参数进行推理。注意,我们的模型没有默认 system_prompt。
|
| 88 |
+
|
| 89 |
+
```json
|
| 90 |
+
|
| 91 |
+
{
|
| 92 |
+
"temperature": 0.7,
|
| 93 |
+
"top_p": 0.6,
|
| 94 |
+
"top_k": 20,
|
| 95 |
+
"repetition_penalty": 1.05,
|
| 96 |
+
"max_tokens": 4096
|
| 97 |
+
}
|
| 98 |
+
```
|
| 99 |
+
|
| 100 |
+
对于30B-A3B,我们推荐使用下面这组参数进行推理。注意,我们的模型没有默认 system_prompt。
|
| 101 |
+
|
| 102 |
+
```json
|
| 103 |
+
|
| 104 |
+
{
|
| 105 |
+
"temperature": 0.7,
|
| 106 |
+
"top_p": 1.0,
|
| 107 |
+
"top_k": -1,
|
| 108 |
+
"repetition_penalty": 1.0,
|
| 109 |
+
"max_tokens": 4096
|
| 110 |
+
}
|
| 111 |
+
```
|
| 112 |
+
|
| 113 |
+
### transformers
|
| 114 |
+
|
| 115 |
+
transformers>=5.6.0
|
| 116 |
+
|
| 117 |
+
```python
|
| 118 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 119 |
+
import torch
|
| 120 |
+
|
| 121 |
+
model_path = "tencent/Hy-MT2-30B-A3B"
|
| 122 |
+
|
| 123 |
+
# Load tokenizer
|
| 124 |
+
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
|
| 125 |
+
|
| 126 |
+
# Load model
|
| 127 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 128 |
+
model_path,
|
| 129 |
+
dtype=torch.bfloat16,
|
| 130 |
+
device_map="auto",
|
| 131 |
+
trust_remote_code=True,
|
| 132 |
+
)
|
| 133 |
+
|
| 134 |
+
model.eval()
|
| 135 |
+
|
| 136 |
+
# Example inference
|
| 137 |
+
prompt = "将以下文本翻译成英语,注意只需要输出翻译后的结果,不要额外解释:\n\n今天天气真好。"
|
| 138 |
+
messages = [{"role": "user", "content": prompt}]
|
| 139 |
+
inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to(model.device)
|
| 140 |
+
|
| 141 |
+
with torch.no_grad():
|
| 142 |
+
outputs = model.generate(
|
| 143 |
+
**inputs,
|
| 144 |
+
max_new_tokens=4096,
|
| 145 |
+
)
|
| 146 |
+
response = tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True)
|
| 147 |
+
print(response)
|
| 148 |
+
```
|
| 149 |
+
|
| 150 |
+
### vllm
|
| 151 |
+
|
| 152 |
+
Build vLLM from source:
|
| 153 |
+
```bash
|
| 154 |
+
uv venv --python 3.12 --seed --managed-python
|
| 155 |
+
source .venv/bin/activate
|
| 156 |
+
git clone https://github.com/vllm-project/vllm.git
|
| 157 |
+
cd vllm
|
| 158 |
+
uv pip install --editable . --torch-backend=auto
|
| 159 |
+
```
|
| 160 |
+
|
| 161 |
+
Start the vLLM server:
|
| 162 |
+
|
| 163 |
+
```bash
|
| 164 |
+
vllm serve tencent/Hy-MT2-30B-A3B --tensor-parallel-size 1
|
| 165 |
+
```
|
| 166 |
+
|
| 167 |
+
### sglang
|
| 168 |
+
|
| 169 |
+
Build SGLang from source:
|
| 170 |
+
```bash
|
| 171 |
+
git clone https://github.com/sgl-project/sglang
|
| 172 |
+
cd sglang
|
| 173 |
+
pip3 install pip --upgrade
|
| 174 |
+
pip3 install "transformers>=5.6.0"
|
| 175 |
+
pip3 install -e "python"
|
| 176 |
+
```
|
| 177 |
+
|
| 178 |
+
Launch SGLang server:
|
| 179 |
+
|
| 180 |
+
```bash
|
| 181 |
+
python3 -m sglang.launch_server --model tencent/Hy-MT2-30B-A3B --tp 1
|
| 182 |
+
```
|
| 183 |
+
|
| 184 |
+
|
| 185 |
+
## 模型训练
|
| 186 |
+
Hy-MT2提供了完整的模型训练流程,支持全量微调和 LoRA 微调,同时支持 DeepSpeed ZeRO 多种配置以及 LLaMA-Factory 集成。
|
| 187 |
+
|
| 188 |
+
详细的训练文档请参考:[模型训练指南](./train/README_CN.md)
|
| 189 |
+
|
| 190 |
+
## 量化工具
|
| 191 |
+
|
| 192 |
+
我们提供了 [AngelSlim](https://github.com/tencent/AngelSlim)——一套易用、全面、高效的大模型压缩工具包,涵盖常用量化算法、低比特量化和投机采样等能力。
|
| 193 |
+
|
| 194 |
+
|
| 195 |
+
## 支持的语种
|
| 196 |
+
| Languages | Abbr. | Chinese Names |
|
| 197 |
+
|-------------------|---------|-----------------|
|
| 198 |
+
| Chinese | zh | 中文 |
|
| 199 |
+
| English | en | 英语 |
|
| 200 |
+
| French | fr | 法语 |
|
| 201 |
+
| Portuguese | pt | 葡萄牙语 |
|
| 202 |
+
| Spanish | es | 西班牙语 |
|
| 203 |
+
| Japanese | ja | 日语 |
|
| 204 |
+
| Turkish | tr | 土耳其语 |
|
| 205 |
+
| Russian | ru | 俄语 |
|
| 206 |
+
| Arabic | ar | 阿拉伯语 |
|
| 207 |
+
| Korean | ko | 韩语 |
|
| 208 |
+
| Thai | th | 泰语 |
|
| 209 |
+
| Italian | it | 意大利语 |
|
| 210 |
+
| German | de | 德语 |
|
| 211 |
+
| Vietnamese | vi | 越南语 |
|
| 212 |
+
| Malay | ms | 马来语 |
|
| 213 |
+
| Indonesian | id | 印尼语 |
|
| 214 |
+
| Filipino | tl | 菲律宾语 |
|
| 215 |
+
| Hindi | hi | 印地语 |
|
| 216 |
+
| Traditional Chinese | zh-Hant| 繁体中文 |
|
| 217 |
+
| Polish | pl | 波兰语 |
|
| 218 |
+
| Czech | cs | 捷克语 |
|
| 219 |
+
| Dutch | nl | 荷兰语 |
|
| 220 |
+
| Khmer | km | 高棉语 |
|
| 221 |
+
| Burmese | my | 缅甸语 |
|
| 222 |
+
| Persian | fa | 波斯语 |
|
| 223 |
+
| Gujarati | gu | 古吉拉特语 |
|
| 224 |
+
| Urdu | ur | 乌尔都语 |
|
| 225 |
+
| Telugu | te | 泰卢固语 |
|
| 226 |
+
| Marathi | mr | 马拉地语 |
|
| 227 |
+
| Hebrew | he | 希伯来语 |
|
| 228 |
+
| Bengali | bn | 孟加拉语 |
|
| 229 |
+
| Tamil | ta | 泰米尔语 |
|
| 230 |
+
| Ukrainian | uk | 乌克兰语 |
|
| 231 |
+
| Tibetan | bo | 藏语 |
|
| 232 |
+
| Kazakh | kk | 哈萨克语 |
|
| 233 |
+
| Mongolian | mn | 蒙古语 |
|
| 234 |
+
| Uyghur | ug | 维吾尔语 |
|
| 235 |
+
| Cantonese | yue | 粤语 |
|
| 236 |
+
|
| 237 |
+
|
| 238 |
+
|
| 239 |
+
## Citing Hy-MT2
|
| 240 |
+
|
| 241 |
+
```bibtex
|
| 242 |
+
@misc{zheng2026hymt2familyfastefficient,
|
| 243 |
+
title={Hy-MT2: A Family of Fast, Efficient and Powerful Multilingual Translation Models in the Wild},
|
| 244 |
+
author={Mao Zheng and Zheng Li and Tao Chen and Bo Lv and Mingrui Sun and Mingyang Song and Jinlong Song and Hong Huang and Decheng Wu and Hai Wang and Yifan Song and Yanfeng Chen and Guanwei Zhang},
|
| 245 |
+
year={2026},
|
| 246 |
+
eprint={2605.22064},
|
| 247 |
+
archivePrefix={arXiv},
|
| 248 |
+
primaryClass={cs.CL},
|
| 249 |
+
url={https://arxiv.org/abs/2605.22064},
|
| 250 |
+
}
|
| 251 |
+
```
|
| 252 |
+
|
| 253 |
+
## 联系我们
|
| 254 |
+
如果你想给我们的研发和产品团队留言,欢迎联系我们腾讯混元LLM团队。你可以通过邮件(hunyuan_opensource@tencent.com)联系我们。
|