Views
No views yet
| File | Size | Description | Use Case |
|---|---|---|---|
qwen3-4b-instruct-2507-heretic-f16.gguf | 7.5GB | Full 16-bit precision | Best quality, highest memory usage |
qwen3-4b-instruct-2507-heretic-Q8_0.gguf | 4.0GB | 8-bit quantization | High quality, good balance |
qwen3-4b-instruct-2507-heretic-Q5_K_M.gguf | 2.7GB | 5-bit quantization | Balanced quality/size |
qwen3-4b-instruct-2507-heretic-Q4_K_M.gguf | 2.4GB | 4-bit quantization | Smallest size, good quality |
Q4_K_M for most users (best balance of quality and size)FROM ./qwen3-4b-instruct-2507-heretic-Q4_K_M.gguf
TEMPLATE """{{ if .System }}<|im_start|>system<|im_sep|>{{ .System }}<|im_end|>{{ end }}{{ if .Prompt }}<|im_start|>user<|im_sep|>{{ .Prompt }}<|im_end|>{{ end }}<|im_start|>assistant<|im_sep|>{{ .Response }}<|im_end|>"""
PARAMETER stop "<|im_start|>"
PARAMETER stop "<|im_end|>"
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER num_ctx 8192ollama create qwen3-4b-heretic:Q4_K_M -f Modelfileollama run qwen3-4b-heretic:Q4_K_M./llama-cli -m qwen3-4b-instruct-2507-heretic-Q4_K_M.gguf -p "Your prompt here" -n 512