Views
No views yet
tencent/Hy-MT2-30B-A3B translation model for llama.cpp-compatible inference.| File | Type / Quantization | Size | Notes |
|---|---|---|---|
Hy-MT2-30B-A3B-BF16.gguf | BF16 / FP16-class source GGUF | ~56 GB | Highest fidelity source GGUF; useful for re-quantization or maximum-quality inference |
Hy-MT2-30B-A3B-Q2_K.gguf | Q2_K | ~11 GB | Smallest/lowest-memory option; lowest quality |
Hy-MT2-30B-A3B-Q3_K_M.gguf | Q3_K_M | ~14 GB | Very low-memory option, better than Q2_K |
Hy-MT2-30B-A3B-Q4_K_M.gguf | Q4_K_M | ~17 GB | Recommended balanced/low-memory option |
Hy-MT2-30B-A3B-Q5_K_M.gguf | Q5_K_M | ~20 GB | Better quality than Q4_K_M with moderate extra memory |
Hy-MT2-30B-A3B-Q6_K.gguf | Q6_K | ~24 GB | Better quality, higher VRAM/RAM usage |
Hy-MT2-30B-A3B-Q8_0.gguf | Q8_0 | ~30 GB | Highest fidelity among the quantized files |
hy_v3 architecture, conversion and quantization require llama.cpp tooling that supports hy_v3. A generic llama.cpp quantizer may fail with unknown model architecture: 'hy_v3'.hy_v3 architecture. It requires a llama.cpp build that supports this architecture. If your llama.cpp build does not support it, loading the GGUF may fail with:unknown model architecture: 'hy_v3'1./llama-server \
2 -m Hy-MT2-30B-A3B-Q4_K_M.gguf \
3 --alias tencent/Hy-MT2-30B-A3B-GGUF:Q4_K_M \
4 --host 0.0.0.0 \
5 --port 18080 \
6 -c 131072 \
7 --n-gpu-layers 60 \
8 --jinja \
9 -r '<eos:6124c78e>'--jinja is recommended so llama.cpp uses the chat template correctly.-r '<eos:6124c78e>' is recommended as a reverse prompt / stop marker because this model may emit the textual EOS marker if the runtime does not treat it as a native EOS token.--n-gpu-layers according to your GPU memory.1curl http://127.0.0.1:18080/v1/chat/completions \
2 -H 'Content-Type: application/json' \
3 -d '{
4 "messages": [
5 {"role": "user", "content": "Translate to English: 今天天气很好。"}
6 ],
7 "temperature": 0,
8 "max_tokens": 128
9 }'The weather is very nice today.LICENSE.txt is included when available.