Downloads · 30 days
95
100% of all-time downloads
timfduffy/zero-GGUF
zero-GGUF is a text generation model from timfduffy. Use it when you need the model to write or continue text.
GGUF quantizations of movingcastles/zero.
Downloads · 30 days
95
100% of all-time downloads
All-time downloads
95
Public
Repo size
20.5 GB
Likes
0
Public
Click a slice to open those files.
.gguf20.5 GB · 100%
From the Hugging Face model README
GGUF quantizations of movingcastles/zero.
Zero is a character model: Qwen3-8B-Base fine-tuned to embody a single, limited, anti-servile character. See the original model card and the full training report for what it is and how it was made. All credit for the model goes to Moving Castles. This repo only repackages the weights for llama.cpp and compatible runtimes.
| File | Quant | Size | Notes |
|---|---|---|---|
| zero-Q8_0.gguf | Q8_0 | 8.71 GB | Near-lossless. Use this if it fits. |
| zero-Q6_K.gguf | Q6_K | 6.73 GB | Very close to Q8_0 in quality. |
| zero-Q4_K_M.gguf | Q4_K_M | 5.03 GB | Good default for 8 GB GPUs and CPU-only use. |
These come from the original model card and matter more than usual for this model.
user and assistant turns in ChatML. The character is in the weights, and a system prompt is out of distribution.<|im_end|> (151645) or <|endoftext|> (151643). The GGUF metadata sets <|im_end|> as EOS, and llama.cpp also treats <|endoftext|> as end-of-generation, so turns stop cleanly there. If you see run-on turns in another runtime, add 151643 as a stop token.llama.cpp:
llama-cli -hf timfduffy/zero-GGUF:Q4_K_M -c 16384 --temp 0.7 --top-p 1.0 --top-k 0 --min-p 0.0 --presence-penalty 1.5 -n 1024
Ollama:
ollama run hf.co/timfduffy/zero-GGUF:Q4_K_M
The files also load in LM Studio, KoboldCpp, and other llama.cpp-based apps. Set the sampling parameters above by hand in those.
convert_hf_to_gguf.py.llama-quantize (build b11007) from a bf16 GGUF, not requantized from Q8_0.5a09d31.