Views
No views yet
ollama run hf.co/richardyoung/Qwen2.5-7B-Instruct-abliterated-GGUF1# Download the Q4_K_M quantization (recommended balance of quality/speed)
2huggingface-cli download richardyoung/Qwen2.5-7B-Instruct-abliterated-GGUF \
3 --include "*Q4_K_M*" --local-dir ./models
4
5# Run inference
6./llama-cli -m ./models/*Q4_K_M*.gguf \
7 -p "You are a helpful assistant." \
8 --chat-template chatml -ngl 99richardyoung/Qwen2.5-7B-Instruct-abliterated-GGUF in the model browser, or download manually and import.| Quantization | Use Case |
|---|---|
| Q2_K | Minimum RAM, lower quality |
| Q4_K_M | Recommended — good balance of quality and speed |
| Q5_K_M | Higher quality, more RAM |
| Q6_K | Near-original quality |
| Q8_0 | Maximum quality, most RAM |