Views
No views yet
infly/Infinity-Parser2-Flash for llama.cpp / llama-server, so the model runs on a single consumer GPU (validated on an RTX 3080 Ti, 12 GB) without vLLM. ~4.2 GB bf16 → ~1.5 GB Q6_K weights (+ 0.67 GB f16 vision projector).| File | What |
|---|---|
Infinity-Parser2-Flash-Q6_K.gguf | Q6_K-quantized weights (imatrix) |
Infinity-Parser2-Flash-mmproj-f16.gguf | f16 multimodal projector — required for image input |
convert_hf_to_gguf → f16 GGUF → llama-quantize Q6_K with an importance matrix computed from a clean native-PDF document corpus (~519 k tokens). (llama-imatrix is text-only; the mmproj carries the vision tower at serve time.)| Benchmark | bf16 | Q6_K GGUF |
|---|---|---|
| DocVQA (val) | 93.80 | 93.63 |
| OCRBench | 84.3 | 82.8 |
| MMStar / MMBench | ref | ≥ bf16 |
1llama-server \
2 --model Infinity-Parser2-Flash-Q6_K.gguf \
3 --mmproj Infinity-Parser2-Flash-mmproj-f16.gguf \
4 --ctx-size 32768 --n-gpu-layers 99 \
5 --host 0.0.0.0 --port 8105/v1/chat/completions with image_url content. Notes:reasoning_content channel (llama.cpp routes the think block there) — read it accordingly, or disable thinking.--ctx-size 32768 comfortably fits one page + output.