Views
No views yet
llama.cpp, text-generation-webui, LM Studio, Ollama, and other compatible backend frameworks.| Filename | Quant Type | File Size | Description |
|---|---|---|---|
| BitCPM4-CANN-8B-Q8_0.gguf | 8-bit | 8.70 GB | Extremely high fidelity. Practically identical to the unquantized base model. Recommended if you have 12GB+ of VRAM/RAM. |
| BitCPM4-CANN-8B-Q6_K.gguf | 6-bit | 6.72 GB | Exceptional performance with near-zero degradation. Highly stable for complex instructions. |
| BitCPM4-CANN-8B-Q5_K_M.gguf | 5-bit | 5.81 GB | Highly recommended balance of file size, text generation speed, and response accuracy. |
| BitCPM4-CANN-8B-Q5_K_S.gguf | 5-bit | 5.67 GB | A slightly lighter version of the 5-bit intermediate format, maximizing speed over minor edge-case logic. |
| BitCPM4-CANN-8B-Q4_K_M.gguf | 4-bit | 4.97 GB | Recommended. The absolute sweet spot for 8B models. Keeps the model under 5GB while preserving most of its native intelligence. |
| BitCPM4-CANN-8B-Q4_K_S.gguf | 4-bit | 4.72 GB | Optimized heavily for speed and low memory impact, perfect for constrained environments. |
| BitCPM4-CANN-8B-Q3_K_M.gguf | 3-bit | 4.02 GB | Maximum compression. Fits easily into lower-tier hardware, though some fallback in complex logic may occur. |
llama.cpp (Command Line)llama.cpp, you can run the model directly from your terminal. Replace the filename with the specific version you downloaded:1./llama-cli \
2 -m BitCPM4-CANN-8B-Q4_K_M.gguf \
3 -p "Explain the concept of artificial intelligence to a five-year-old." \
4 -n 256 \
5 -c 2048 \
6 --temp 0.7