Views
No views yet

llama.cpp — from F16 down to the smallest 2-bit Q2_K — is provided here, converted directly from the published FP32 base weights. Each text quant ships together with its matching mmproj file, so vision and audio input work out of the box with every download.For fine-tuning, research, or maximum numerical fidelity, use the base FP32 repository instead: Quatfit/Quatfit-Mini.
| File | Bits/Weight | Approx. Size | Quality | Notes |
|---|---|---|---|---|
Quatfit-Mini-F32.gguf | 32 | ~32.1 GB | Reference | Unquantized, identical to source weights |
Quatfit-Mini-F16.gguf | 16 | ~16.1 GB | Reference | Half precision, negligible loss vs FP32 |
Quatfit-Mini-Q8_0.gguf | 8.5 | ~8.5 GB | Excellent | Near-lossless, largest practical quant |
Quatfit-Mini-Q6_K.gguf | 6.6 | ~6.6 GB | Excellent | Very close to F16 quality |
Quatfit-Mini-Q5_K_M.gguf | 5.7 | ~5.7 GB | Very Good | Recommended high-quality default |
Quatfit-Mini-Q5_K_S.gguf | 5.5 | ~5.6 GB | Very Good | Slightly smaller than Q5_K_M |
Quatfit-Mini-Q5_1.gguf | 6.0 | ~6.1 GB | Good | Legacy format |
Quatfit-Mini-Q5_0.gguf | 5.5 | ~5.6 GB | Good | Legacy format |
Quatfit-Mini-Q4_K_M.gguf | 4.8 | ~4.9 GB | Good | Most popular general-purpose quant |
Quatfit-Mini-Q4_K_S.gguf | 4.6 | ~4.7 GB | Good | Smaller, slightly lower quality than Q4_K_M |
Quatfit-Mini-Q4_1.gguf | 5.0 | ~5.1 GB | Good | Legacy format |
Quatfit-Mini-Q4_0.gguf | 4.5 | ~4.7 GB | Good | Legacy format, wide compatibility |
Quatfit-Mini-Q3_K_L.gguf | 4.3 | ~4.3 GB | Moderate | Largest 3-bit K-quant |
Quatfit-Mini-Q3_K_M.gguf | 3.9 | ~4.0 GB | Moderate | Balanced 3-bit option |
Quatfit-Mini-Q3_K_S.gguf | 3.5 | ~3.7 GB | Lower | Smallest 3-bit K-quant |
Quatfit-Mini-Q2_K.gguf | 2.6 | ~3.2 GB | Low | Smallest legacy/K-quant, noticeable degradation |
Q6_K or Q8_0 for near-reference quality.Q4_K_M is the standard recommendation — the best balance of size, speed, and quality.Q4_K_S or Q4_0.Q3_K_M or Q2_K, with an expected drop in reasoning/coding accuracy.F16 or F32.Q_K_M variants) for general use — they offer the best quality-per-byte among the legacy and K-quant families. The plain legacy formats (Q4_0, Q4_1, Q5_0, Q5_1) remain useful mainly for compatibility with older runtimes.1./llama-cli \
2 -hf Quatfit/Quatfit-Mini-GGUF:Q4_K_M \
3 -p "Explain the difference between GQA and MHA." \
4 -n 5121./llama-server \
2 -hf Quatfit/Quatfit-Mini-GGUF:Q4_K_M \
3 --host 0.0.0.0 \
4 --port 8080 \
5 -c 1310721huggingface-cli download Quatfit/Quatfit-Mini-GGUF \
2 Quatfit-Mini-Q4_K_M.gguf \
3 --local-dir .
4
5./llama-cli -m Quatfit-Mini-Q4_K_M.gguf -p "Hello!" -n 256ollama run hf.co/Quatfit/Quatfit-Mini-GGUF:Q4_K_MQuatfit/Quatfit-Mini-GGUF directly in-app and select your preferred quant from the list above.<|turn>user
Your message here<turn|>
<|turn>model<|think|>. The model will emit its reasoning inside <|channel>thought ... <channel|> before the final response..gguf file.mmproj.gguf), which are provided alongside the text-only quants for runtimes that support llama.cpp multimodal (llama-mtmd-cli, compatible server builds). Consult your runtime's documentation for multimodal GGUF support before relying on image/audio input outside of the base FP32 Transformers checkpoint.| Quatfit Mini (base) | Quatfit Mini GGUF (this repo) | |
|---|---|---|
| Format | safetensors, FP32 | .gguf, quantized (F32 down to Q2_K) |
| Best for | Fine-tuning, research, max fidelity | Local inference, consumer hardware |
| Runtime | 🤗 Transformers | llama.cpp and compatible runtimes |
| Size | ~32 GB | ~2 GB – ~32 GB depending on quant |
Q2_K and Q3_K_S). For production deployments:Q4_K_M or higher for anything beyond casual/experimental use1@article{quatfitmini2026,
2 title={Quatfit Mini: A Gemma 4-Based Multimodal Model Optimized for Efficient Inference},
3 author={Quatfit AI Research},
4 year={2026}
5}