Command Palette
Search for a command to run...
EviRank: マルチモーダル画像再ランキングのための構造化関連性エビデンス
EviRank: マルチモーダル画像再ランキングのための構造化関連性エビデンス
概要
実世界の画像検索クエリはマルチモーダルかつ複合的である。例えば「このシャツのピンク色のものを探して」という指示は、保持すべき実体、変更すべき属性、無視すべき文脈を指定する。しかし既存の再ランキング手法は、このような多面的な関連性を不透明な埋め込み表現に圧縮するか、自由形式の思考連鎖に依存するため、詳細な制約を見落としたり幻覚を生じたりしやすい。我々はNLPにおけるルーブリックやチェックリストに基づく評価から着想を得て、マルチモーダル画像再ランキングを意味的制約充足問題として再定義し、EviRankを提案する。EviRankは、テキストのみ、画像のみ、あるいは複合的なあらゆるクエリを、統一的なエビデンスパッケージに解析する。これは6つの意味スロット(実体、属性、関係など)にわたる型付き基準から成り、各基準は必須、禁止、無視可能のいずれかにラベル付けされる。再ランキングは、決定論的ルーブリック評価とエビデンスに基づくリストワイズ比較を単一の学習不要な手続きで組み合わせた、エビデンス条件付き検証へと帰着する。この明示的なエビデンスは、軽量な生徒モデルを蒸留する際の構造的教師信号としても利用できる。テキストから画像、画像から画像、複合画像検索にわたる5つのベンチマークにおいて、EviRankは最先端の性能を達成し、蒸留された生徒モデルは大幅に低いコストで教師モデルの能力の90%以上を保持する。コードはhttps://github.com/EnjunDu/EviRankで公開されている。
One-sentence Summary
HKUST (Guangzhou), Tencent Yuanbao, and the University of Hong Kong propose EviRank, a training-free multimodal re-ranker that casts ranking as semantic constraint satisfaction by parsing queries into evidence packages with six semantic slots each marked required, forbidden, or ignorable, combining deterministic rubric scoring with evidence-grounded listwise comparison to achieve state-of-the-art across five retrieval benchmarks, and optionally distilling a lightweight student that retains over 90% of the teacher's capability at substantially lower cost.
Key Contributions
- EviRank recasts multimodal image re-ranking as a semantic constraint satisfaction problem, parsing text-only, image-only, or composed queries into unified typed evidence across six semantic slots with required, forbidden, or ignorable labels.
- The training-free, evidence-conditioned procedure combines deterministic rubric scoring with evidence-grounded listwise comparison, and analysis shows that structured evidence is robust, interpretable, and that forbidden constraints improve fine-grained discrimination.
- Across five benchmarks spanning text-to-image, image-to-image, and composed image retrieval, EviRank achieves state-of-the-art performance, and the structured evidence serves as supervision for distilling a compact student that retains over 90% of the teacher’s capability at substantially lower cost.
Introduction
Real-world image search queries often combine text and image cues and impose multiple fine-grained constraints at once, such as preserving an entity while modifying a specific attribute and ignoring incidental factors like background or lighting. This matters because relevance depends on verifying whether a candidate image satisfies those semantic constraints, not simply on global similarity. Prior multimodal re-rankers either collapse all query dimensions into a single dense representation that cannot expose fine-grained constraint violations, or rely on free-form chain-of-thought reasoning that can omit implicit constraints, hallucinate evidence, and cover semantic dimensions inconsistently. The authors formulate multimodal image re-ranking as evidence-conditioned semantic verification and introduce EviRank, which parses queries into typed Evidence Frames with required, forbidden, and ignorable statements over six semantic slots, then mines and verifies that evidence in a training-free two-stage procedure and uses the structured signals to distill a compact student re-ranker.
Method
The authors present EviRank, a framework that recasts multimodal image re-ranking as semantic constraint satisfaction. Rather than relying on simple similarity scores, the system parses a query into a unified package of structured evidence criteria and re-ranks candidates by evaluating which criteria they satisfy or violate.
Refer to the framework diagram below to understand the complete pipeline.
The core of this approach is the evidence representation. Regardless of whether the input query is text-only, image-only, or composed, it is mapped to a modality-agnostic evidence package E(q)=(g,{(Rs,Fs,Is)}s∈S). Here, g is a concise global summary of the query intent, and S represents a default schema of six semantic slots: ENTITIES, ATTRIBUTES, ACTIONS, RELATIONS, SCENE, and KEYDETAILS. For each slot, the system extracts three lists of short, checkable sentences: required constraints Rs that must hold, forbidden constraints Fs that must not hold, and ignorable constraints Is that should not influence the decision.
To build this evidence package, the authors employ a training-free query-to-evidence mining process using a single multimodal large language model (MLLM) teacher. First, the query undergoes normalization to expose its semantic content uniformly. Text queries are verbalized to make implicit visual details explicit, image queries are captioned, and composed queries are mapped by treating the reference image as preserved constraints and the modification text as updated or forbidden constraints. Following normalization, the MLLM emits the full evidence package in a single structured pass, generating positive statements for all constraint types to ensure consistent matching.
Once the evidence is mined, the framework performs evidence-conditioned verification and re-ranking through a two-stage process. The first stage is deterministic rubric scoring, which evaluates candidates independently. Let m(⋅,c) be a matching operator measuring whether a constraint sentence holds for a candidate c. The slot satisfaction and violation rates are calculated as:
Matchs(c)=∣Rs∣1r∈Rs∑m(r,c) Viols(c)=∣Fs∣1f∈Fs∑m(f,c)The rubric score aggregates these rates with a forbidden penalty and an optional cross-modal consistency term:
Srub(c)=s∈S∑ws(Matchs(c)−βViols(c))+γCons(c)where β controls the penalty strength and Cons(c) measures alignment for composed queries. Ignorable constraints act as an invariance mask, preventing non-discriminative variations from dominating the score.
To resolve close calls between visually similar candidates, the second stage applies evidence-grounded listwise refinement. The MLLM teacher is prompted with the query, the global intent, the required and forbidden constraints, and the top candidates jointly. It returns a refined permutation where satisfied required constraints raise the rank and salient forbidden mismatches are heavily penalized. In practice, candidates are sorted by the rubric score, and the teacher only verifies and locally reorders the top M candidates to reduce computational cost.
Beyond inference, the structured evidence package serves as decomposable supervision for distilling a lightweight student re-ranker. During training, the student receives a query-conditioned supervision bundle comprising the evidence package, per-candidate slot-wise satisfaction rates, calibrated listwise scores r, a self-assessed confidence p, and a set of hard pairs H. Crucially, at inference time, the student consumes only the raw query and candidate image, predicting a relevance score si without requiring the teacher MLLM or evidence cache.
The distillation process optimizes three objectives that mirror the structured components of the supervision bundle. Score distillation matches the student scores s to the standardized teacher scores r^ using a KL divergence loss:
Lscore=KL(softmax(r^/τ)∥softmax(s/τ))Hard-pair supervision imposes a margin δ on teacher-flagged pairs, weighted inversely to the teacher score gap to focus on closely-scored competitors:
Lpair=(i,j)∈H∑wijmax(0,δ−(si−sj))where wij=1/(∣ri−rj∣+ϵ). Optionally, slot-wise supervision trains a lightweight auxiliary head via binary cross-entropy to predict slot-wise labels ys,i:
Lslot=−K∣S∣1i,s∑[ys,ilogy^s,i+(1−ys,i)log(1−y^s,i)]The final training loss combines these terms, modulated by the teacher confidence p to down-weight uncertain supervision:
L=p⋅(Lscore+λLpair+ηLslot)The auxiliary head is discarded after training, ensuring the deployed student model maintains a low inference footprint.
Experiment
EviRank is evaluated across text-to-image, image-to-image, and composed retrieval benchmarks, combining structured evidence extraction with listwise re-ranking. The results demonstrate that rubric-based evidence and listwise comparison are complementary, with each slot type (Required, Forbidden, Ignore) contributing to fine-grained disambiguation, while evidence extraction remains stable across teachers and prompt perturbations. The distilled student inherits this reasoning efficiently, and overall gains stem from the structured evidence schema rather than prompt engineering.
EviRank is the only method that provides a fixed, reusable slot taxonomy with typed required, forbidden, and ignorable evidence, enabling deterministic auditable scoring and a teacher-free distilled student. The structured schema yields stable rankings across repeated runs, prompt variations, and different teacher models, with most re-ranking gains coming from the slot-wise formulation rather than prompt phrasing. The six evidence slots are near-orthogonal and complementary, capturing distinct semantic dimensions. Only EviRank defines a fixed, reusable slot taxonomy with explicit FORBIDDEN and IGNORABLE evidence types, making deterministic per-slot scoring and auditing possible. Structured evidence extraction maintains high stability: Kendall's τ ≥ 0.89 and Top-1 agreement ≥ 91% across repeated runs, prompt perturbations, and different teachers. Slot-wise R/F/I formulation accounts for the majority of re-ranking improvement (+6.5 R@1 on COCO), while free-form reasoning adds only marginal gains. The six evidence slots show low pairwise similarity (mean 0.18), confirming they capture complementary rather than redundant semantic aspects. A distilled student model achieves efficient re-ranking (~800ms per query) with large gains over CLIP retrieval, without needing the teacher or evidence cache at runtime.
On Flickr30k, EviRank variants improve retrieval over the no-rerank baseline and prior reranking methods, with EviRank-plus delivering the strongest listed R@1 and MRR@5. The rubric-only EviRank-mini remains competitive without test-time MLLM inference, while full EviRank and EviRank-plus add further gains. In related reported results, EviRank-pro with a BLIP-2 backbone reaches 95.61% R@1, surpassing CoTMR by 6.32 points. EviRank-plus achieves the best listed Flickr30k retrieval performance, lifting R@1 and MRR@5 above all compared methods. Even rubric-only EviRank-mini outperforms prior methods that do not use MLLM inference at test time, while stronger EviRank variants extend the lead. With a BLIP-2 backbone, EviRank-pro attains 95.61% R@1 on Flickr30k, a 6.32-point improvement over CoTMR.
On COCO with CLIP-ViT-B/32, EviRank variants consistently outperform the no-rerank baseline and prior reranking methods. EviRank-pro reaches 64.6% R@1, a 6.3-point improvement over CoTRR, while even the rubric-only EviRank-mini surpasses CoTRR without test-time MLLM inference, demonstrating that structured evidence alone provides a strong reranking signal. EviRank-pro achieves 64.6% R@1, improving by 25.2 points over the no-rerank baseline and by 6.3 points over CoTRR. EviRank-mini, which uses only a fixed rubric and no MLLM at test time, reaches 59.9% R@1, outperforming CoTRR (58.3%).
On SoP and CUB-200 with DINOv2, reranking and query expansion methods improve retrieval mAP over the no-rerank baseline, with LoCoRE-small achieving the strongest mAP among reported baselines. Recall-oriented metrics on CUB-200 show larger gains at deeper cutoffs for several rerankers, while R@1 improvements are comparatively modest for the listed baselines. The cited EviRank-pro results reach higher R@1 on both datasets, surpassing LoCoRE-base by notable margins. LoCoRE-small records the best R@1 and mAP on both datasets among the reported baseline methods. All reranking or query expansion methods improve mAP over no rerank on SoP and CUB-200. On CUB-200, deeper recall cutoffs such as R@4 improve more than R@1 for several baselines. EviRank-pro is reported to exceed LoCoRE-base by clear margins on SoP and CUB-200 R@1.
On FashionIQ, EviRank achieves the highest retrieval accuracy across all categories, with the largest R@10 gains on Toptee and Dress compared to prior methods. The rubric-only EviRank-mini already surpasses previous baselines without test-time MLLM calls, while the full EviRank adds further improvements, demonstrating that structured evidence and listwise reasoning are complementary. Stability experiments confirm that evidence extraction remains robust under repeated runs, prompt variations, and teacher substitutions, with only a moderate accuracy drop when using a cheaper teacher. EviRank achieves the best R@10 on all three FashionIQ categories, with a 7.1-point improvement on Toptee over ImageScope. EviRank-mini, which relies solely on rubric-based evidence, outperforms ImageScope, showing the value of structured evidence without MLLM inference. Replacing the teacher with a cheaper model reduces Toptee R@10 from 42.9 to 38.3 but preserves high ranking stability (Kendall's τ=0.90, Top-1 agreement 91.1%). The gap between EviRank-mini and EviRank confirms that listwise MLLM reasoning provides complementary gains beyond structured evidence alone.
Experiments on image-text retrieval benchmarks including Flickr30k, COCO, SoP, CUB-200, and FashionIQ show that EviRank’s fixed slot taxonomy with required, forbidden, and ignorable evidence types captures complementary semantic dimensions, with the structured slot-wise formulation delivering the majority of re-ranking gains and a rubric-only variant already outperforming many baselines without test-time MLLM inference. The evidence extraction proves highly stable across repeated runs, prompt changes, and teacher substitutions, and a distilled student model enables efficient re-ranking without runtime access to the teacher or evidence cache. These findings confirm that deterministic, auditable slot-based reasoning, combined with listwise MLLM scoring, consistently advances retrieval accuracy over prior methods.