Pith. sign in

REVIEW 3 major objections 5 minor 60 references

Extract Free Dense Misalignment from CLIP

T0 review · 3 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read Removing the ReLU from CLIP's attention attributions makes negative gradients expose misaligned caption words, giving state-of-the-art zero-shot dense misalignment detection and a CLIPScore replacement that better tracks human alignment…

desk verdict Removing ReLU from CLIP attribution exposes a usable misalignment signal; the paper's global-score claims outrun its calibration. read the letter →

arxiv 2412.18404 v1 pith:SYB6H6M7 submitted 2024-12-24 cs.CV cs.LG

classification cs.CVcs.LG
keywords densemisalignmentdetectionCLIPinterpretabilitygradientattributionnegativerelevanceF-CLIPScorezero-shotevaluationtext-to-imagealignmentobjecthallucination
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper tries to establish that a frozen CLIP model, without any training or extra modules, can detect word-level mismatches between an image and its caption: after removing the ReLU activation from the standard GAE attribution rule, a text token whose attribution falls below a small negative threshold reliably marks a word that does not match the image. The authors show this across five benchmarks spanning natural and generated captions, objects, attributes, and relations, reporting state-of-the-art zero-shot localization accuracy and an F-CLIPScore aggregate that beats plain CLIPScore for detecting global mismatches. The motivation is practical: prior dense misalignment detectors rely on large vision-language models or human-annotated fine-tuning, while this method needs only one frozen CLIP forward-grad-backward pass, running tens of times faster than foundation-model pipelines.

What carries the argument

The load-bearing object is the modified GAE attribution rule $R^h_l = \nabla A^h_l \odot A^h_l$, where $\nabla A^h_l$ is the gradient of the CLIP score with respect to an attention map and $A^h_l$ is the attention map itself; removing the ReLU lets negative values flow. Word attributions $w_j$ are obtained by averaging token-level attributions across layers and along the [EOS] row, and a word is predicted misaligned when $w_j$ falls below a single fixed threshold $\epsilon$. F-CLIPScore then combines the global CLIP score with the summed negative misaligned attributions, acting as a drop-in replacement for CLIPScore.

What would settle it

Take a held-out set of captions where each misaligned word is known, and plot the distribution of the word-level attribution $w_j$ for misaligned versus aligned words per layer group; if the two distributions do not separate below a fixed epsilon consistently across domains, or if the optimal epsilon varies by more than the reported search range when tuned per dataset, the central heuristic is falsified.

Watch

Extended reading notes

Core claim

The paper's central claim is that the negative entries of the gradient-attention product $R^h_l = \nabla A^h_l \odot A^h_l$ carry a consistent semantic signal: for a misaligned caption, the text tokens that contradict the image receive proportionally negative attribution, so the decision rule $\mathrm{mis}(w_j)=1$ iff $w_j < \epsilon$ picks out exactly those words. The claim rests on removing the ReLU that prior relevance-propagation methods apply to gradients, which had discarded negative values as noise. Supported by ablations showing full-gradient attributions outperform negative-only variants, the paper asserts that both positive and negative gradients are needed and that averaging attribution maps across the final layers preserves this signal. It further claims that aggregating only the negative misaligned attributions into $(1-\mathrm{score})\cdot\sum_j \mathrm{mis}(w_j)\cdot w_j$ yields a global score, F-CLIPScore, that better correlates with human alignment judgments than the plain CLIP similarity score.

Load-bearing premise

The claim breaks down if negative attribution values do not carry a uniform 'this word is wrong' signal across layers and domains, since the method relies on one fixed threshold epsilon to separate bad words from good words across all benchmarks.

Editorial extensions

If this is right

  • Misalignment labels can be extracted from any frozen CLIP model in one backward pass, removing the need for reference captions, object detectors, or fine-tuned reward models.
  • F-CLIPScore improves global image-text alignment estimation over CLIPScore, especially on hard negatives where added words inflate plain similarity, giving a cheap upgrade for captioning and text-to-image evaluation.
  • The method scales with backbone quality: larger CLIP variants and pretraining on larger alt-text corpora improve both localization accuracy and misalignment classification, pointing to continued gains from better CLIP checkpoints.
  • Because the same detector can run at tens of frames per second, it could be used as real-time feedback for generation loops or large-scale data cleaning rather than post-hoc analysis.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Where the paper stops with a fixed epsilon, a natural extension is to calibrate the threshold per domain or per caption-length bucket; the benchmark-wide CLIPScores vary, so a per-domain epsilon might lift performance on very low-score inputs.
  • The same 'negative attribution' reading could transfer to other contrastive dual encoders built on attention, not just CLIP, and to other tasks like VQA alignment or retrieval reranking where a token-level mismatch is the failure mode.
  • The documented failure cases (backgrounds, small objects, adjectives) suggest the signal is biased toward salient foreground nouns; combining the attribution map with a vision backbone that is stronger on small objects, or with an upweighted token-level prior, is a testable path to fix the bias.
  • F-CLIPScore's degraded behavior at very low CLIPScore, where gradients spread across tokens, implies that applying it to noisy alt-text (as opposed to well-aligned generated captions) would need a fallback or a gating function on the global score.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The paper proposes CLIP4DM, a zero-shot method for dense misalignment detection between images and text. The method computes per-token attribution scores by removing the ReLU from the gradient-weighted attention aggregation of GAE (Eq. 8), so that negative attribution values can flow. Word-level attributions are thresholded (Eq. 10) to flag misaligned words, and F-CLIPScore (Eq. 11) aggregates these into a global alignment score. The authors evaluate on FOIL, nocaps-FOIL, HAT, SeeTRUE-Feedback, Rich-HF, MMVP, and SugarCrepe, reporting state-of-the-art zero-shot localization accuracy (e.g., 0.836 LA on FOIL with ViT-H/14) and competitive global metrics, while also providing ablations of the attribution formulation, layer choice, and F-CLIPScore components. The central claim is that negative gradients of individual text tokens in a frozen CLIP model indicate misalignment, and that thresholding these attributions yields a general-purpose detector.

Significance. If the central heuristic holds, the paper contributes a cheap, training-free dense misalignment detector that avoids the heavy inference cost of foundation-model pipelines and the annotation cost of fine-tuned approaches. The experimental breadth is a genuine strength: the method is evaluated on multiple benchmarks spanning natural and generated images/text, single and multiple misalignments, and object, attribute, relation, and action errors. The ablations isolate the contribution of removing ReLU, the choice of layers, and the composition of F-CLIPScore, and the code is publicly released. The qualitative analyses honestly document both strengths (entity-level objects, intangible objects) and limitations (backgrounds, small objects, adjectives). However, the significance is conditional: the universal decision rule in Eq. (10) depends on a threshold that is tuned per benchmark and fails in a regime the paper itself identifies as important.

major comments (3)
  1. [Token Aggregation and F-CLIPScore (Eq. 10), Table 5] The central decision rule mis(w_j)=1 if w_j < epsilon assumes a single threshold separates misaligned from aligned words across all inputs. Yet the paper uses different thresholds on different benchmarks: epsilon=-0.00005 for FOIL/nocaps-FOIL (Section Experiments) and epsilon=-0.00001 for Rich-HF (Tables 5 and 6). Table 5 shows that changing epsilon from -0.00001 to -0.00005 on Rich-HF swings F1 from 0.427 to 0.314, with recall dropping from 0.516 to 0.231. This demonstrates that the reported state-of-the-art numbers rest on benchmark-specific threshold selection, not on a scale-invariant signal. The paper should either derive a principled way to set epsilon (e.g., input-dependent normalization or a statistical criterion) or explicitly scope the claims to the tuned setting; without this, the 'uniform signal' interpretation is not supported.
  2. [Appendix D and Figure 13] The paper's own analysis undermines the drop-in replacement claim for F-CLIPScore. In Appendix D, the authors state that when CLIPScore is extremely low, gradients distribute across tokens so that few fall below epsilon, causing F-CLIPScore to assign high alignment to clearly misaligned captions (e.g., 'A car an two men...' is ranked top 3% by F-CLIPScore). Figure 13a shows that F-CLIPScore's Pearson correlation with ground-truth alignment is worst in the [0.0, 0.2) group, which is precisely the regime a misalignment detector must handle. The manuscript suggests applying F-CLIPScore selectively to samples with typical CLIPScore values, which is a severe qualification of the general 'drop-in replacement' claim. The authors should quantify what fraction of real-world inputs fall in the failing regime and either fix the metric or clearly state the restricted applicability.
  3. [Allowing Negative Gradient Flow (Eq. 8), Ablation Table 8] The paper's core premise—that negative entries of R_l^h carry a uniform semantic signal for misalignment—is an empirical heuristic without a mechanistic derivation. Table 8 shows that using both positive and negative gradients outperforms retaining only negative gradients, which weakens the sign-specific interpretation: if negative gradients alone are the misalignment signal, it is unclear why discarding positive gradients hurts performance. The authors should provide a diagnostic (e.g., distributions of attribution values for aligned vs. misaligned words across score bins, or a per-sample analysis) to show that the negative-gradient signal is not confounded by gradient scale or by interactions with positive gradients. Without such evidence, the claim that negative gradients 'indicate misalignment' is only supported by benchmark aggregates under tuned thresholds.
minor comments (5)
  1. [Analysis (typo)] The section heading 'Comparsion with Baselines' is misspelled; it should be 'Comparison with Baselines'.
  2. [Table 1 and Table 11] The column labels 'Dense Misalign' and 'Global Misalign' are confusing: it is not immediately clear that they refer to the type of evaluation (dense detection vs. global score) rather than the number of misaligned words. Please clarify in the caption or use more descriptive names.
  3. [Table 5] The epsilon values are run into the model names (e.g., 'Ours (ViT-H/14)epsilon=-0.00001'); add a space or present epsilon as a separate column for readability.
  4. [Appendix D, Figure 15] The example 'A car an two men standing in front of it' contains a grammatical error that should be corrected if it is quoted verbatim; otherwise please mark it as a transcription of the dataset example.
  5. [Related Work] The related-work section would benefit from a brief discussion of whether the negative-gradient hypothesis has any precedent in gradient-based explanation methods beyond GAE, since the paper frames this as a novel interpretation.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity; the derivation is self-contained and evaluated on external benchmarks.

full rationale

The paper's derivation chain is empirically testable rather than definitionally circular. The method computes CLIP gradient-attribution maps (Eq. 5), removes the ReLU to retain negative gradients (Eq. 8), averages across layers (Eq. 9), thresholds word attributions (Eq. 10), and aggregates them into F-CLIPScore (Eq. 11). None of these equations defines the predicted misalignment label in terms of the benchmark ground-truth labels; the claim that negative attributions indicate misalignment is a heuristic validated against external human- or rule-labeled datasets such as FOIL, nocaps-FOIL, HAT, SeeTRUE-Feedback, and Rich-HF. The only tunable quantity, epsilon, is selected on development splits and reported on held-out test sets, which is standard hyperparameter selection rather than fitting the target labels into the method's definition. There is no load-bearing self-citation: the paper cites GAE as inspiration but explicitly deviates from it, and its ablations compare variants on external metrics. The Appendix D observation that F-CLIPScore degrades at extremely low CLIPScore is a stated limitation and a correctness/robustness concern, not evidence of circularity. The dataset-specific epsilon values (e.g., -0.00001 on Rich-HF vs. the default -0.00005) indicate that the decision threshold is not perfectly calibrated across regimes, but this is a hyperparameter-tuning caveat rather than a reduction of the prediction to its input by construction. Overall, the paper does not rename a known result, import a uniqueness claim from the authors' own prior work, or fit a parameter to the exact quantity it then claims to predict.

Assumptions & free parameters 3 free parameters · 4 assumptions · 0 invented entities

No new physical or model entities are introduced; F-CLIPScore is a metric, not a postulated entity. The method's dependence on the negative-attribution heuristic and tuned threshold epsilon is captured in the free parameters and axioms.

free parameters (3)
  • epsilon (misalignment threshold) = -0.00005 default; -0.00001 for Rich-HF F1/correlation
    Tuned on Rich-HF dev set and a FOIL training subset; different values used per metric in Table 5-6.
  • tilde_l (starting layer for attribution accumulation) = 10 (ViT-B/32), 22 (ViT-H/14)
    Chosen to use the final three text encoder layers; ablation in Figure 3 shows multi-layer accumulation helps.
  • number of accumulated layers = 3
    Implicit in tilde_l settings; reported as best in ablation, no separate tuning details.
assumptions (4)
  • domain assumption Negative values in grad(score) * attention carry a semantically meaningful misalignment signal
    Core heuristic introduced in Eq. (8); not derived from CLIP's contrastive objective; empirical evidence only.
  • domain assumption A single global epsilon can separate aligned from misaligned words across domains
    Thresholding in Eq. (10); the paper tunes epsilon per benchmark/metric, so transferability is an assumption.
  • domain assumption Attribution averaging over layers preserves interpretability of signed gradients
    Eq. (9) averages layer attributions to avoid ambiguous matrix products; no formal justification.
  • standard math Text tokenization and [EOS] pooling in CLIP provide a sufficient representation for alignment scoring
    Standard CLIP architecture (Eq. 1-4); inherited from pretrained model, not introduced by the paper.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Extract Free Dense Misalignment from CLIP." pith.science (2026). https://pith.science/paper/SYB6H6M7

@misc{pith2026241218404,
  author       = {Pith},
  title        = {Pith review of: Extract Free Dense Misalignment from CLIP},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/SYB6H6M7}},
  note         = {Machine review of arXiv:2412.18404}
}
read the original abstract

Recent vision-language foundation models still frequently produce outputs misaligned with their inputs, evidenced by object hallucination in captioning and prompt misalignment in the text-to-image generation model. Recent studies have explored methods for identifying misaligned elements, aiming not only to enhance interpretability but also to improve model performance. However, current approaches primarily rely on large foundation models in a zero-shot manner or fine-tuned models with human annotations, which limits scalability due to significant computational costs. This work proposes a novel approach, dubbed CLIP4DM, for detecting dense misalignments from pre-trained CLIP, specifically focusing on pinpointing misaligned words between image and text. We carefully revamp the gradient-based attribution computation method, enabling negative gradient of individual text tokens to indicate misalignment. We also propose F-CLIPScore, which aggregates misaligned attributions with a global alignment score. We evaluate our method on various dense misalignment detection benchmarks, covering various image and text domains and misalignment types. Our method demonstrates state-of-the-art performance among zero-shot models and competitive performance with fine-tuned models while maintaining superior efficiency. Our qualitative examples show that our method has a unique strength to detect entity-level objects, intangible objects, and attributes that can not be easily detected for existing works. We conduct ablation studies and analyses to highlight the strengths and limitations of our approach. Our code is publicly available at https://github.com/naver-ai/CLIP4DM.

Figures

Figures reproduced from arXiv: 2412.18404 by the authors.

Figure 1
Figure 1. Overview of our work. CLIPScore indicates the alignment between the image and text in a single scalar score, limiting the interpretation of the score. Our approach extracts both positive and negative attributions to identify misaligned tokens between the image and text caption. order to develop a more reliable system. To measure the alignment between an image and text, the similarity score from CLIP (Radford et al. … view at source ↗
Figure 2
Figure 2. Qualitative examples on FOIL, nocaps-FOIL, and Rich-HF datasets. Misaligned words are highlighted in red in captions paired with images. Note that misaligned words may not exist. For predicted misaligned words, correct words are shown in green and incorrect words in red. If our model predicts that there are no misaligned words, it is indicated as ‘-’. Method FPS LA AP occlusion-based 0.6 0.566 0.748 gradient-based ∇… view at source ↗
Figure 3
Figure 3. Ablation on the number of text encoder layers used for attribution calculation on nocaps-FOIL dataset. Dataset Method AP Pearson Spearman nocaps-FOIL score P v,t 0.722 - - j mis(wj ) · wj 0.776 - - F-CLIPScore 0.794 - - Rich-HF score P v,t - 0.171 0.085 j mis(wj ) · wj - 0.352 0.419 F-CLIPScore - 0.368 0.433 [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (12 more)
Figure 4
Figure 4. Figure 4: Qualitative examples compared to ALOHa on HAT dataset. Our method demonstrates improved robust￾ness in various misalignment types. A street sign that reads broadway on a traffic light. MiniGPT-v2: The word 'broadway' on the sign does not align with the image. The image…
Figure 5
Figure 5. Figure 5: Qualitative examples compared to MiniGPT￾v2 on SeeTRUE-Feedback dataset. MiniGPT-v2 generates lengthy and unformalized responses that are hard to parse into misaligned words for most examples. Metric NOUN PROPN VERB ADV ADJ NUM ADP F1 0.393 0.312 0.301 0.258 0.258 0.13…
Figure 6
Figure 6. Figure 6: Box plots of CLIPScore for the dense misalign￾ment detection benchmark datasets. We measure scores using ViT-H/14 trained on LAION-2B (Schuhmann et al. 2022). As shown in [PITH_FULL_IMAGE:figures/full_fig_p011_6.png]
Figure 7
Figure 7. Figure 7: Qualitative examples on FOIL. A fancy red beverage with milk wedge on rim. Ours: wedge The light green kitchen has pancake colored cabinets and tile floors. Ours: green Ours: diary A juice of perfume is sitting on a table. Ours: table A white baking dish with a large b…
Figure 8
Figure 8. Figure 8: Qualitative examples on nocaps-FOIL. jects. For experiments, we utilize the OpenAI ViT-L/14 vari￾ant, following the configuration used in MMVP. F-CLIPScore demonstrates substantial improvements on the MMVP dataset, with an overall gain of over 6.6%p as shown in [PITH_…
Figure 9
Figure 9. Figure 9: Qualitative examples on HAT. A large black bear walking down a steep, rocky, wooded hill in a lush green forest. Ours: lush green forest A woman and her young son, possibly playing on a soccer field, holding hands and possibly wearing glasses and a hat. Ours: glasses O…
Figure 10
Figure 10. Figure 10: False positive cases on HAT. Ours: rocks Ours: grass Ours: snow Ours: beer two dogs running through a field of grass in front of an overflowing storm cloud toy figurine of white dragon standing on rocks with white background A lovely dinner and a bottle of beer a blac…
Figure 11
Figure 11. Figure 11: Qualitative examples on SeeTRUE-Feedback [PITH_FULL_IMAGE:figures/full_fig_p013_11.png]
Figure 12
Figure 12. Figure 12: Qualitative examples on Rich-HF. Model Orientation Direction Presence State Condition Quantity Count Positional Relational Color Appearance Structural Physical Texts Viewpoint Perspective MMVP Average CLIPScore 6.7 13.3 20.0 13.3 6.7 53.3 26.7 6.7 13.3 17.8 F-CLIPScor…
Figure 13
Figure 13. Figure 13: Analysis of group-wise Pearson correlation co￾efficients and histogram distributions of ground truth alignment scores in Rich-HF dataset. We conduct anal￾ysis by dividing the ground truth alignment scores into five groups. This phenomenon highlights a limitation of th…
Figure 16
Figure 16. Figure 16: Qualitative examples on nocaps-FOIL sorted by F-CLIPScore in ascending order. The large jacket is moving along on the mulch. CLIPScore: 0.236(top 99.4%) F-CLIPScore: -6e-05(top 15%) Multiple people are looking at a traffic light in a showroom. CLIPScore: 0.299(top 98.…
Figure 15
Figure 15. Figure 15: Qualitative examples on nocaps-FOIL sorted by F-CLIPScore in descending order. A red wheel, yellow pear and green wheel lined up on a reflective surface. CLIPScore: 0.891(top 10.3%) F-CLIPScore: -0.000498(top 99%) Potted pillow with red flowers next to garden gnome wi…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

60 extracted references · 53 canonical work pages

  1. [1]

    Abnar, S.; and Zuidema, W. 2020. Quantifying Attention Flow in Transformers. In ACL, 4190--4197. Online: Association for Computational Linguistics

  2. [2]

    Arras, L.; Montavon, G.; M \"u ller, K.-R.; and Samek, W. 2017. Explaining Recurrent Neural Network Predictions in Sentiment Analysis. In Proceedings of the 8th Workshop on Computational Approaches to Subjectivity, Sentiment and Social Media Analysis, 159--168. Copenhagen, Denmark: ACL

  3. [3]

    Bach, S.; Binder, A.; Montavon, G.; Klauschen, F.; M \"u ller, K.-R.; and Samek, W. 2015. On pixel-wise explanations for non-linear classifier decisions by layer-wise relevance propagation. PLoS ONE, 10(7): e0130140

  4. [4]

    R.; Angeli, G.; Potts, C.; and Manning, C

    Bowman, S. R.; Angeli, G.; Potts, C.; and Manning, C. D. 2015. A large annotated corpus for learning natural language inference. In EMNLP. Association for Computational Linguistics

  5. [5]

    Carion, N.; Massa, F.; Synnaeve, G.; Usunier, N.; Kirillov, A.; and Zagoruyko, S. 2020. End-to-end object detection with transformers. In ECCV, 213--229. Springer

  6. [6]

    Castro, S.; Ignat, O.; and Mihalcea, R. 2023. Scalable Performance Analysis for Vision-Language Models. In Proceedings of the 12th Joint Conference on Lexical and Computational Semantics (* SEM 2023), 284--294

  7. [7]

    Chan, D.; Myers, A.; Vijayanarasimhan, S.; Ross, D.; and Canny, J. 2023. IC 3: Image Captioning by Committee Consensus. In EMNLP, 8975--9003. Singapore: Association for Computational Linguistics

  8. [8]

    Chefer, H.; Alaluf, Y.; Vinker, Y.; Wolf, L.; and Cohen-Or, D. 2023. Attend-and-Excite: Attention-Based Semantic Guidance for Text-to-Image Diffusion Models. ACM Trans. Graph., 42(4)

Show all 60 references
  1. [9]

    Chefer, H.; Gur, S.; and Wolf, L. 2021 a . Generic Attention-model Explainability for Interpreting Bi-Modal and Encoder-Decoder Transformers. In ICCV, 387--396. IEEE

  2. [10]

    Chefer, H.; Gur, S.; and Wolf, L. 2021 b . Transformer Interpretability Beyond Attention Visualization. In CVPR, 782--791. Computer Vision Foundation / IEEE

  3. [11]

    Chen, J.; Zhu, D.; Shen, X.; Li, X.; Liu, Z.; Zhang, P.; Krishnamoorthi, R.; Chandra, V.; Xiong, Y.; and Elhoseiny, M. 2023. Minigpt-v2: large language model as a unified interface for vision-language multi-task learning. arXiv preprint arXiv:2310.09478

  4. [12]

    Cherti, M.; Beaumont, R.; Wightman, R.; Wortsman, M.; Ilharco, G.; Gordon, C.; Schuhmann, C.; Schmidt, L.; and Jitsev, J. 2023. Reproducible scaling laws for contrastive language-image learning. In CVPR, 2818--2829

  5. [13]

    M.; Garg, R.; Anderson, P.; Krishna, R.; Bansal, M.; Pont-Tuset, J.; and Wang, S

    Cho, J.; Hu, Y.; Baldridge, J. M.; Garg, R.; Anderson, P.; Krishna, R.; Bansal, M.; Pont-Tuset, J.; and Wang, S. 2024. Davidsonian Scene Graph: Improving Reliability in Fine-grained Evaluation for Text-to-Image Generation. In ICLR

  6. [14]

    Deng, J.; Dong, W.; Socher, R.; Li, L.-J.; Li, K.; and Fei-Fei, L. 2009. Imagenet: A large-scale hierarchical image database. In CVPR, 248--255. Ieee

  7. [15]

    Gordon, B.; Bitton, Y.; Shafir, Y.; Garg, R.; Chen, X.; Lischinski, D.; Cohen-Or, D.; and Szpektor, I. 2024. Mismatch quest: Visual and textual feedback for image-text misalignment. In ECCV, 310--328. Springer

  8. [16]

    Goyal, Y.; Mohapatra, A.; Parikh, D.; and Batra, D. 2016. Towards transparent ai systems: Interpreting visual question answering models. In ICML 2016 Workshop on Visualization for Deep Learning

  9. [17]

    Gunjal, A.; Yin, J.; and Bas, E. 2024. Detecting and preventing hallucinations in large vision language models. In AAAI, volume 38, 18135--18143

  10. [18]

    Hessel, J.; Holtzman, A.; Forbes, M.; Le Bras, R.; and Choi, Y. 2021. CLIPS core: A Reference-free Evaluation Metric for Image Captioning. In EMNLP, 7514--7528. Online and Punta Cana, Dominican Republic: Association for Computational Linguistics

  11. [19]

    Hsieh, C.-Y.; Zhang, J.; Ma, Z.; Kembhavi, A.; and Krishna, R. 2023. SUGARCREPE: fixing hackable benchmarks for vision-language compositionality. In NeurIPS, 31096--31116

  12. [20]

    Hu, Y.; Liu, B.; Kasai, J.; Wang, Y.; Ostendorf, M.; Krishna, R.; and Smith, N. A. 2023. Tifa: Accurate and interpretable text-to-image faithfulness evaluation with question answering. In ICCV, 20406--20417

  13. [21]

    Kirstain, Y.; Polyak, A.; Singer, U.; Matiana, S.; Penna, J.; and Levy, O. 2023. Pick-a-Pic: an open dataset of user preferences for text-to-image generation. In NeurIPS, 36652--36663

  14. [22]

    Lewis, M.; Liu, Y.; Goyal, N.; Ghazvininejad, M.; Mohamed, A.; Levy, O.; Stoyanov, V.; and Zettlemoyer, L. 2020. BART : Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, Translation, and Comprehension. In ACL, 7871--7880. Online: Association for Comp...

  15. [23]

    Li, J.; Li, D.; Xiong, C.; and Hoi, S. C. H. 2022. BLIP: Bootstrapping Language-Image Pre-training for Unified Vision-Language Understanding and Generation. In ICML, volume 162 of Proceedings of Machine Learning Research, 12888--12900. PMLR

  16. [24]

    X.; and Wen, J.-R

    Li, Y.; Du, Y.; Zhou, K.; Wang, J.; Zhao, W. X.; and Wen, J.-R. 2023. Evaluating Object Hallucination in Large Vision-Language Models. In EMNLP, 292--305

  17. [25]

    Liang, Y.; He, J.; Li, G.; Li, P.; Klimovskiy, A.; Carolan, N.; Sun, J.; Pont-Tuset, J.; Young, S.; Yang, F.; et al. 2024. Rich human feedback for text-to-image generation. In CVPR, 19401--19411

  18. [26]

    J.; Wang, B.; Li, W.; and Shou, M

    Lin, Y.; He, C.; Wang, A. J.; Wang, B.; Li, W.; and Shou, M. Z. 2024. Parrot captions teach clip to spot text. In ECCV, 368--385. Springer

  19. [27]

    Liu, S.; Zeng, Z.; Ren, T.; Li, F.; Zhang, H.; Yang, J.; Jiang, Q.; Li, C.; Yang, J.; Su, H.; Zhu, J.; and Zhang, L. 2024. Grounding DINO: Marrying DINO with Grounded Pre-training for Open-Set Object Detection. In ECCV, 38--55. Cham: Springer Nature Switzerland. ISBN 978-3-031-72970-6

  20. [28]

    M.; and Lee, S

    Lundberg, S. M.; and Lee, S. 2017. A Unified Approach to Interpreting Model Predictions. In NeurIPS, 4765--4774

  21. [29]

    O.; Gandhi, M.; Gao, I.; and Krishna, R

    Ma, Z.; Hong, J.; Gul, M. O.; Gandhi, M.; Gao, I.; and Krishna, R. 2023. CREPE: Can Vision-Language Foundation Models Reason Compositionally? In CVPR, 10910--10921

  22. [30]

    Montavon, G.; Lapuschkin, S.; Binder, A.; Samek, W.; and M \"u ller, K.-R. 2017. Explaining nonlinear classification decisions with deep taylor decomposition. Pattern recognition, 65: 211--222

  23. [31]

    H.; and Lim, S.-N

    Mukhoti, J.; Lin, T.-Y.; Poursaeed, O.; Wang, R.; Shah, A.; Torr, P. H.; and Lim, S.-N. 2023. Open Vocabulary Semantic Segmentation with Patch Aligned Contrastive Learning. In CVPR, 19413--19423. IEEE Computer Society

  24. [32]

    Nikolaus, M.; Salin, E.; Ayache, S.; Fourtassi, A.; and Favre, B. 2022. Do Vision-and-Language Transformers Learn Grounded Predicate-Noun Dependencies? In EMNLP, 1538--1555

  25. [33]

    Paiss, R.; Ephrat, A.; Tov, O.; Zada, S.; Mosseri, I.; Irani, M.; and Dekel, T. 2023. Teaching CLIP to Count to Ten. In ICCV, 3147--3157. IEEE

  26. [34]

    Petryk, S.; Chan, D.; Kachinthaya, A.; Zou, H.; Canny, J.; Gonzalez, J.; and Darrell, T. 2024. ALOHa: A New Measure for Hallucination in Captioning Models. In NAACL, 342--357

  27. [35]

    Pezzelle, S. 2023. Dealing with Semantic Underspecification in Multimodal NLP. In ACL, 12098--12112

  28. [36]

    W.; Hallacy, C.; Ramesh, A.; Goh, G.; Agarwal, S.; Sastry, G.; Askell, A.; Mishkin, P.; Clark, J.; Krueger, G.; and Sutskever, I

    Radford, A.; Kim, J. W.; Hallacy, C.; Ramesh, A.; Goh, G.; Agarwal, S.; Sastry, G.; Askell, A.; Mishkin, P.; Clark, J.; Krueger, G.; and Sutskever, I. 2021. Learning Transferable Visual Models From Natural Language Supervision. In ICML, volume 139, 8748--8763

  29. [37]

    Rassin, R.; Ravfogel, S.; and Goldberg, Y. 2022. DALLE-2 is Seeing Double: Flaws in Word-to-Concept Mapping in Text2Image Models. In Proceedings of the Fifth BlackboxNLP Workshop on Analyzing and Interpreting Neural Networks for NLP, 335--345

  30. [38]

    Reimers, N.; and Gurevych, I. 2019. Sentence- BERT : Sentence Embeddings using S iamese BERT -Networks. In EMNLP, 3982--3992. Hong Kong, China: Association for Computational Linguistics

  31. [39]

    T.; Singh, S.; and Guestrin, C

    Ribeiro, M. T.; Singh, S.; and Guestrin, C. 2016. ``Why Should I Trust You?": Explaining the Predictions of Any Classifier. In SIGKDD, 1135--1144. ACM

  32. [40]

    A.; Burns, K.; Darrell, T.; and Saenko, K

    Rohrbach, A.; Hendricks, L. A.; Burns, K.; Darrell, T.; and Saenko, K. 2018. Object Hallucination in Image Captioning. In EMNLP, 4035--4045. Brussels, Belgium: Association for Computational Linguistics

  33. [41]

    W.; Wightman, R.; Cherti, M.; Coombes, T.; Katta, A.; Mullis, C.; Wortsman, M.; et al

    Schuhmann, C.; Beaumont, R.; Vencu, R.; Gordon, C. W.; Wightman, R.; Cherti, M.; Coombes, T.; Katta, A.; Mullis, C.; Wortsman, M.; et al. 2022. LAION-5B: An open large-scale dataset for training next generation image-text models. In NeurIPS

  34. [42]

    R.; Cogswell, M.; Das, A.; Vedantam, R.; Parikh, D.; and Batra, D

    Selvaraju, R. R.; Cogswell, M.; Das, A.; Vedantam, R.; Parikh, D.; and Batra, D. 2017. Grad-CAM: Visual Explanations from Deep Networks via Gradient-Based Localization. In ICCV, 618--626. IEEE Computer Society

  35. [43]

    Shekhar, R.; Pezzelle, S.; Klimovich, Y.; Herbelot, A.; Nabi, M.; Sangineto, E.; and Bernardi, R. 2017. FOIL it! Find One mismatch between Image and Language caption. In ACL, 255--265. Vancouver, Canada: Association for Computational Linguistics

  36. [44]

    Tong, S.; Liu, Z.; Zhai, Y.; Ma, Y.; LeCun, Y.; and Xie, S. 2024. Eyes Wide Shut? Exploring the Visual Shortcomings of Multimodal LLMs. In CVPR, 9568--9578

  37. [45]

    N.; Kaiser, L.; and Polosukhin, I

    Vaswani, A.; Shazeer, N.; Parmar, N.; Uszkoreit, J.; Jones, L.; Gomez, A. N.; Kaiser, L.; and Polosukhin, I. 2017. Attention is All you Need. In NeurIPS, 5998--6008

  38. [46]

    Wang, P.; Yang, A.; Men, R.; Lin, J.; Bai, S.; Li, Z.; Ma, J.; Zhou, C.; Zhou, J.; and Yang, H. 2022. OFA: Unifying Architectures, Tasks, and Modalities Through a Simple Sequence-to-Sequence Learning Framework. In ICML, volume 162 of Proceedings of Machine Learning Research, 2...

  39. [47]

    G.; and Wilson, A

    Wang, Y.; Rudner, T. G.; and Wilson, A. G. 2023. Visual explanations of image-text representations via multi-modal information bottleneck attribution. In NeurIPS, volume 36, 16009--16027

  40. [48]

    Xiao, W.; Huang, Z.; Gan, L.; He, W.; Li, H.; Yu, Z.; Jiang, H.; Wu, F.; and Zhu, L. 2024. Detecting and mitigating hallucination in large vision language models via fine-grained ai feedback. arXiv preprint, arXiv:2404.14233

  41. [49]

    Yan, S.; Bai, M.; Chen, W.; Zhou, X.; Huang, Q.; and Li, L. E. 2024. ViGoR: Improving Visual Grounding of Large Vision Language Models with Fine-Grained Reward Modeling. In ECCV, 37--53. Cham: Springer Nature Switzerland. ISBN 978-3-031-73030-6

  42. [50]

    Yao, L.; Huang, R.; Hou, L.; Lu, G.; Niu, M.; Xu, H.; Liang, X.; Li, Z.; Jiang, X.; and Xu, C. 2022. FILIP: Fine-grained Interactive Language-Image Pre-Training. In ICLR

  43. [51]

    Y.; Luong, T.; Baid, G.; Wang, Z.; Vasudevan, V.; Ku, A.; Yang, Y.; Ayan, B

    Yu, J.; Xu, Y.; Koh, J. Y.; Luong, T.; Baid, G.; Wang, Z.; Vasudevan, V.; Ku, A.; Yang, Y.; Ayan, B. K.; Hutchinson, B.; Han, W.; Parekh, Z.; Li, X.; Zhang, H.; Baldridge, J.; and Wu, Y. 2022. Scaling Autoregressive Models for Content-Rich Text-to-Image Generation. TMLR

  44. [52]

    Yu, T.; Yao, Y.; Zhang, H.; He, T.; Han, Y.; Cui, G.; Hu, J.; Liu, Z.; Zheng, H.-T.; Sun, M.; et al. 2024. Rlhf-v: Towards trustworthy mllms via behavior alignment from fine-grained correctional human feedback. In CVPR, 13807--13816

  45. [53]

    Yuksekgonul, M.; Bianchi, F.; Kalluri, P.; Jurafsky, D.; and Zou, J. 2023. When and why vision-language models behave like bags-of-words, and what to do about it? In ICLR

  46. [54]

    D.; and Fergus, R

    Zeiler, M. D.; and Fergus, R. 2014. Visualizing and understanding convolutional networks. In ECCV, 818--833. Springer

  47. [55]

    Zhang, B.; Zhang, P.; Dong, X.; Zang, Y.; and Wang, J. 2025. Long-clip: Unlocking the long-text capability of clip. In European Conference on Computer Vision, 310--325. Springer

  48. [56]

    Zhao, C.; Wang, K.; Zeng, X.; Zhao, R.; and Chan, A. B. 2024. Gradient-based visual explanation for transformer-based clip. In ICML, 61072--61091. PMLR

  49. [57]

    C.; and Dai, B

    Zhou, C.; Loy, C. C.; and Dai, B. 2022. Extract free dense labels from clip. In ECCV, 696--712. Springer

  50. [58]

    Zhu, D.; Chen, J.; Haydarov, K.; Shen, X.; Zhang, W.; and Elhoseiny, M. 2024. Chat GPT Asks, BLIP -2 Answers: Automatic Questioning Towards Enriched Visual Descriptions. TMLR

  51. [59]

    , " * write output.state after.block = add.period write newline

    ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all...

  52. [60]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.