Do VLMs Read or Rewrite? On Transcription Faithfulness in Vision-Language Models
Vision Language Models (VLMs) often rewrite imperfect text into more plausible forms rather than transcribing it faithfully, a behavior not detected by clean-text OCR benchmarks. The paper introduces FaithC4, a multilingual perturbation benchmark with 1,455 single-page documents (English, Chinese, Korean) featuring three perturbation families: scramble, random substitution, and visually similar substitution. Evaluation of 15 systems reveals significant differences in Word Error Rate (WER) degrad
Analysis
TL;DR
- Vision Language Models (VLMs) often rewrite imperfect text into more plausible forms rather than transcribing it faithfully, a behavior not detected by clean-text OCR benchmarks.
- The paper introduces FaithC4, a multilingual perturbation benchmark with 1,455 single-page documents (English, Chinese, Korean) featuring three perturbation families: scramble, random substitution, and visually similar substitution.
- Evaluation of 15 systems reveals significant differences in Word Error Rate (WER) degradation under perturbation: general-purpose VLMs degrade by up to 4.5 points, OCR-specialized VLMs by 0.2-2 points, and traditional OCR by less than 0.6 points on English.
- Layer-by-layer probing of Qwen3-VL-4B identifies that rewriting occurs when a perturbed word's final layer FFN representation stays close to the original encoding; sufficient divergence leads to faithful transcription.
- Short words (4-6 characters) are rewritten up to 10% of the time, with a sharp cutoff at 8 characters above which rewriting drops to 0%.
Why It Matters
This research is crucial for AI practitioners and researchers working on document understanding, as it highlights a critical limitation of VLMs: their tendency to "hallucinate" or rewrite text when faced with imperfect input, which can lead to significant errors in real-world applications where text is often noisy or degraded. The FaithC4 benchmark provides a much-needed tool for evaluating transcription faithfulness, enabling better model selection and development for tasks requiring accurate text extraction.
Technical Details
- FaithC4 benchmark comprises 1,455 single-page documents in English, Chinese, and Korean, perturbed using three methods: scramble (reordering characters), random substitution (replacing characters with random ones), and visually similar substitution (replacing characters with visually similar ones).
- The study evaluates 15 systems: general-purpose VLMs (e.g., GPT-4V, Claude 3), OCR-specialized VLMs (e.g., PaddleOCR, DocVLM), and traditional OCR pipelines (e.g., Tesseract).
- Analysis of Qwen3-VL-4B reveals that rewriting behavior is tied to the similarity between the perturbed word's final layer FFN representation and the original encoding; when representations diverge beyond a threshold, the model transcribes faithfully.
- Word length is a key factor: short words (4-6 characters) are rewritten up to 10% of the time, while words longer than 8 characters are never rewritten.
Industry Insight
- Organizations relying on VLMs for document processing should be aware of the risk of unintended text rewriting, especially for short words, and consider using OCR-specialized models or traditional OCR pipelines for critical applications requiring high transcription fidelity.
- The FaithC4 benchmark should be adopted as a standard evaluation metric for VLMs in document understanding tasks, complementing existing clean-text benchmarks to better assess real-world performance.
- Future VLM development should focus on reducing rewriting behavior for imperfect text, potentially through architectural modifications or training strategies that prioritize transcription faithfulness over plausibility.
Disclaimer: The above content is generated by AI and is for reference only.