Views
No views yet
| File | Quant | Size | Notes |
|---|---|---|---|
smoldocling-f16.gguf | F16 | 491 MB | Full precision |
smoldocling-q8_0.gguf | Q8_0 | 261 MB | Recommended |
smoldocling-q4_k.gguf | Q4_K | 153 MB | Max compression |
1# CLI
2./crispembed -m smoldocling-q8_0.gguf --ocr document.png
3
4# Server
5./crispembed-server --ocr smoldocling-q8_0.gguf --port 8080
6curl -X POST http://localhost:8080/math/ocr -F "image=@document.png"1from crispembed import CrispMathOcr
2
3ocr = CrispMathOcr("smoldocling-q8_0.gguf")
4doctags = ocr.recognize("document.png")
5print(doctags) # <doctag><text>...</text>...</doctag>