腾讯混元发布了Hy3模型的GGUF量化版本,支持llama.cpp直接运行和MTP自推测解码,方便开发者部署
多源视角
Test Hy3 in GO. 💗<hr style="border:0;border-top:1px solid #80808030;margin:12px 0;"><div class="rsshub-quote">OpenCode: Hy3 now available in Go<br><br>text · 256K context<br><br>l…
查看这条来源Agent & Coding 🔥🔥🔥<hr style="border:0;border-top:1px solid #80808030;margin:12px 0;"><div class="rsshub-quote">Arena.ai: Hy3 by Tencent is #5 in Agent Arena for open-weight …
查看这条来源Can't Find Benchmark and download link ? See here 👇https://huggingface.co/AngelSlim/Hy3-GGUF<hr style="border:0;border-top:1px solid #80808030;margin:12px 0;"><div class="rsshub-q…
查看这条来源AI 摘要
腾讯混元发布了Hy3模型的GGUF量化版本,支持llama.cpp直接运行和MTP自推测解码,方便开发者部署。
推荐理由常规快讯,保留列表
原文
Dedicated to building a more intuitive, comprehensive, and efficient LLMs compression toolkit.
📖 Documentation | 🤗 Hugging Face | 🤖 ModelScope | 💬 WeChat
Hy3 llama.cpp Quantization
Low-bit quantized Hy3 (hy_v3) GGUFs for llama.cpp — ready to run out of the box, with MTP self-speculative decoding. This repo ships the quantized models, plus the mixed-precision recipes to build your own from a calibration set.
Two parts below: Deploy (build & run) and Quantization.
Quick Start
Build
Clone the latest llama.cpp (must include the hy_v3 support merged in PR #25395 — i.e. any commit after 505b1ed; the current master is fine) and build it following the official build guide:
git clone https://github.com/ggml-org/llama.cpp llama.cpp-hyv3
# build per docs/build.md (CUDA / Metal / CPU as appropriate for your machine)Binaries land in llama.cpp-hyv3/build/bin/.
Already downloaded an older GGUF? Earlier GGUFs here were built against a patched llama.cpp and won't load correctly on today's upstream. To build and run those, follow the previous README (the setup_hyv3_llama.sh + patches flow) instead.Run
# plain serve (no speculative decoding)
./llama.cpp-hyv3/build/bin/llama-server -m /path/to/Hy3.gguf -ctk q8_0 -ctv q8_0 -fa on -c 65536
# serve + MTP self-speculative decoding (needs an MTP gguf, i.e. converted WITHOUT --no-mtp)
./llama.cpp-hyv3/build/bin/llama-server -m /path/to/Hy3-mtp.gguf --spec-type draft-mtp --spec-draft-n-max 3 --spec-draft-n-min 1 -ctk q8_0 -ctv q8_0 -ctkd q8_0 -ctvd q8_0 -fa on -c 65536
讨论
暂无评论。