Views
No views yet
| File | Quant | Size | Notes |
|---|---|---|---|
unlimited-ocr-f16.gguf | F16 | 6.4 GB | Full precision, reference quality |
unlimited-ocr-q8_0.gguf | Q8_0 | 3.5 GB | High quality, 2x compression |
unlimited-ocr-q5_k.gguf | Q5_K | 2.4 GB | Best quantized quality (near-perfect pages) |
unlimited-ocr-q4_k.gguf | Q4_K | 2.2 GB | Recommended — reads full pages, matches the HF model |
unlimited-ocr-q3_k.gguf | Q3_K | 2.0 GB | Smaller; very good (slightly more char errors) |
v.* + CLIP c.*), the MoE
router (*.mlp_gate.weight), the projector, the token embeddings, and the
lm_head at Q8_0 minimum. Keeping the lm_head at Q8_0 is essential: at Q4_K
the output projection flips a borderline greedy pick early in generation, which
snowballs into a hallucination — the full-page OCR fails. With it protected, the
q4_k file reads full document pages identically to the unquantized HF model.1# Auto-download and run
2crispembed --ocr-pipeline image.png --ocr-engine unlimited_ocr -m unlimited-ocr
3
4# Or with explicit path
5crispembed --ocr-pipeline image.png --ocr-engine unlimited_ocr \
6 --ocr-rec /path/to/unlimited-ocr-q4_k.gguf \
7 -m /path/to/unlimited-ocr-q4_k.ggufbaidu.mit. This repository redistributes under the same terms; it grants no rights the upstream licence does not.