Views
No views yet
| File | Size | Purpose |
|---|---|---|
catareeya-4-12B-it-qat-UD-Q4_K_XL.gguf | 6.3 GB | Main model — QAT Q4_0 weights, F32 norms |
mmproj-F16.gguf | 167 MB | Vision projector (required for image input) |
mtp-gemma-4-12B-it-Q4_0.gguf | 242 MB | MTP drafter for speculative decoding |
1llama-server \
2 --model catareeya-4-12B-it-qat-UD-Q4_K_XL.gguf \
3 --host 0.0.0.0 --port 8080 \
4 --mmproj mmproj-F16.gguf \
5 --model-draft mtp-gemma-4-12B-it-Q4_0.gguf \
6 --temp 1.0 \
7 --top-p 0.95 \
8 --top-k 64 \
9 --spec-type draft-mtp \
10 --alias catareeya \
11 -ctk q8_0 \
12 -ctv q8_0 \
13 -fa on -cb \
14 -np 4--mmproj — loads the vision encoder; omit it for text-only use.--model-draft + --spec-type draft-mtp — enables Gemma 4 Multi-Token Prediction speculative decoding for significantly faster generation.-ctk q8_0 -ctv q8_0 — quantizes the KV cache to Q8_0 to halve context memory.-fa on — Flash Attention.-cb — continuous batching.-np 4 — 4 parallel inference slots.llama-server -hf tokenine/catareeya-4-12b-qat| Parameter | Value |
|---|---|
| Temperature | 1.0 |
| Top-p | 0.95 |
| Top-k | 64 |