[CVPR 2026] VisPrompt: Anchoring Prompt Learning to Visual Truth to Defeat Label Noise

Seeing is Believing: Robust Vision-Guided Cross-Modal Prompt Learning under Label Noise

Summary
Problem
Method
Results
Takeaways
Abstract

This paper introduces VisPrompt, a robust vision-guided prompt learning framework designed to mitigate the impact of label noise in Vision-Language Models (VLMs). By employing cross-modal attention and FiLM-based modulation, it adaptively injects stable visual semantics into learnable prompts, achieving state-of-the-art robustness on seven benchmarks and outperforming existing methods like NLPrompt and JoAPR.

TL;DR

Prompt learning has revolutionized the adaptation of Vision-Language Models (VLMs), but it has a "glass jaw": it breaks easily under label noise. VisPrompt fixes this by shifting the guidance of prompt optimization from the often-corrupted text labels to the inherently reliable visual content of the image. By using cross-modal attention and gated modulation, it achieves superior robustness, maintaining high performance even when 75% of the training labels are wrong.

Problem: The Fragility of Soft Prompts

In the standard paradigm (like CoOp), we keep the VLM backbone (e.g., CLIP) frozen and only train a few "soft prompt" tokens. These tokens are like a sponge—they absorb information from the gradients to bridge the gap between the pre-trained model and a specific task.

However, when labels are noisy (e.g., an image of a "dog" labeled as "cat"), the prompt is forced to learn an incorrect mapping. Because the backbone is frozen, the prompt tokens have no choice but to "memorize" the noise to minimize the loss, leading to a catastrophic drop in generalization.

Methodology: Seeing is Believing

The authors' core insight is simple yet powerful: The image doesn't lie, even if the label does. Even if a sample is mislabeled, the image contains the correct semantic features.

1. Cross-Modal Visual Conditioning

Unlike previous methods that treat prompts as static or purely text-driven, VisPrompt uses Cross-modal Attention. It treats the learnable prompt tokens as "queries" to extract relevant "keys" and "values" from the local visual patches of the image. This "grounds" the prompt in actual visual evidence.

2. FiLM-based Robust Modulation

Not all visual cues are of equal quality. To prevent irrelevant visual information from corrupting the prompt, VisPrompt introduces a FiLM (Feature-wise Linear Modulation) gating mechanism.

  • Scale and Shift: Adaptive parameters modulate the prompt embeddings.
  • Gating: A sigmoid-based gate decides how much visual information should influence the prompt based on the current instance's reliability.

VisPrompt Overall Architecture Figure: The VisPrompt architecture, showing how visual features are projected and injected into the text-side prompt through attention and FiLM gating.

Experiments: Superior Resilience

VisPrompt was tested against heavyweights like NLPrompt and JoAPR across seven datasets.

  • Quantitative Dominance: On the OxfordPets dataset, VisPrompt maintains near-90% accuracy across almost all noise levels, while other methods plummet as noise increases.
  • Extreme Noise: In 75% noise scenarios (where 3 out of 4 samples are wrong), VisPrompt remains functional, outperforming traditional robust methods by massive margins (up to 15% on EuroSAT).

Performance Comparison Table: Accuracy comparison under Symmetric and Asymmetric noise. Note the stability of VisPrompt in high-noise columns (50% - 75%).

Why It Works: A Theoretical Perspective

The authors provide a theoretical proof (Theorem 1) demonstrating that the deviation of the noise-trained prompt from its "ideal" clean counterpart is bounded. By suppressing irrelevant visual tokens at the attention stage and using Lipschitz-continuous FiLM modulation, the framework ensures that even if the supervision is noisy, the update signal remains anchored to the stable visual manifold.

Conclusion & Insights

VisPrompt represents a pivot in the "Noisy Label Learning" field. Instead of just trying to "clean" the labels (which is difficult and error-prone), it utilizes the cross-modal redundancy of VLMs.

Takeaway for Practitioners: When adapting VLMs to messy, real-world data, don't just rely on your labels. Let the model's own visual understanding guide its learning process. The future of robust AI lies in this kind of self-correcting, multimodal feedback loop.

Limitations

  • Computational Overhead: The FiLM block adds a small inference cost.
  • Scope: Currently validated primarily on CLIP-style backbones and classification tasks.

Find Similar Papers

Try Our Examples

  • Search for recent papers that utilize image-conditioned context or visual-guided prompt generation to improve the out-of-distribution (OOD) generalization of CLIP-style models.
  • Which paper first introduced the FiLM (Feature-wise Linear Modulation) technique for visual reasoning, and how has its role evolved in the current era of large Vision-Language Models?
  • Explore studies that apply Optimal Transport (OT) for sample refinement and label denoising in multimodal tasks beyond simple image classification, such as object detection or video understanding.
Contents
[CVPR 2026] VisPrompt: Anchoring Prompt Learning to Visual Truth to Defeat Label Noise
1. TL;DR
2. Problem: The Fragility of Soft Prompts
3. Methodology: Seeing is Believing
3.1. 1. Cross-Modal Visual Conditioning
3.2. 2. FiLM-based Robust Modulation
4. Experiments: Superior Resilience
5. Why It Works: A Theoretical Perspective
6. Conclusion & Insights
6.1. Limitations