--- license: apache-2.0 license_link: https://huggingface.co/tencent/Hy3/blob/main/LICENSE base_model: - tencent/Hy3 base_model_relation: quantized quantized_by: AtomicChat pipeline_tag: text-generation library_name: gguf tags: - atomic-chat - hunyuan - tencent - hy3 - moe - gguf - imatrix - quantized - llama.cpp ---
Scores are Tencent's published results for the base `tencent/Hy3`. Quantization preserves the large majority of this; `Q4_K_M` and up sit within a point or two of full precision.
## Choosing a quant
| Quant | Size | Notes |
|---|---|---|
| **`IQ1_M`** | 91.8 GB | **Smallest. 1-bit imatrix build that makes the 295B model run locally (≈92GB, e.g. a 4-GPU box). Expect quality tradeoffs; reasoning still works.** |
| **`Q4_K_M`** | 184.7 GB | **Recommended for quality. Near-reference; needs roughly 185GB of combined VRAM and RAM.** |
## Get started
Run Hy3 locally with:
- **[Atomic Chat](https://atomic.chat):** the easiest path. Open the app, search `AtomicChat/Hy3-GGUF`, pick a quant, hit **Use this model**.
- **llama.cpp:** `llama-server -hf AtomicChat/Hy3-GGUF:Q4_K_M --jinja -c 8192`
- **Ollama:** `ollama run hf.co/AtomicChat/Hy3-GGUF:Q4_K_M`
- **LM Studio / Jan:** search the repo id, download any quant.
## Best practices
| Parameter | Value |
|---|---|
| temperature | 0.9 |
| top_p | 1.0 |
**Reasoning is recommended for Hy3.** Pass `reasoning_effort` (`high` for full chain-of-thought, `low`, or `no_think` for direct answers). On hard tasks, running without reasoning can produce truncated or malformed output.
## Run in llama.cpp
```bash
git clone https://github.com/ggerganov/llama.cpp
cmake llama.cpp -B llama.cpp/build -DBUILD_SHARED_LIBS=OFF -DGGML_CUDA=ON
cmake --build llama.cpp/build --config Release -j --target llama-cli llama-server
```
```bash
./llama.cpp/build/bin/llama-server \
-hf AtomicChat/Hy3-GGUF:IQ1_M \
--jinja -ngl 99 -c 8192 -fa on
```
## How these were made
1. Download `tencent/Hy3` (original weights).
2. Convert to GGUF with a [llama.cpp](https://github.com/ggerganov/llama.cpp) build that supports the Hy3 (`hy_v3`) architecture and its MTP layer.
3. Build an importance matrix over `calibration_datav3`.
4. Quantize with `--imatrix`: `Q4_K_M` for quality and `IQ1_M` for the smallest footprint that keeps this 295B model coherent.
## License
Released by Tencent under the Apache 2.0 license. Quantized by Atomic Chat.