REVIEW 3 major objections 4 minor
IoU-PD: IoU-Aware Privileged Distillation for Visual Grounding with Multimodal Large Language Models
T0 review · 3 major / 4 minor · reviewed 2026-08-04 · deepseek-v4-flash
Pith's one-line read Ground-truth boxes, shown to a teacher during training, improve visual grounding beyond serving as coordinate labels.
desk verdict A modest but real empirical contribution: the privileged-box claim survives the ablations, but the paper needs a wrong-box control, multi-seed runs, and code before the exact size of the effect is fully trustworthy. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central mechanism is a frozen privileged teacher paired with an on-policy distillation loss. The teacher receives the original image with the ground-truth box overlaid in green, plus the original prompt augmented with the hint 'The answer is located within the green rectangle'; the student receives only the original image and prompt. The student's own decoded box is scored under both branches, and the KL term is token-weighted by a product of factors — exponential in (1 − IoU of the sampled box), softmax over coordinate-level errors, digit-position significance, a sigmoid on teacher–student log-probability agreement, and teacher entropy — so that geometrically important and reliable toke
What would settle it
Retrain the same pipeline with a teacher whose green rectangle is placed at a random location (same size, same hint text); if the student's mIoU and Acc@0.7 gains stay close to the full IoU-PD numbers, the claim that ground-truth location information drives the improvement is falsified, whereas a drop to the original-teacher baseline would confirm that the privileged location is the active component.
Extended reading notes
Core claim
The paper claims that ground-truth boxes carry useful training-time guidance beyond their role as output labels. When a frozen teacher conditions on the image with the target box drawn in green and a text hint saying the answer lies inside the green rectangle, its output distribution contains region-aware information that a student, seeing only the original image, can absorb through distillation. The student is anchored by supervised fine-tuning on the true coordinate string and shaped by a token-weighted KL loss whose weights combine a sample-level IoU factor, per-coordinate error, digit-position significance, teacher–student agreement, and teacher confidence. Experiments show consistent re
Load-bearing premise
The load-bearing premise is that the frozen teacher's distribution, computed on an input that literally contains the ground-truth box, remains a faithful distillation target for a student that will never see that box—that the conditional mismatch between the privileged and standard inputs is small enough that the teacher's logits teach region awareness rather than reliance on the green rectangle.
Editorial extensions
If this is right
- Training-time-only privileged visual hints can be layered onto coordinate-generating multimodal LLMs without changing the inference input format or adding a localization head.
- The gains increase under stricter overlap thresholds: P@0.9 rises 7.75 points and P@0.95 by 12.84 over the base model, indicating the method pushes many predictions into the high-overlap range.
- The method helps small and medium objects more than large ones, suggesting privileged box hints are especially useful when coordinate errors cover a larger fraction of the target region.
- Removing the SFT anchor sharply reduces the gain, so privileged distillation complements direct coordinate supervision rather than replacing it.
- The approach requires grounding annotations at training time; without ground-truth boxes, the privileged teacher input cannot be constructed.
Reading between the lines
- A direct test of the mechanism would be to replace the ground-truth overlay with a randomly placed green box of the same size; if the gain persists, the active ingredient is the visual marker itself rather than the location information.
- The same privileged-distillation scheme could transfer to other structured-output tasks with geometric supervision and spatial metrics, such as keypoint detection, dense captioning, or layout generation.
- Because the teacher is frozen and sees the base distribution plus the overlay, the method is a form of on-policy self-distillation with a visual hint; it may combine naturally with verifiable rewards that directly optimize IoU.
- The paper's own limitation—that the hint is a simple overlay and gains are moderate—points to richer privileged inputs, such as a cropped region or segmentation mask, as a way to reduce the remaining conditional mismatch.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes IoU-PD, a training-time privileged-distillation method for coordinate-generating multimodal large language models. The student is trained on the original image and referring expression, while a frozen teacher receives a box-marked image plus an appended hint. The total loss is an SFT anchor plus a token-weighted KL distillation over student-generated responses, with weights informed by IoU, coordinate error, digit position, teacher-student agreement, and teacher entropy. At inference the teacher, box overlay, and hint are removed. Experiments on RefCOCO, RefCOCO+, and RefCOCOg with Qwen3-VL-4B report consistent gains over the base model (+4.03 mIoU, +4.25 Acc@0.7 in the main setting), with ablations isolating SFT, original-teacher distillation, box-marked teacher input, and IoU-aware weighting. The paper honestly lists limitations, including the requirement for grounding annotations and the condition-mismatch risk of privileged distillation.
Significance. If the reported gains are robust, the paper makes a practical and conceptually useful contribution: it improves region-level grounding without changing the inference-time interface, adding a teacher branch, or requiring extra inference-time annotations. The ablation structure is a genuine strength: the SFT anchor, the non-privileged self-distillation baseline, and the IoU-aware weighting are separately tested, and the threshold, object-size, and scaling analyses give a more complete picture than a single benchmark number would. The central claim—that ground-truth boxes can serve as privileged guidance beyond coordinate labels—is plausible and largely well supported by the component ablations. However, the key isolation of the box-teacher effect is confounded by the simultaneously introduced text hint, and every result is single-run with no error bars. These issues are fixable within the manuscript's scope but need to be addressed before the central causal claim can be accepted.
major comments (3)
- [§4.3, Table 7, Appendix E] The comparison that isolates the privileged box teacher is Variant B ('Original teacher') vs Variant D ('Box teacher'). Moving from B to D changes two variables at once: the green box overlay and the appended hint text 'The answer is located within the green rectangle.' There is no box-only, hint-only, wrong-box, or random-box control. The observed difference (+0.65 Acc@0.7, +0.0051 mIoU) is therefore not uniquely attributable to the semantic content of the ground-truth box. Since this is the central claim of the paper, please add a wrong-box teacher (same overlay and hint but with a non-target box) and a box-overlay-without-hint variant; if a wrong-box teacher produces a similar gain, the effect would be consistent with a peaked/regularizing target rather than with privileged visual guidance about the referred region.
- [§4.3, Table 7; §4.2, Table 3] All results are reported from single training runs with no error bars or significance tests. The load-bearing component differences are small: B-to-D is 0.65 Acc@0.7, D-to-E is 0.27, E-to-F is 0.08, and F-to-Full is 0.13. These differences are within the range of typical run-to-run variation for LLM fine-tuning, so the finer-grained claims (e.g., that the sample-level IoU factor with tau_r=0.5 helps over tau_r=1.0) are not reliably supported. Please provide multiple seeds with standard deviations, or an equivalent statistical analysis, for at least the Table 7 ablation rows and the main Table 6 comparison.
- [§3.3, Eq. (2); Appendix C] The method's mechanism requires that the frozen teacher's distribution p_T(·|x_t,·), which is conditioned on the box-marked image, be a learnable and beneficial target for the student's p_θ(·|x_s,·), which does not see the box. Appendix C acknowledges the conditional-mismatch risk but offers only a qualitative argument. No quantitative measurement is provided for how large the mismatch is, how it evolves during training, or whether the KL term functions as genuine guidance rather than a regularizer. Measuring teacher-student KL divergence on held-out prompts before and after training, or reporting teacher accuracy under x_t and student accuracy under x_s, would directly address the load-bearing assumption and materially strengthen the paper.
minor comments (4)
- [Table 2, row 'Original teacher'] Variant B improves mIoU and Acc@0.7 over SFT-only (0.8492 vs 0.8470; 85.63 vs 85.32) but degrades Acc@0.5 (89.80 vs 90.62). The paper does not discuss this cross-metric inconsistency; a brief explanation would help.
- [§3.4, Eq. (3)] The normalization expression for w̄_t is ambiguous as typeset ('|Y|w_t P_j...'). It should read w̄_t = |Y| w_t / (Σ_j w_j + ε); please fix the notation.
- [Table 3 and Figure 4] The 2B scaling point is only reported at 30k/1 epoch, so the comparison between backbone sizes is incomplete. Adding a 2B/300k/3-epoch run (or explicitly stating why it is omitted) would make the scaling conclusion cleaner.
- [Algorithm 1, line 5] The notation 'ŷ ← Decode(p_θ(·|x_s))' is underspecified. Clarify whether this is greedy decoding, sampling, or beam search, and whether the same decoding is used for the teacher's condition.
Circularity Check
Empirical training method; gains measured on held-out splits — no circular reduction. Score 2 reflects one minor non-load-bearing self-citation (Smooth Operator) and the acknowledged-but-unquantified teacher-student conditional mismatch.
full rationale
The central claim—that ground-truth boxes provide useful privileged guidance beyond coordinate labels—is an empirical effect, not a derivation that restates its inputs. The training objective (Section 3.3, L = L_kd + αL_sft) uses the GT box both as the SFT target and as the teacher's box overlay; the claimed gains (+4.03 mIoU, +4.25 Acc@0.7 over Qwen3-VL-4B) are measured on the held-out RefCOCO/RefCOCO+/RefCOCOg splits under a unified evaluation protocol (Table 6), so no fitted value is renamed as a prediction. The IoU-aware weights w_t = r(u)·c_t·d_t·a_t·e_t (Section 3.4) are per-sample training reweightings computed from the student's own decoded box; aligning the loss with the evaluation metric is metric-aligned optimization, not a by-construction guarantee of test-set improvement, and the ablations (Table 7, rows D->E->Full) show small, non-forced increments. The only load-bearing assumption—that the frozen box-marked teacher's distribution p_T(·|x_t) transfers to the student that lacks the box—is an acknowledged risk, not a circularity: the paper explicitly flags the conditional-mismatch danger in Appendix C ('increasing the conditional mismatch between teacher and student'), and the B-vs-D ablation is confounded (the hint text changes alongside the box) and lacks a wrong-box control, which is a validity/robustness limitation rather than an equivalence-by-construction. The paper's own Limitations section acknowledges that the method requires grounding annotations and that gains are moderate. The one self-citation is Smooth Operator (Jiao et al., 2026), a co-authored related-work baseline that is not load-bearing. No equation is equivalent to its inputs by definition.
Assumptions & free parameters
free parameters (6)
- SFT coefficient alpha =
1.0
- Sample-level IoU temperature tau_r =
0.5
- Coordinate softmax temperature tau_c =
1.0
- Digit-position weight lambda_d =
0.5
- Agreement sigmoid slope beta =
3.0
- Teacher-confidence entropy temperature tau_e =
1.0
assumptions (4)
- domain assumption The teacher distribution p_T(.|x_t, y_hat_<t) computed under the box-marked privileged input is a useful distillation target for the student conditioned on the original input x_s.
- domain assumption The token-to-coordinate parsing and the fallback rule that counts malformed responses as invalid are fair across all compared models.
- domain assumption Digit-position significance (hundreds > tens > ones) and the multiplicative weighting factors reflect the true effect of token errors on IoU.
- domain assumption The frozen same-architecture teacher initialized from the same base checkpoint provides reliable logits without EMA updates.
Cite this review
Pith. "Pith review of IoU-PD: IoU-Aware Privileged Distillation for Visual Grounding with Multimodal Large Language Models." pith.science (2026). https://pith.science/paper/OSFT67S7
@misc{pith2026260715732,
author = {Pith},
title = {Pith review of: IoU-PD: IoU-Aware Privileged Distillation for Visual Grounding with Multimodal Large Language Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/OSFT67S7}},
note = {Machine review of arXiv:2607.15732}
}
read the original abstract
Visual grounding with multimodal large language models is commonly formulated as autoregressive coordinate generation, where a model outputs bounding-box coordinates as text given an image and a referring-expression prompt. While this interface is simple and compatible with instruction following, it introduces a mismatch between training and evaluation: training optimizes token-level likelihood over coordinate strings, whereas grounding quality is measured by geometric overlap. We propose IoU-PD, an IoU-aware privileged distillation method for coordinate-generating multimodal large language models. IoU-PD uses ground-truth boxes not only as coordinate targets, but also as privileged training-time guidance. During training, the student receives the original image and prompt, while a frozen teacher receives a box-marked image and an augmented prompt that indicates the marked region. The student is trained with a supervised fine-tuning anchor and a privileged distillation loss whose token weights reflect both geometric importance and teacher reliability. At inference time, IoU-PD requires no box overlay, privileged hint, teacher branch, or additional prediction module. Experiments on standard referring-expression grounding benchmarks show consistent region-level improvements over strong coordinate-generating baselines, demonstrating that ground-truth boxes can provide useful privileged guidance beyond serving as coordinate labels. Project page: https://xyzzzh.github.io/IoU-PD/
Figures
Figures from the paper (4 more)
Reviewed August 4, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.