Instructions to use zk0hf/glm-ocr-receipt-ocr-mlx-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use zk0hf/glm-ocr-receipt-ocr-mlx-4bit with MLX:
# Make sure mlx-vlm is installed # pip install --upgrade mlx-vlm from mlx_vlm import load, generate from mlx_vlm.prompt_utils import apply_chat_template from mlx_vlm.utils import load_config # Load the model model, processor = load("zk0hf/glm-ocr-receipt-ocr-mlx-4bit") config = load_config("zk0hf/glm-ocr-receipt-ocr-mlx-4bit") # Prepare input image = ["http://images.cocodataset.org/val2017/000000039769.jpg"] prompt = "Describe this image." # Apply chat template formatted_prompt = apply_chat_template( processor, config, prompt, num_images=1 ) # Generate output output = generate(model, processor, formatted_prompt, image) print(output) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use zk0hf/glm-ocr-receipt-ocr-mlx-4bit with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "zk0hf/glm-ocr-receipt-ocr-mlx-4bit"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "zk0hf/glm-ocr-receipt-ocr-mlx-4bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use zk0hf/glm-ocr-receipt-ocr-mlx-4bit with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "zk0hf/glm-ocr-receipt-ocr-mlx-4bit"
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default zk0hf/glm-ocr-receipt-ocr-mlx-4bit
Run Hermes
hermes
- OpenClaw new
How to use zk0hf/glm-ocr-receipt-ocr-mlx-4bit with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "zk0hf/glm-ocr-receipt-ocr-mlx-4bit"
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "zk0hf/glm-ocr-receipt-ocr-mlx-4bit" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
glm-ocr-receipt-ocr-mlx-4bit
MLX conversion of a LoRA fine-tune of GLM-OCR (0.9B) for structured receipt extraction.
Scope
Trained on CORD-v2 (Indonesian receipts) — the same recipe and data as the LFM2-VL-450M fine-tune, for direct comparison. It is not trained on Japanese receipts and does not use a Japanese-receipt schema.
Observed on a Japanese receipt: it reads real strings off the page — store name,
address, invoice number, item names such as レッドブルエナジー25 — but maps them into
CORD's fields imperfectly, and leaves ¥ and the 軽 tax marker inside price strings.
The base model's reading ability survives the fine-tune; the schema is the mismatch.
Prompt
The CORD instruction it was trained against: JSON with menu (list of
{nm, cnt, price}), sub_total, and total.
Quirk: <think></think> prefix
Output begins with an empty <think></think> block before the JSON. Anything parsing
this model's output must strip a leading reasoning block, or every correct response
looks like a parse failure.
Conversion
mlx_vlm.convert -q --q-bits 4 with mlx-vlm 0.6.8, run against a local copy whose
config.json had torch_dtype removed from text_config/vision_config — mlx-vlm's
TextConfig rejects that key and the LoRA merge writes it. Result: 9.0 effective
bits/weight, 1254 MB; --q-bits 4 does not quantize everything.
Measured
Local mlx_vlm.generate on Apple silicon: 2.04 GB peak, ~220 tokens/s.
- Downloads last month
- 80
4-bit
Model tree for zk0hf/glm-ocr-receipt-ocr-mlx-4bit
Base model
zai-org/GLM-OCR