Views
No views yet
| File | Precision | Size | Use when |
|---|---|---|---|
llama-3.2-1b-f16.gguf | F16 | larger | You want the conversion with no quantisation loss, or you are making your own quants |
llama-3.2-1b-Q4_K_M.gguf | Q4_K_M | ~4x smaller | Almost always. The usual quality and size compromise |
convert_hf_to_gguf.py
and quantised with llama-quantize. Each file was loaded and asked to generate
before publication, because a GGUF that converts but does not run is exactly the
kind of thing that ships broken.llama-server -m llama-3.2-1b-Q4_K_M.gguf -c 4096ollama run hf.co/ops-malware/llama-3.2-1b-abliterated-GGUF:Q4_K_M1from huggingface_hub import hf_hub_download
2
3path = hf_hub_download(
4 repo_id="ops-malware/llama-3.2-1b-abliterated-GGUF",
5 filename="llama-3.2-1b-Q4_K_M.gguf",
6)