File size: 7,362 Bytes
134324f
 
afb190f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
134324f
afb190f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
---
license: apache-2.0
base_model: ATH-MaaS/OvisOCR2
base_model_relation: quantized
library_name: mlx
pipeline_tag: image-text-to-text
language:
  - zh
  - en
tags:
  - mlx
  - mlx-vlm
  - apple-silicon
  - ocr
  - document-parsing
  - qwen3_5
  - 4-bit
  - quantized
---

# OvisOCR2-MLX-4bit

่ฟ™ๆ˜ฏ [`ATH-MaaS/OvisOCR2`](https://huggingface.co/ATH-MaaS/OvisOCR2) ็š„้žๅฎ˜ๆ–น MLX 4-bit ้‡ๅŒ–็‰ˆๆœฌ๏ผŒ้ขๅ‘ Apple Silicon Mac ไธŠ็š„ [MLX-VLM](https://github.com/Blaizzy/mlx-vlm) ๅ’Œ [oMLX](https://github.com/jundot/omlx)ใ€‚

This is an unofficial MLX 4-bit quantized conversion of `ATH-MaaS/OvisOCR2` for document OCR and document parsing on Apple Silicon Macs. It is a conversion and quantization of the upstream checkpoint, not a new training run or a fine-tuned checkpoint.

## Model summary

| Item | Value |
|---|---|
| Base model | [`ATH-MaaS/OvisOCR2`](https://huggingface.co/ATH-MaaS/OvisOCR2) |
| Model family | Qwen3.5 VLM (`model_type: qwen3_5`) |
| Main use | OCR, document parsing, Markdown extraction |
| MLX format | Affine 4-bit |
| Quantization | `bits=4`, `group_size=64`, `mode=affine` |
| Processor | `Qwen3VLProcessor` |
| Weight size | Approximately 625 MB for `model.safetensors` |
| Conversion status | Community conversion; not affiliated with the upstream authors |

## Intended use

Use this checkpoint to extract readable content from document images, including:

- printed Chinese and English text;
- headings, paragraphs and lists;
- tables and basic document layout;
- Markdown-oriented document conversion.

The 4-bit checkpoint is intended to reduce memory and storage requirements for local Apple Silicon inference. Quantization can cause small quality differences from the BF16 version, especially on tiny characters, dense tables and difficult layouts. The output should be validated on the document types that matter to you.

## Installation

The simplest runtime is `mlx-vlm` on an Apple Silicon Mac:

```bash
python3 -m pip install -U mlx-vlm huggingface_hub
```

For a clean environment, use a virtual environment instead of installing packages into the system Python:

```bash
python3 -m venv .venv
source .venv/bin/activate
python -m pip install -U pip mlx-vlm huggingface_hub
```

MLX requires Apple Silicon. CUDA, ROCm and ordinary x86 CPU inference are not the target runtime for this repository.

## Download

Replace `YOUR_HF_USERNAME` with the account or organization that publishes this repository:

```bash
hf download YOUR_HF_USERNAME/OvisOCR2-MLX-4bit \
  --local-dir ./OvisOCR2-MLX-4bit
```

The repository should contain the extracted MLX model files at its root. Do not put the model inside another nested directory, and do not upload only the `.tar` archive.

## Quick start with MLX-VLM

The official `mlx-vlm` command is `mlx_vlm.generate`:

```bash
mlx_vlm.generate \
  --model ./OvisOCR2-MLX-4bit \
  --image /path/to/document.png \
  --prompt "Extract all readable content from this image in Markdown. Preserve the original reading order, headings, paragraphs, lists, and table structure as much as possible. Return Markdown only; do not add explanations." \
  --max-tokens 4096 \
  --temperature 0.0
```

For OCR, thinking is normally unnecessary. Do not pass `--enable-thinking` unless you intentionally want to test a thinking-style prompt.

A shorter prompt can also be used:

```text
Extract all readable content from the image in Markdown. Preserve the original text and layout as much as possible. Return Markdown only.
```

## Use with oMLX

oMLX treats this checkpoint as a Qwen3.5 vision-language model. Copy the model into the directory configured for oMLX, then start the server:

```bash
mkdir -p ~/models
hf download YOUR_HF_USERNAME/OvisOCR2-MLX-4bit \
  --local-dir ~/models/OvisOCR2-MLX-4bit

omlx serve --model-dir ~/models
```

Open `http://localhost:8000/admin/chat`, select the model and upload a document image. If an oMLX installation does not identify the model automatically, set its model type to `VLM` in the Admin panel. Use a prompt like the one above and keep thinking disabled for normal OCR.

The first request can be slower because the model and Metal resources have to be loaded. Subsequent requests are the more useful measure of inference speed. Cold-start time also depends on whether oMLX has evicted the model, the current memory pressure, the storage device and the installed oMLX/MLX version.

## Quantization and conversion information

The conversion was performed from the upstream Hugging Face checkpoint with `mlx-vlm`:

```bash
mlx_vlm.convert \
  --hf-path ATH-MaaS/OvisOCR2 \
  --mlx-path OvisOCR2-MLX-4bit \
  --quantize \
  --q-bits 4
```

The resulting MLX configuration declares affine 4-bit weights with group size 64:

```json
{
  "quantization": {
    "group_size": 64,
    "bits": 4,
    "mode": "affine"
  }
}
```

Re-running the conversion with a different `mlx-vlm` version may produce small metadata differences. Keep the generated `config.json`, processor files and tokenizer files together with the quantized weights. The command-line options of newer `mlx-vlm` releases should be checked with `mlx_vlm.convert --help`.

## Repository contents

The model repository contains the MLX quantized weight file and the configuration, tokenizer and processor files required by `mlx-vlm`/oMLX. Typical files include:

```text
README.md
config.json
model.safetensors
processor_config.json
preprocessor_config.json
tokenizer.json
tokenizer_config.json
chat_template.jinja
```

The exact auxiliary filenames may vary slightly with the `mlx-vlm` release. Do not rename or remove files generated by the converter.

## Non-official local performance note

Observed warm-run results on one Apple Silicon Mac were approximately 141โ€“155 generated tokens/second, but this is not a universal benchmark. Startup time and throughput depend on the Mac model, image token count, output length, memory pressure, cache state and software versions. The model card intentionally makes no general speed guarantee.

## Limitations and safety

- This is an unofficial conversion and is not endorsed by the upstream OvisOCR2 authors.
- Quantization may slightly reduce OCR fidelity compared with the BF16 conversion.
- OCR can be incorrect on low-resolution, skewed, blurred, handwritten or unusual documents.
- Tables and complex multi-column layouts may require prompt tuning or post-processing.
- Generated text must be checked before it is used for legal, financial, medical or other high-stakes purposes.
- The first request after model load may be substantially slower than warm requests.

## License and attribution

The upstream model page identifies `ATH-MaaS/OvisOCR2` as Apache-2.0. Please review and comply with the upstream license and attribution requirements when redistributing this conversion. This repository is an unofficial conversion and quantization and does not change the upstream license.

Upstream resources:

- [OvisOCR2 model card](https://huggingface.co/ATH-MaaS/OvisOCR2)
- [MLX-VLM](https://github.com/Blaizzy/mlx-vlm)
- [oMLX](https://github.com/jundot/omlx)
- [Apple MLX](https://github.com/ml-explore/mlx)

## Release note

This repository contains the 4-bit MLX conversion named `OvisOCR2-MLX-4bit`. It should be used together with the model files in this repository, not with the original Transformers/PyTorch weights directly.