Views
No views yet
micymike/CodeMate-Qwen-1.5B-32K-Distilled-on-Claude-Fable-5| File | Size | Description |
|---|---|---|
| Q4_K_M | ~986 MB | Best balance between quality and size |
| Q5_K_M | ~1.13 GB | Better quality while remaining compact |
| Q6_K | ~1.27 GB | High quality |
| Q8_0 | ~1.65 GB | Highest quality quantization |
1./llama-cli \
2-m codemate-qwen-Q4_K_M.gguf \
3-c 32768 \
4-p "Explain Python decorators with an example."Modelfile:1FROM ./codemate-qwen-Q8_0.gguf
2
3PARAMETER num_ctx 32768
4PARAMETER stop "<|im_end|>"
5
6TEMPLATE \"\"\"
7<|im_start|>system
8{{ .System }}<|im_end|>
9<|im_start|>user
10{{ .Input }}<|im_end|>
11<|im_start|>assistant
12\"\"\"1ollama create codemate -f Modelfile
2ollama run codemate