--- base_model: - theprint/TiTan-Qwen2.5-0.5B library_name: gguf pipeline_tag: text-generation language: en license: apache-2.0 tags: - gguf - quantized - llama.cpp - titan-qwen2.5-0.5b model_type: llama quantized_by: theprint datasets: - theprint/titles-n-tags-alpaca --- # TiTan-Qwen2.5-0.5B - GGUF Quantized Quantized GGUF versions of [TiTan-Qwen2.5-0.5B](https://huggingface.co/theprint/TiTan-Qwen2.5-0.5B) for use with llama.cpp and other GGUF-compatible inference engines. ## Original Model - **Base model:** [Qwen/Qwen2.5-0.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-0.5B-Instruct) - **Fine-tuned model:** [theprint/TiTan-Qwen2.5-0.5B](https://huggingface.co/theprint/TiTan-Qwen2.5-0.5B) - **Quantized by:** theprint ## Available Quantizations - `TiTan-Qwen2.5-0.5B-f16.gguf` (948.1 MB) - 16-bit float (original precision, largest file) - `TiTan-Qwen2.5-0.5B-q3_k_m.gguf` (339.0 MB) - 3-bit quantization (medium quality) - `TiTan-Qwen2.5-0.5B-q4_k_m.gguf` (379.4 MB) - 4-bit quantization (medium, recommended for most use cases) - `TiTan-Qwen2.5-0.5B-q5_k_m.gguf` (400.6 MB) - 5-bit quantization (medium, good quality) - `TiTan-Qwen2.5-0.5B-q6_k.gguf` (482.3 MB) - 6-bit quantization (high quality) - `TiTan-Qwen2.5-0.5B-q8_0.gguf` (506.5 MB) - 8-bit quantization (very high quality) ## Usage ### With llama.cpp ```bash # Download recommended quantization wget https://huggingface.co/theprint/TiTan-Qwen2.5-0.5B-GGUF/resolve/main/TiTan-Qwen2.5-0.5B-q4_k_m.gguf # Run inference ./llama.cpp/main -m TiTan-Qwen2.5-0.5B-q4_k_m.gguf \ -p "Your prompt here" \ -n 256 \ --temp 0.7 \ --top-p 0.9 ``` ### With other GGUF tools These files are compatible with: - [llama.cpp](https://github.com/ggerganov/llama.cpp) - [Ollama](https://ollama.ai/) (import as custom model) - [KoboldCpp](https://github.com/LostRuins/koboldcpp) - [text-generation-webui](https://github.com/oobabooga/text-generation-webui) ## Quantization Info **Recommended:** `q4_k_m` provides the best balance of size, speed, and quality for most use cases. **For maximum quality:** Use `q8_0` or `f16` **For maximum speed/smallest size:** Use `q3_k_m` or `q4_k_s` ## License apache-2.0 ## Citation ```bibtex @misc{titan_qwen2.5_0.5b_gguf, title={TiTan-Qwen2.5-0.5B GGUF Quantized Models}, author={theprint}, year={2025}, publisher={Hugging Face}, url={https://huggingface.co/theprint/TiTan-Qwen2.5-0.5B-GGUF} } ```