REVIEW 2 major objections 2 minor 14 references
DV-SFT labels each visual token with the word from its image patch and applies next-token prediction to those tokens directly.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · grok-4.3
2026-06-29 17:58 UTC pith:XT6F5IMD
load-bearing objection DV-SFT adds direct next-token supervision to visual tokens via OCR patch-to-word labels without extra modules, but the text-only nature of the labels leaves the claimed gains on general fine-grained visual tasks unconvincing. the 2 major comments →
DV-SFT: Direct Vision Supervision for Fine-Grained Visual Understanding
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
DV-SFT constructs explicit, token-level supervision for visual tokens by exploiting the direct vision-text correspondence in OCR-related scenarios, automatically labeling each visual token with the word in its corresponding image patch, and trains them through the same next-token prediction objective used for text while treating the MLLM as a black box that requires no architectural modifications or additional forward passes.
What carries the argument
Automatic assignment of OCR-derived word labels to individual visual tokens so they participate in the standard next-token prediction loss.
Load-bearing premise
The word labels taken from OCR matches on image patches supply effective supervision signals for fine-grained visual understanding in tasks that go beyond OCR itself.
What would settle it
Running DV-SFT on a suite of fine-grained visual benchmarks that contain no readable text and observing no improvement over ordinary SFT would show the method does not generalize.
If this is right
- DV-SFT outperforms standard SFT on three in-domain and four out-of-domain benchmarks.
- Vision supervision improves fine-grained visual understanding.
- The approach raises multimodal alignment efficiency.
- No architectural changes or extra forward passes are required.
Where Pith is reading between the lines
- If similar direct correspondences between visual patches and discrete labels can be obtained in non-text domains, the same supervision pattern could be applied without OCR.
- The black-box nature suggests the technique could be combined with existing instruction-tuning pipelines at low additional cost.
- The efficiency gain in alignment may reduce the volume of text-only data needed to reach a given level of visual performance.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes DV-SFT, a method that constructs explicit token-level supervision for visual tokens in multimodal LLMs by automatically labeling each visual token with the OCR word from its corresponding image patch and training via the standard next-token prediction objective. It claims this approach, which requires no architectural changes or extra forward passes, consistently outperforms standard SFT on three in-domain and four out-of-domain benchmarks while enhancing fine-grained visual understanding and multimodal alignment efficiency.
Significance. If the empirical claims hold under proper controls, the work offers a lightweight way to apply direct supervision to visual tokens using existing OCR pipelines, addressing the implicit optimization of visual representations in standard SFT without auxiliary decoders. This could improve practical applicability for fine-grained multimodal tasks.
major comments (2)
- [Method] The central mechanism relies on OCR-derived word labels for visual tokens (§3, method description). No explicit mechanism is provided showing how next-token prediction on these text strings produces richer non-textual visual features (e.g., object parts, textures, or spatial relations) needed for the claimed gains on out-of-domain benchmarks that need not contain readable text; the gradients appear confined to textual recognition.
- [Experiments] The abstract and results claim consistent outperformance on four out-of-domain benchmarks, yet the provided description supplies no dataset details, controls for OCR quality, error bars, or ablation isolating the contribution of vision supervision versus other factors (e.g., training schedule). This makes it impossible to verify whether the reported gains support the fine-grained understanding claim.
minor comments (2)
- Notation for visual token labeling and the exact loss formulation should be formalized with equations to clarify how the supervision is applied without modifying the MLLM architecture.
- The abstract would benefit from naming the specific in-domain and out-of-domain benchmarks and reporting quantitative improvements (e.g., accuracy deltas) rather than qualitative statements.
Simulated Author's Rebuttal
We thank the referee for the constructive feedback. We address the two major comments point-by-point below and describe the revisions we will make.
read point-by-point responses
-
Referee: [Method] The central mechanism relies on OCR-derived word labels for visual tokens (§3, method description). No explicit mechanism is provided showing how next-token prediction on these text strings produces richer non-textual visual features (e.g., object parts, textures, or spatial relations) needed for the claimed gains on out-of-domain benchmarks that need not contain readable text; the gradients appear confined to textual recognition.
Authors: The next-token prediction objective is applied to each visual token using its corresponding OCR word as the target. This directly supervises the visual token's hidden state to encode the information necessary to predict the word from its image patch, updating the vision encoder and projector via backpropagation. While labels are textual, the resulting representations capture fine-grained patch content that improves multimodal alignment and transfers to out-of-domain tasks. We agree a clearer explanation of this gradient pathway and its effect on non-textual features is needed; we will add a dedicated paragraph with gradient analysis in the revised Section 3. revision: partial
-
Referee: [Experiments] The abstract and results claim consistent outperformance on four out-of-domain benchmarks, yet the provided description supplies no dataset details, controls for OCR quality, error bars, or ablation isolating the contribution of vision supervision versus other factors (e.g., training schedule). This makes it impossible to verify whether the reported gains support the fine-grained understanding claim.
Authors: The full manuscript contains dataset descriptions in Section 4, but we acknowledge the initial version lacked sufficient detail. In revision we will expand the experimental section with: explicit descriptions and sources for the four out-of-domain benchmarks, error bars from at least three random seeds, OCR quality controls (e.g., precision/recall of the labeling pipeline), and new ablations that isolate DV-SFT from training schedule and data volume. These additions will directly support the fine-grained understanding claims. revision: yes
Circularity Check
No circularity: method constructs labels from OCR and reports empirical gains without reduction to fitted inputs or self-citations
full rationale
The paper defines DV-SFT by constructing visual-token labels directly from OCR word-patch correspondences and applies the standard next-token prediction loss; performance claims rest on reported benchmark comparisons rather than any equation or parameter that is defined in terms of the target result. No self-citation is invoked as a uniqueness theorem or load-bearing premise, and the derivation does not rename a known pattern or smuggle an ansatz. The central claim therefore remains independent of its own inputs.
Axiom & Free-Parameter Ledger
axioms (1)
- domain assumption Direct vision-text correspondence exists in OCR-related scenarios allowing automatic labeling of visual tokens with words from image patches.
read the original abstract
Multimodal large language models are typically trained end-to-end to predict ground-truth answers, yet supervision signals are applied exclusively to text tokens. Visual tokens, the core carriers of visual information, are optimized only implicitly as part of the context, leading to coarse-grained visual understanding. Prior works attempt to supervise visual inputs but inevitably rely on auxiliary components such as additional decoders or forward passes, because visual tokens lack readily interpretable labels. This limits their practical applicability. In this work, we propose \textbf{D}irect \textbf{V}ision \textbf{S}upervised \textbf{F}ine-\textbf{T}uning (DV-SFT), which constructs explicit, token-level supervision for visual tokens and trains them through the same next-token prediction objective used for text. Specifically, we exploit the direct vision--text correspondence in OCR-related scenarios and automatically label each visual token with the word in its corresponding image patch. DV-SFT treats the MLLM as a black box, requiring no architectural modifications or additional forward passes. Extensive experiments demonstrate the superiority of direct vision supervision. DV-SFT consistently outperforms standard SFT across three in-domain and four out-of-domain benchmarks. Further analyses show that vision supervision effectively enhances fine-grained visual understanding and achieves higher multimodal alignment efficiency.
Figures
Reference graph
Works this paper leans on
-
[1]
arXiv preprint arXiv:2311.16479 (2023) 16 Lei et al
Mitigating hallucination in visual language models with visual supervision.arXiv preprint arXiv:2311.16479. Cheng Cui, Ting Sun, Manhui Lin, Tingquan Gao, Yubo Zhang, Jiaxuan Liu, Xueqing Wang, Zelun Zhang, Changda Zhou, Hongen Liu, et al. 2025. Paddleocr 3.0 technical report.arXiv preprint arXiv:2507.05595. Wenliang Dai, Junnan Li, Dongxu Li, Anthony Tio...
-
[2]
InEMNLP, pages 1797–1807
Don’t give me the details, just the summary! topic-aware convolutional neural networks for ex- treme summarization. InEMNLP, pages 1797–1807. Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. 2016. Squad: 100,000+ questions for machine comprehension of text. InEMNLP, pages 2383–2392. Amanpreet Singh, Vivek Natarjan, Meet Shah, Yu Jiang, X...
2016
-
[3]
arXiv preprint arXiv:2506.09040 , year=
Basic: Boosting visual alignment with intrin- sic refined embeddings in multimodal large language models. InICCV, pages 20582–20592. Dianyi Wang, Wei Song, Yikun Wang, Siyuan Wang, Kaicheng Yu, Zhongyu Wei, and Jiaqi Wang. 2025a. Autoregressive semantic visual reconstruc- tion helps vlms understand better.arXiv preprint arXiv:2506.09040. Haochen Wang, Anl...
-
[4]
Answer the question using a single word or phrase
-
[5]
Respond with only the answer, no explanation
-
[6]
G ive a concise answer in one word or short phrase
-
[7]
Output only the answer, nothing else
-
[8]
Reply with a single word or phrase, no full sentences
-
[9]
Provide the answer as a single word or brief phrase
-
[10]
Provide a brief answer without additional text
-
[11]
K eep your response to a single word or short phrase
-
[12]
State the answer concisely in a word or phrase
-
[13]
Instructions Figure 7: Format-control instructions
No explanations―just the answer word or phrase. Instructions Figure 7: Format-control instructions. Qwen3-VL-2B / Qwen3-1.7B Min Pixels 32*32*64 Max Pixels 32*32*2048 Global Batch Size 64 Learning Rate 5e-6 Warmup Ratio 0.03 Max Grad Norm 1 LR Scheduler cosine Weight Decay 0 Model Max Length 8192 Additional Settings for Qwen3-VL-8B Learning Rate 2e-5 LoRA...
2048
-
[14]
method. This approach constructs supervi- sory signals from the hidden states of visual to- kens in the early-to-middle layers of the model and trains the projector and the first layer of the model to learn visual features through representation su- pervision. To ensure compatibility with FlashAt- tention, we disable the attention-distribution-based loss ...
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.