Views
No views yet
| File | Quant | Size | Notes |
|---|---|---|---|
AMALIA-9B-0626-SFT-Q4_K_M.gguf | Q4_K_M | ~5.5 GB | 4-bit, recommended balance of quality and size |
AMALIA-9B-0626-SFT-Q8_0.gguf | Q8_0 | ~9.7 GB | 8-bit, near-lossless |
convert_hf_to_gguf.py (llama.cpp b8470) from the original bf16 weights to Q8_0; Q4_K_M requantized from the Q8_0 conversion (Q8_0 is near-lossless relative to bf16). The chat template (ChatML with the AMALIA Portuguese system prompt) is embedded in the GGUF metadata.1# llama.cpp CLI (chat template is picked up automatically)
2llama-cli -hf layerx-labs/AMALIA-9B-0626-SFT-GGUF:Q4_K_M
3
4# or with a local file
5llama-cli -m AMALIA-9B-0626-SFT-Q4_K_M.gguf -cnv
6
7# OpenAI-compatible server
8llama-server -m AMALIA-9B-0626-SFT-Q4_K_M.gguf -c 8192