惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
爱范儿
爱范儿
J
Java Code Geeks
L
LangChain Blog
V
V2EX
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
博客园 - Franky
Microsoft Azure Blog
Microsoft Azure Blog
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
博客园 - 司徒正美
B
Blog
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
Engineering at Meta
Engineering at Meta
MyScale Blog
MyScale Blog
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
📄Paper: RORA-VLM: Robust Retrieval Augmentation for Visio...
Mercy · 2026-05-29 · via DEV Community
Cover image for 📄Paper: RORA-VLM: Robust Retrieval Augmentation for Vision Language Models

Mercy

Public At
International Conference on Learning Representations (ICLR) 2025

💡 Why I read this
最近在找論文的 idea 剛好找到這篇,發表在 ICLR 2025,不過被 Reject 了有點可惜
這篇主要是把 RAG 應用到 VLM ,讓模型在回答問題時可以利用外部知識
在很多 VQA 的任務中,答案其實不在圖片裡面,而是需要額外的背景知識
例如一張圖顯示一種鳥,問題是:「這種鳥主要分布在哪裡?」
圖片只能讓你看出鳥長什麼樣,但像棲地這種資訊一定要查資料才知道
這篇主要在解決:「當 retrieved knowledge 有 noise 時,VLM 怎麼還能穩定推理?

🧠 Core idea

作者提出一個 robust retrieval framework 給 VLM:

1. Two-stage retrieval

先用 image retrieve 相似 entity,再用 entity expansion 做 text retrieval。

在第一個階段,他們把 query image 當作一個「anchor」,去資料庫裡找很多長得很像的圖片。

他們用的資料庫叫 WIT,裡面有 3700 萬張圖片,每張圖片都搭配一個 entity 的名字跟描述。

在第二個階段,他們把在第一個階段拿到的 entity 名稱、描述加進原本的問題裡面,變成一個更具體的 query,再去用 google 查知識(call api)

✨ For Example

  • 原本的問句:
    • which year was this building built?
  • 找到的 Entity
    • Castle of Good Hope
  • 新的 Query (原本的問句 + entity)
    • which year was Castle of Good Hope built?

2. Query-oriented visual token refinement

只保留和 query 最相關的 visual tokens,減少 image background noise。

一開始有兩個輸入:問題和圖片。
在 VLM 裡面,一張圖片會被切成很多塊,每個區塊會變成一個 visual token。

接下來,模型會根據問題的內容,計算每一塊(image patch) 和 query 的相關性。
與問題比較相關的區塊會被保留下來,不相關的就被忽略。

對於每一張檢索到的圖片,也會做一樣的篩選,用「query image 的比較重要的幾個 patch」來判斷,只留下和 query image 相關的區塊。

最後留下的這些區塊,會轉成對應的 visual tokens,並以 sequence 的形式排列(refined visual tokens),作為 VLM 的 Input

也就是模型最後看到的圖片資訊,其實已經被篩選過了。

中間那些綠色的區塊,其實代表的是,每個 patch 和問題之間的相關性分數。

3. Noise-resilient RAG

training 時故意加入錯誤 retrieval,讓 model 學會忽略 irrelevant knowledge。

VLM 會同時看到:原始圖片、問題、還有多筆查到的知識(圖片 + 文字)

這些 retrieval 結果裡面,有些是正確的,有些是錯的。
模型要做的事就是根據相關程度(每張圖片與 query 到的 image),決定要相信哪一段資訊。

👉 綠色 = 高 attention
👉 紅色 = 忽略

經過這個過程,模型可以回答問題,例如這個建築是在 1666–1679 年建造的。

✨ Full Workflow
Full Workflow

📄Soure
https://openreview.net/pdf/1dff65b976d44f89183d623a8d26842e17ed51da.pdf