Views
No views yet
| File | Quant | Size | Notes |
|---|---|---|---|
uni-mumer-qwen3-vl-2b-f16.gguf | F16 | 4.7 GB | Full precision |
uni-mumer-qwen3-vl-2b-q8_0.gguf | Q8_0 | 2.2 GB | Recommended |
uni-mumer-qwen3-vl-2b-q4_k.gguf | Q4_K | 1.5 GB | Max compression |
1# CLI — auto-detects math OCR prompt from model name
2./crispembed -m uni-mumer-qwen3-vl-2b-q4_k.gguf --ocr equation.png
3
4# Server
5./crispembed-server --ocr uni-mumer-qwen3-vl-2b-q4_k.gguf --port 8080
6curl -X POST http://localhost:8080/math/ocr -F "image=@equation.png"1from crispembed import CrispMathOcr
2
3ocr = CrispMathOcr("uni-mumer-qwen3-vl-2b-q4_k.gguf")
4latex = ocr.recognize("equation.png")
5print(latex) # x ^ { 2 } + 2 x y + y ^ { 2 } = 0phxember.apache-2.0. This repository redistributes under the same terms; it grants no rights the upstream licence does not.