alt.hn

8/17/2026 at 6:28:07 PM

Roboflow Playground: Try and Compare 30 Computer Vision Models

https://blog.roboflow.com/roboflow-playground/

by Bluestein

8/17/2026 at 8:01:30 PM

Neat! Looks like an updated version of OCR Arena[0], which doesn't seem to have kept up with new models for a bit.

Would be nice to see the inclusion of Mistral OCR 4, Baidu's Unlimited-OCR, and OlmOCR2.

[0]OCR Arena: https://www.ocrarena.ai/

by my002

8/17/2026 at 8:47:54 PM

thank you for the model suggestions!

by rocauc

8/17/2026 at 9:59:11 PM

What free and open models are people using for segmentation tasks these days?

by amelius

8/20/2026 at 12:21:59 PM

With a one-line change, you can switch between open-weight OCR VLMs (DeepSeek OCR 2, GLM-OCR, dots.mocr, Paddle OCR VL, PP-OCRv6, etc.) and process 100K+ pages for under $60 on VLM Run Gateway

> one OpenAI-compatible endpoint for open-weight OCR and VLM models

Try it out quickly via OpenAI SDK:

``` client = OpenAI( base_url="https://gateway.vlm.run/v1/openai", api_key="<VLMRUN_API_KEY>", )

response = client.chat.completions.create( model="rednote-hilab/dots.mocr", messages=[{ "role": "user", "content": [{ "type": "document_url", "document_url": {"url": "https://.../invoice.pdf"}, }], }], extra_body={"document_dpi": 72}, ) ```

or via our CLI:

``` pip install vlmrun vlmrun gw models vlmrun config set --api-key 'vlmrun' # anon-user, rate-limited vlmrun gw chat <doc>.pdf -m zai-org/glm-ocr vlmrun gw chat <doc>.pdf -m zai-org/glm-ocr --json-mode vlmrun gw chat <doc>.pdf -m deepseek-ai/deepseek-ocr-2 vlmrun gw chat <doc>.pdf -m rednote-hilab/dots.mocr vlmrun gw chat <doc>.pdf -m paddleocr/pp-ocrv6 ```

Docs: https://docs.vlm.run/gateway

Catalog: https://docs.vlm.run/gateway/models

MCP: https://docs.vlm.run/gateway/mcp-server

Colab Quickstart: https://colab.research.google.com/drive/1RkuVIyuc5Po-UlcSlFy...

Read the full post here: https://huggingface.co/blog/vlm-run/intro-to-vlmrun-gateway

by cpnwaugha

8/20/2026 at 4:07:26 PM

Formatting the command block for easy copy-paste. Via the CLI:

pip install vlmrun

vlmrun gw models

vlmrun config set --api-key 'vlmrun' # anon-user, rate-limited

vlmrun gw chat <doc>.pdf -m zai-org/glm-ocr

vlmrun gw chat <doc>.pdf -m zai-org/glm-ocr --json-mode

vlmrun gw chat <doc>.pdf -m deepseek-ai/deepseek-ocr-2

vlmrun gw chat <doc>.pdf -m rednote-hilab/dots.mocr

vlmrun gw chat <doc>.pdf -m paddleocr/pp-ocrv6

by cpnwaugha