Views
No views yet
Qwen3.5-0.8B bundled with ChartReader, an
image+text LoRA trained on ChartQA. The vision tower stays frozen; the LoRA
adapts the language tower to answer chart questions the way ChartQA wants:
short, exact, just the value. The base + sidecar keep full image+text
inference, so the same repo works for general VLM tasks too.| Metric | Base 0.8B | + ChartReader | Δ |
|---|---|---|---|
| Relaxed accuracy | 50.0% | 55.0% | +5.0 pp |
| Exact match | 26.2% | 40.0% | +13.8 pp |
| Output similarity | 0.385 | 0.598 | +0.21 |
config.json, model.safetensors the base Qwen3.5-0.8B OptiQ-4bit quant
optiq_vision.safetensors vision sidecar (full image+text inference)
mtp.safetensors multi-token-prediction draft head
adapters/chartreader/ the ChartQA LoRA (adapters.safetensors)1pip install mlx-optiq
2huggingface-cli download mlx-community/chartreader-0.8B-OptiQ-4bit --local-dir ./chartreader
3
4optiq serve --model ./chartreader --adapter ./chartreader/adapters/chartreaderlocalhost:8080. Without the --adapter, the same repo serves as the plain
image+text base model.1optiq lora train mlx-community/Qwen3.5-0.8B-OptiQ-4bit \
2 --vision --data ./chartqa/train.jsonl \
3 --rank 8 --iters 800 --learning-rate 5e-5 --output ./chartreaderpip install mlx-optiq.