How to use from
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 tarruda/Hy3-GGUF:Q8_0
# Run inference directly in the terminal:
llama cli -hf tarruda/Hy3-GGUF:Q8_0
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf tarruda/Hy3-GGUF:Q8_0
# Run inference directly in the terminal:
llama cli -hf tarruda/Hy3-GGUF:Q8_0
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 tarruda/Hy3-GGUF:Q8_0
# Run inference directly in the terminal:
./llama-cli -hf tarruda/Hy3-GGUF:Q8_0
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 tarruda/Hy3-GGUF:Q8_0
# Run inference directly in the terminal:
./build/bin/llama-cli -hf tarruda/Hy3-GGUF:Q8_0
Use Docker
docker model run hf.co/tarruda/Hy3-GGUF:Q8_0
Quick Links

Hy3 GGUF

My custom IQ3_XXS GGUF quantization of tencent/Hy3.

Quantization recipe

Recipe Quant size BPW Default type Tensor-specific overrides
IQ3_XXS 111550.48 MiB 3.17 Q6_K ffn_down_exps=iq3_xxs, ffn_gate_exps=iq3_xxs, ffn_up_exps=iq3_xxs

Usage

#!/bin/sh -e

model=./IQ3_XXS/Hy3-IQ3_XXS-00001-of-00004.gguf

ctx=80000
parallel=1

ctx_size=$((ctx * parallel))

llama-server --no-mmap --no-warmup \
  --model "$model" --ctx-size "$ctx_size" -np "$parallel" \
  -ctk q8_0 -ctv q8_0 \
  --temp 0.9 --top-p 1.0 \
  --chat-template-kwargs '{"reasoning_effort":"high"}' \
  --cache-ram 0 -ctxcp 2 \
  --host 0.0.0.0
Downloads last month
205
GGUF
Model size
295B params
Architecture
hy_v3
Hardware compatibility
Log In to add your hardware

3-bit

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for tarruda/Hy3-GGUF

Base model

tencent/Hy3
Quantized
(60)
this model