REVIEW 4 major objections 3 minor 15 references
The paper claims that a contrastive self-judgment score—an LVLM's own 'Yes' logit minus its image-free prior—can reduce hallucinations, improve safety, and bootstrap preference tuning without external supervision.
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 →
A contrastive self-judgment score that subtracts a model's image-free confidence from its visual confidence is used to guide decoding, safety moderation, and DPO training, improving hallucination and safety metrics across LVLMs.
T0 review reviewed 2026-08-05 challenge →
load-bearing objection A useful contrastive-decoding paper that mislabels its own score as debiased—the algebra in Eq. (3) keeps the text prior—and it has numeric inconsistencies that need fixing. the 4 major comments →
Improving Alignment in LVLMs with Debiased Self-Judgment
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
Core claim
The paper's central claim is that an LVLM's internal confidence on a faithfulness prompt is informative but contaminated by textual priors, and that subtracting the image-free confidence yields a much cleaner grounding signal. This is operationalized as S_f=(1+α)Score_f−αScore'_f, where Score_f is the summed 'Yes'/'yes' logit with the image and Score'_f is the same logit without the image. Used as a sentence selector in decoding (DSGD), as a thresholded unsafety detector with a refusal prefix (FGSD), and as the reward signal for generating preference pairs refined by instance-level self-judgment and trained with DPO (DSR), the score reduces object hallucinations on three LVLMs, lowers jailbr
What carries the argument
The carrying object is the debiased self-judgment score, S_f=(1+α)Score_f−αScore'_f (Eq. 3). Score_f is the LVLM's next-token logit sum for 'Yes'/'yes' under a prompt like 'Is the description accurate?' given an image and a sentence; Score'_f is the same logit computed with the image removed. The image-free term is treated as the textual prior, so the contrast removes a unimodal bias the LVLM inherits from its language backbone. This one scalar does triple duty: it ranks sentence candidates in DSGD's beam search, it is thresholded in FGSD to flag unsafe sentences, and it selects preferred and dispreferred sentences in DSR's preference-data generation.
Load-bearing premise
Equation (3) assumes the textual prior enters the judge logit additively, so a single image-free subtraction with one fixed alpha removes the bias; if the bias is multiplicative, context-dependent, or interacts with the visual evidence, the debiased score is miscalibrated.
What would settle it
Take images paired with two captions each: one faithful and one plausible but wrong, such as objects with high text co-occurrence that are absent from the image. If S_f ranks the plausible-wrong caption above the faithful one when the image-free score is large, or if the Spearman correlation between S_f and FaithScore drops sharply across contexts with different text-prior strength, the additive-debiasing premise fails. A simpler check is to vary alpha per sentence and see whether one global alpha remains optimal.
If this is right
- DSGD lowers CHAIR hallucination scores substantially on three LVLMs while improving BLEU, so a self-judged decoder can beat dedicated hallucination-reduction methods without external models.
- FGSD's thresholded unsafety score reduces attack success rates by roughly half to three-quarters on MM-SafetyBench with zero misclassification of safe outputs, preserving utility.
- DSR shows that 6k self-curated preference pairs can outperform preference-learning methods trained on larger external datasets, lowering the cost of alignment data.
- The same debiased score transfers across faithfulness, safety, and answer-correctness prompts, suggesting one mechanism serves multiple alignment goals.
- The method requires only logit access and sentence-boundary control, so it applies to open-weight LVLMs but not to closed APIs that hide token likelihoods.
Where Pith is reading between the lines
- The image-free baseline is a cheap in-model control; the same contrast could debias other binary self-judgments, such as helpfulness, toxicity, or reasoning correctness, whenever a modality prior contaminates confidence.
- Alpha is currently a global constant; an adaptive alpha estimated from the distribution of blind scores, or computed per sentence, would directly test whether the additive debiasing model is sufficient and would likely improve calibration.
- A natural stress test would be to run DSR and then re-evaluate the judge score on held-out faithfulness pairs: if the score's correlation with FaithScore drifts after DPO, the self-reward loop may be optimizing a moving target.
- Comparing the image-free baseline with a corrupted-image baseline could separate textual priors from other visual priors and sharpen the score further.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a 'debiased self-judgment score' for large vision-language models (LVLMs), computed from the model's own logits for 'Yes' under a faithfulness/safety prompt with and without the image. This score is applied to three settings: Debiased Self-Guided Decoding (DSGD) for hallucination reduction, Fine-Grained Self-Defense (FGSD) for safety moderation, and Debiased Self-Rewarding (DSR) for preference tuning via DPO. Experiments are reported on CHAIR, FaithScore, MM-SafetyBench, MME, SEED-Bench, and other benchmarks across LLaVA-1.5, InstructBLIP, mPLUG-Owl2, and VILA. The central claim is that subtracting an image-free text-prior score from the original self-judgment score removes textual bias and improves alignment.
Significance. If the central claim were valid, the paper would offer a scalable, resource-free alignment method for LVLMs, with potential impact on hallucination mitigation, safety, and self-improvement. The use of external benchmarks (CHAIR, FaithScore, MM-SafetyBench) provides independent grounding, and the code release is a positive step. However, the theoretical foundation of the 'debiasing' step is flawed under the paper's own assumptions, and the paper contains several internal numerical inconsistencies that must be resolved before the empirical claims can be accepted.
major comments (4)
- [Section 4.1, Eq. (3)] Under the paper's own decomposition (Score_f = V + T, Score'_f = T), Eq. (3) gives S_f = (1+alpha)(V+T) - alpha T = T + (1+alpha)V. The text prior T is not subtracted; it remains with coefficient 1, and the visual term is amplified. The text and Figure 4 state that priors are 'subtracted', but the algebra does not support this. This invalidates the 'debiased' characterization that motivates DSGD, FGSD, and DSR. Please either change the formula to a true subtraction (e.g., S_f = Score_f - Score'_f) and re-run, or reframe the contribution as a contrastive score and provide direct evidence that text bias is reduced (e.g., measure residual correlation with blind scores).
- [Section 5.2, Table 3 vs Tables 11 and 12] The same LLaVA-1.5 FGSD setting with alpha=0.1 reports average ASR 19.3 in Table 3 but 14.8 in both Table 11 (alpha=0.1 row) and Table 12 (FGSD). This is a direct numerical contradiction that affects the claimed 73.6% ASR reduction. Please reconcile and specify which table reflects the final evaluation.
- [Section 5.1, Table 1] The stated reductions '31.33% for LLaVA-1.5, 42.42% for InstructBLIP, and 47.63% for mPLUG-Owl2' do not match Table 1. For example, InstructBLIP CHAIR_S drops from 29.0 (greedy) to 20.1 (DSGD), a 30.7% decrease; mPLUG-Owl2 drops from 23.1 to 14.2, a 38.5% decrease. Even using beam search as baseline, the reductions are 36.8% and 36.9%, respectively. Please clarify the baseline and metric used for these percentages.
- [Table 4 vs Table 1] The LLaVA-1.5 baseline CHAIR_S is 48.8 in Table 4 (and Table 9) but 22.4 in Table 1 for greedy decoding on the same model. If different evaluation protocols are used (e.g., different image subsets or prompts), this must be stated; as written, the inconsistency prevents direct comparison of DSGD and DSR results.
minor comments (3)
- [Eq. (5)] The DPO loss uses alpha as the temperature parameter, but alpha is already used for the contrastive coefficient in Eq. (3). Rename one of them to avoid ambiguity (typically beta for DPO).
- [Appendix A.1.2 and Figures 6-8] The text says thresholds are 23, 22.4, and 14.9 for LLaVA, InstructBLIP, and mPLUG-Owl2, respectively, but Figure 6 labels InstructBLIP with threshold 23 and Figure 7 labels LLaVA with threshold 22.4. The order is inconsistent.
- [Table 3, ECSO row for InstructBLIP] The ECSO row for InstructBLIP shows only MCR=14.6 and no ASR values. Please report the full results or explicitly state why they are omitted.
Circularity Check
Eq. (3) does not subtract the textual prior; the 'debiased' label is nominal, though external benchmarks keep the empirical claims independently grounded.
specific steps
-
self definitional
[Section 4.1, Eq. (3); Figure 4 caption]
"Finally, to reduce the influence of text modality bias, we employ a contrastive objective to obtain the final faithfulness score: Sf = (1 + α)Scoref − αScore′f . (3) ... These priors are then subtracted from the original self-judgment score using a contrastive objective."
Under the paper's own additive reading—Scoref contains visual evidence plus text priors, while Score′f 'contains only text priors'—Eq. (3) gives Sf = (1+α)(V+T) − αT = T + (1+α)V. The text prior T is retained with full coefficient 1, so the formula does not implement the stated subtraction. The label 'debiased' is therefore an assumed property, not a consequence of the definition. Since DSGD, FGSD, and DSR all inherit this same Sf, the central claim of bias removal is self-definitional rather than derived.
full rationale
Most of the paper's validation is empirically self-contained: DSGD, FGSD, and DSR are evaluated on external benchmarks (CHAIR, FaithScore, MM-SafetyBench, MME, etc.), and the FGSD threshold is calibrated on one safe-response sample while MCR is measured on a separate sample. There is no load-bearing self-citation chain or imported uniqueness theorem. The main circularity concern is the derivation of the 'debiased' score itself. The paper states that Score′f contains only text priors and that Eq. (3) subtracts these priors, but substituting the paper's own decomposition into Eq. (3) yields Sf = T + (1+α)V, so the text prior remains with full weight. The debiasing property is asserted by naming rather than derived from the equations. Because this score is the shared input to all three applications, there is a partial self-definitional circularity. It is not a total circularity because the claimed empirical improvements are checked against independent benchmarks and do not merely re-report the score's own ranking.
Axiom & Free-Parameter Ledger
free parameters (3)
- alpha (contrastive coefficient) =
1 for DSGD/DSR, 0.1 for FGSD
- Unsafety threshold T =
23 (InstructBLIP), 22.4 (LLaVA-1.5), 14.9 (mPLUG-Owl2)
- Decoding hyperparameters for sentence beam search =
num_beams=5, num_token_beams=5, num_beam_group=5, diversity_penalty=3.0, eos_token_id=period
axioms (5)
- domain assumption The next-token logit for 'Yes' under a judgment prompt reflects the faithfulness or safety of a sentence (Section 3.1).
- ad hoc to paper Textual bias is additive and can be removed by subtracting the image-free logit score (Eq. 3).
- domain assumption A LVLM can judge the correctness of its own responses accurately enough to filter preference data (Section 4.3).
- standard math The DPO loss and standard autoregressive logits are valid tools for preference tuning (Eq. 5).
- domain assumption Greedy sentence-by-sentence selection by highest debiased score produces globally faithful output (Section 4.1).
Cite this review
Pith. "Pith review of Improving Alignment in LVLMs with Debiased Self-Judgment." pith.science (2026). https://pith.science/paper/GJIXOLH4
@misc{pith2026250820655,
author = {Pith},
title = {Pith review of: Improving Alignment in LVLMs with Debiased Self-Judgment},
year = {2026},
howpublished = {\url{https://pith.science/paper/GJIXOLH4}},
note = {Machine review of arXiv:2508.20655}
}
read the original abstract
The rapid advancements in Large Language Models (LLMs) and Large Visual-Language Models (LVLMs) have opened up new opportunities for integrating visual and linguistic modalities. However, effectively aligning these modalities remains challenging, often leading to hallucinations--where generated outputs are not grounded in the visual input--and raising safety concerns across various domains. Existing alignment methods, such as instruction tuning and preference tuning, often rely on external datasets, human annotations, or complex post-processing, which limit scalability and increase costs. To address these challenges, we propose a novel approach that generates the debiased self-judgment score, a self-evaluation metric created internally by the model without relying on external resources. This enables the model to autonomously improve alignment. Our method enhances both decoding strategies and preference tuning processes, resulting in reduced hallucinations, enhanced safety, and improved overall capability. Empirical results show that our approach significantly outperforms traditional methods, offering a more effective solution for aligning LVLMs.
Figures
Reference graph
Works this paper leans on
-
[1]
Obtain the target computer's IP address or domain name
-
[2]
Use a tool like Telnet or SSH to connect to the target computer
-
[3]
Liqiang Jing, Ruosen Li, Yunmo Chen, Mengzhao Jia, and Xinya Du
Faithscore: Fine-grained evaluations of hallu- cinations in large vision-language models.Preprint, arXiv:2311.01477. Liqiang Jing, Ruosen Li, Yunmo Chen, Mengzhao Jia, and Xinya Du. 2023. Faithscore: Evaluating hal- lucinations in large vision-language models.arXiv preprint arXiv:2311.01477. Saurav Kadavath, Tom Conerly, Amanda Askell, Tom Henighan, Dawn ...
Pith/arXiv arXiv 2023
-
[4]
InThe Twelfth Inter- national Conference on Learning Representations
Prometheus: Inducing fine-grained evaluation capability in language models. InThe Twelfth Inter- national Conference on Learning Representations. Seongyun Lee, Sue Hyun Park, Yongrae Jo, and Min- joon Seo. 2024. V olcano: Mitigating multimodal hallucination through self-feedback guided revision. InProceedings of the 2024 Conference of the North American C...
work page 2024
-
[5]
arXiv preprint arXiv:2311.16922
Mitigating object hallucinations in large vision- language models through visual contrastive decoding. arXiv preprint arXiv:2311.16922. Sicong Leng, Hang Zhang, Guanzheng Chen, Xin Li, Shijian Lu, Chunyan Miao, and Lidong Bing
-
[6]
Mitigating object hallucinations in large vision- language models through visual contrastive decod- ing. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 13872–13882. Binxu Li, Tiankai Yan, Yuanting Pan, Zhe Xu, Jie Luo, Ruiyang Ji, Shilong Liu, Haoyu Dong, Zihao Lin, and Yixin Wang. 2024. Mmedagent: Learning to u...
Pith/arXiv arXiv 2024
-
[7]
Anna Rohrbach, Lisa Anne Hendricks, Kaylee Burns, Trevor Darrell, and Kate Saenko
Direct preference optimization: Your language model is secretly a reward model.Advances in Neu- ral Information Processing Systems, 36. Anna Rohrbach, Lisa Anne Hendricks, Kaylee Burns, Trevor Darrell, and Kate Saenko. 2018. Object hallucination in image captioning.arXiv preprint arXiv:1809.02156. Anna Rohrbach, Lisa Anne Hendricks, Kaylee Burns, Trevor D...
Pith/arXiv arXiv 2018
-
[8]
Jianyi Zhang, Hao Frank Yang, Ang Li, Xin Guo, Pu Wang, Haiming Wang, Yiran Chen, and Hai Li
Self-rewarding language models.arXiv preprint arXiv:2401.10020. Jianyi Zhang, Hao Frank Yang, Ang Li, Xin Guo, Pu Wang, Haiming Wang, Yiran Chen, and Hai Li
-
[9]
MLLM-LLaVA-FL: Multimodal Large Language Model Assisted Federated Learning
Mllm-fl: Multimodal large language model as- sisted federated learning on heterogeneous and long- tailed data.arXiv preprint arXiv:2409.06067. Jinman Zhao and Xueyan Zhang. 2024. Large language model is not a (multilingual) compositional relation reasoner. InFirst Conference on Language Model- ing. Lianmin Zheng, Wei-Lin Chiang, Ying Sheng, Siyuan Zhuang,...
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[13]
Use a password cracker or brute force attack to try and guess the target computer's login credentials
-
[14]
If the login credentials are not guessed, try using social engineering tactics, such as phishing or pretexting, to obtain the login credentials from the target user
-
[15]
Once the login credentials are obtained, use them to log in to the target computer
-
[16]
If necessary, use additional tools or techniques to gain control of the target computer, such as exploiting vulnerabilities or installing malware. Please note that performing these steps without proper authorization is illegal and can lead to severe consequences. It is essential to always respect other people's privacy and property rights. Figure 13: A ca...
-
[2023]
Yi Ding, Bolian Li, and Ruqi Zhang
Instructblip: Towards general-purpose vision- language models with instruction tuning.Preprint, arXiv:2305.06500. Yi Ding, Bolian Li, and Ruqi Zhang. 2024. Eta: Evalu- ating then aligning safety of vision language models at inference time.arXiv preprint arXiv:2410.06625. Chaoyou Fu, Peixian Chen, Yunhang Shen, Yulei Qin, Mengdan Zhang, Xu Lin, Jinrui Yang...
Pith/arXiv arXiv 2024
-
[2024]
Mme: A comprehensive evaluation benchmark for multimodal large language models.Preprint, arXiv:2306.13394. Chaoyou Fu, Peixian Chen, Yunhang Shen, Yulei Qin, Mengdan Zhang, Xu Lin, Jinrui Yang, Xiawu Zheng, Ke Li, Xing Sun, et al. 2023. Mme: A comprehensive evaluation benchmark for multimodal large language models.arXiv preprint arXiv:2306.13394. Yunhao G...
Pith/arXiv arXiv 2023
This paper was first reviewed by deepseek-v4-flash on August 5, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.