REVIEW 3 major objections 4 minor 66 references
Referring Expression Instance Retrieval and A Strong End-to-End Baseline
T0 review · 3 major / 4 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read This paper introduces REIR, a task that requires retrieving and localizing a specific object instance from a gallery based on a fine-grained referring expression, and proposes CLARE, an end-to-end dual-stream model that learns…
desk verdict Useful new benchmark and a plausible baseline, but the missing train/test disjointness statement between REIRCOCO and the pretraining data is a load-bearing omission that needs to be fixed before the SOTA claims can be trusted. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing components are the Contrastive Language-Instance Alignment (CLIA) loss and the dual-stream architecture that makes it possible. CLARE uses SigLIP vision and text encoders to produce independent image and text features, a Deformable-DETR-based object extractor to propose up to 900 candidates per image with instance embeddings, and a Mix of Relation Experts (MORE) module that refines the text embedding through one shared expert plus top-2 routing among four specialized experts. CLIA treats each expression-object pair across the whole batch as a binary classification problem with a learnable temperature and bias, so the model learns to separate the true referent from distractors in other images. The same object features feed a position decoder that outputs bounding boxes, so retrieval and localization share one representation and one score.
What would settle it
Rebuild the REIRCOCO evaluation with a split whose test images are guaranteed absent from every pretraining stage, and check whether CLARE's BR@1 at IoU 0.5 stays near 29.5; a large drop would indicate the reported numbers depended on images and boxes seen during pretraining.
Extended reading notes
Core claim
The paper's central claim is that instance-level retrieval and localization can be solved jointly by an end-to-end contrastive model rather than by cascading a text-image retriever with a referring-expression comprehender. CLARE encodes the expression into a query embedding, detects object candidates in each gallery image, and scores every candidate by dot-product similarity with the query; the top-scoring bounding box is the answer. A contrastive objective, CLIA, extends the SigLIP sigmoid loss to align expressions with objects across images and batches, while a Mix of Relation Experts (MORE) routes the text embedding through shared and specialized experts to capture spatial and relational cues. On the REIRCOCO benchmark the authors report state-of-the-art BoxRecall@k across IoU thresholds 0.5, 0.7, and 0.9, with the ViT-L variant reaching 29.53 BR@1 at IoU 0.5, and also report strong transfer to REC and TIR benchmarks. The conclusion the authors draw is that cross-image instance-level contrastive alignment is the right inductive bias for grounding fine-grained expressions in open galleries.
Load-bearing premise
The REIRCOCO test images are not the same images used in pretraining, a fact the paper does not explicitly state; if the split overlaps with COCO or RefCOCO training data, the reported retrieval-and-localization numbers could be inflated.
Editorial extensions
If this is right
- If CLARE's results hold, gallery-scale instance search becomes feasible without per-image cross-modal fusion: object features are precomputed once, and a query is encoded once and matched by dot product.
- The REIRCOCO benchmark gives the community a way to measure retrieval and grounding jointly, so future models can be compared on a single BoxRecall@k metric instead of separate recall and precision scores.
- The reported transfer results suggest that instance-level contrastive alignment is a competitive alternative to early-fusion REC models, potentially simplifying training pipelines.
- Because CLARE outperforms cascades of strong TIR and REC models, the paper argues that end-to-end training avoids error accumulation in the retrieve-then-localize pipeline.
- The staging of pretraining on detection/REC data followed by REIRCOCO fine-tuning is shown to be necessary; removing either stage drops BR@1 from 26.39 to 13.44 or 4.02.
Reading between the lines
- If the test images in REIRCOCO are not disjoint from the COCO/RefCOCO images used in pretraining, the reported gains could be inflated by the model having seen the exact test images and their ground-truth boxes; a clean split would settle this.
- REIRCOCO's expressions are generated and filtered by LLMs, so the benchmark inherits whatever distributional biases GPT-4o and DeepSeek-R1 have; human verification of a sample would test whether the 'unambiguous' property really holds at gallery scale.
- The success of instance-level contrastive alignment suggests a natural extension: using REIRCOCO as a pretraining corpus for downstream REC or TIR tasks, or as a training signal for open-vocabulary detection.
- A testable extension would be to vary the number of routed experts and the gallery size to measure where relational reasoning saturates, since the paper only ablates one configuration at 4 routed experts with top-2.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces a new visual-language task, Referring Expression Instance Retrieval (REIR), which requires retrieving the correct image from a gallery and localizing the referred object instance given a fine-grained natural-language expression. To support the task, the authors construct a large benchmark, REIRCOCO, by prompting GPT-4o to generate five referring expressions per object instance from MSCOCO and RefCOCO annotations, then filtering with DeepSeek R1. They propose an end-to-end baseline, CLARE, a dual-stream SigLIP + Deformable-DETR architecture trained in two stages (detection/REC pretraining, then REIRCOCO finetuning with a contrastive language-instance alignment loss and a Mix of Relation Experts module). Experiments compare CLARE with two-stage TIR+REC baselines on REIRCOCO, report REC results on RefCOCO/+/g, and TIR results on REIRCOCO, concluding that CLARE achieves state-of-the-art REIR performance and strong generalization.
Significance. The task definition is timely and addresses a real gap between image-level retrieval and within-image localization. The dataset construction pipeline is scalable and the decision to release code and benchmark is a concrete contribution. If the evaluation is sound, CLARE provides a credible end-to-end architecture that avoids per-image cross-modal fusion, which could be useful for gallery-scale instance search. The ablation studies (Tables 4-7) directly test several design choices and are informative. However, the central state-of-the-art claim depends on two unverified assumptions: that REIRCOCO test images are disjoint from pretraining images, and that the comparison protocols against two-stage baselines are fair. These issues, if unresolved, materially weaken the empirical contribution.
major comments (3)
- [Section 3.2 and Appendix A.1] The paper does not document whether the REIRCOCO test set images are disjoint from the MSCOCO and RefCOCO images used in Stage 1 pretraining (Appendix A.1 describes pretraining on MSCOCO for detection and RefCOCO/+/g for REC). Because REIRCOCO is constructed from these exact datasets (Section 3.2), the model may have seen the test images and their ground-truth boxes during pretraining, which would inflate BoxRecall numbers in Tables 1 and 3. The authors must state how the REIRCOCO train/test split is defined, verify that no pretraining image appears in the REIRCOCO test set, and report the degree of overlap. Without this, the headline comparison in Section 5.3 is not trustworthy.
- [Section 5.3, Table 1] The two-stage baselines (CLIP/EVA-CLIP/SigLIP combined with DeepSeek-VL2 or SimVG) are used off-the-shelf, with no indication that they were trained or fine-tuned on REIRCOCO. In contrast, CLARE is explicitly fine-tuned on REIRCOCO in Stage 2 (Section A.1, Eq. 6). This is a zero-shot-versus-supervised comparison, and the claim that CLARE 'outperforms all combinations of two-stage baselines' is therefore not a meaningful state-of-the-art result for a newly proposed task. The authors should either fine-tune the two-stage components on REIRCOCO (e.g., fine-tune SimVG on REIRCOCO expressions, or train a contrastive adapter on top of TIR features) and report those results, or evaluate CLARE in a zero-shot setting without REIRCOCO finetuning.
- [Sections 1, 5.3, and 6] The paper repeatedly calls CLARE 'state-of-the-art' on REIR, but REIR is a new benchmark introduced in the same paper and the model is trained and tuned on that benchmark. This is a self-referential evaluation loop: the benchmark is authored by the same group, and the baseline is a method they developed and tuned. The authors should temper this claim and clarify that this is a first baseline on a new task, not a claim of superiority on an established benchmark. Independent validation (e.g., by external groups, or by testing CLARE on a held-out set constructed without the authors' pipeline) would be needed to substantiate the 'state-of-the-art' wording.
minor comments (4)
- [Table 6 heading] The heading 'Ablation study on CILA' uses 'CILA' while the model component is consistently named CLIA elsewhere; please fix this typo.
- [Section 5.1, Eq. 9] The definition of BoxRecall@k says 'given a batch of N referring expressions' but the gallery of instance candidates is not explicitly defined. It would be helpful to state whether the gallery is the full test set, a randomly sampled subset, or the batch itself, and to specify how the top-k candidates are formed across images during inference.
- [Section B.2] The filtering stage uses DeepSeek R1, which does not process images; it evaluates descriptions using only captions and the GPT-generated text. The paper should discuss the possibility that this text-only filter may retain expressions that misdescribe the actual visual content, and quantify the impact on dataset quality (e.g., by reporting a human-annotated quality sample).
- [Abstract and Section 3.2] The abstract states 'over 30,000 images and 200,000 uniquely annotated object instances,' while Section 3.2 gives exact numbers '30,106 images and 215,835 object instances' and later '613,548 fine-grained descriptions.' Please align these numbers for consistency.
Circularity Check
No circularity: CLARE's REIR results are a standard supervised evaluation, with independent external validation on RefCOCO benchmarks; the self-built benchmark raises evaluation-risk, not circularity.
full rationale
The paper's derivation chain is empirical rather than definitional. The fine-tuning objective (Eq. 6, L_finetune = L_CLIA + L_focal + L_bbox) supervises CLARE with REIRCOCO expression-instance pairs, and the reported metric BoxRecall@k (Eq. 9) requires both ranking and IoU agreement with annotated boxes; no equation reduces to another by construction, and the 'prediction' is not a renamed training target. The two-stage baselines in Table 1 are adapted external models without REIRCOCO fine-tuning, which is a comparison-fairness issue, not circularity. The absence of an explicit statement that REIRCOCO test images are disjoint from the COCO/RefCOCO images used in Stage 1 pretraining (Appendix A.1) is an omitted safeguard and a correctness risk, but it is not evidence that the results are equivalent to the inputs by construction. Independent support exists: Table 2 reports strong results on the external RefCOCO/RefCOCO+/RefCOCOg benchmarks (e.g., CLARE-ViT-L 91.40 RefCOCO val, 86.70 RefCOCOg test-u), so the method is not validated only on its own benchmark. No load-bearing self-citations are present; the cited bases (SigLIP, Deformable DETR, GPT-4o, DeepSeek, RefCOCO, COCO) are external systems/datasets. The appended note that DeepSeek filters without seeing images (Appendix B.2) and the qualitative note about test-set figures being slightly misaligned are data-quality/formatting limitations, not circular steps.
Assumptions & free parameters
free parameters (5)
- loss weight lambda_box =
5.0
- loss weight lambda_retrieve =
1.0
- number of object queries M =
900
- routed expert count and top-k selection =
4 routed experts, top-2
- learnable temperature t and bias b in CLIA =
learned
assumptions (4)
- domain assumption REIRCOCO test images are disjoint from images used in pretraining on MSCOCO and RefCOCO.
- domain assumption GPT-4o-generated expressions are accurate, unambiguous, and grounded in the image.
- domain assumption Deformable-DETR object proposals provide a fair candidate set covering the target instance.
- domain assumption DeepSeek R1 filtering correctly removes ambiguous expressions without bias.
invented entities (4)
-
REIR task
independent evidence
-
REIRCOCO dataset
-
MORE module
-
CLIA loss
independent evidence
Cite this review
Pith. "Pith review of Referring Expression Instance Retrieval and A Strong End-to-End Baseline." pith.science (2026). https://pith.science/paper/UQT5UM2U
@misc{pith2026250618246,
author = {Pith},
title = {Pith review of: Referring Expression Instance Retrieval and A Strong End-to-End Baseline},
year = {2026},
howpublished = {\url{https://pith.science/paper/UQT5UM2U}},
note = {Machine review of arXiv:2506.18246}
}
read the original abstract
Using natural language to query visual information is a fundamental need in real-world applications. Text-Image Retrieval (TIR) retrieves a target image from a gallery based on an image-level description, while Referring Expression Comprehension (REC) localizes a target object within a given image using an instance-level description. However, real-world applications often present more complex demands. Users typically query an instance-level description across a large gallery and expect to receive both relevant image and the corresponding instance location. In such scenarios, TIR struggles with fine-grained descriptions and object-level localization, while REC is limited in its ability to efficiently search large galleries and lacks an effective ranking mechanism. In this paper, we introduce a new task called \textbf{Referring Expression Instance Retrieval (REIR)}, which supports both instance-level retrieval and localization based on fine-grained referring expressions. First, we propose a large-scale benchmark for REIR, named REIRCOCO, constructed by prompting advanced vision-language models to generate high-quality referring expressions for instances in the MSCOCO and RefCOCO datasets. Second, we present a baseline method, Contrastive Language-Instance Alignment with Relation Experts (CLARE), which employs a dual-stream architecture to address REIR in an end-to-end manner. Given a referring expression, the textual branch encodes it into a query embedding. The visual branch detects candidate objects and extracts their instance-level visual features. The most similar candidate to the query is selected for bounding box prediction. CLARE is first trained on object detection and REC datasets to establish initial grounding capabilities, then optimized via Contrastive Language-Instance Alignment (CLIA) for improved retrieval across images. We will release our code and benchmark publicly.
Figures
Figures from the paper (6 more)
Reference graph
Works this paper leans on
-
[1]
OpenAI:Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, FlorenciaLeoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shya- mal Anadkat, Red Avila, Igor Babuschkin, Suchir Balaji, Valerie Balcom, Paul Bal- tescu, Haiming Bao, Mo Bavarian, Jeff Belgum, Irwan Bello, Jake Berdine, Gabriel Bernadett-Shapiro, Christopher Berner, Le...
work page 2023
-
[2]
Jinze Bai, Shuai Bai, Shusheng Yang, Shijie Wang, Sinan Tan, Peng Wang, Junyang Lin, Chang Zhou, and Jingren Zhou. 2023. Qwen-VL: A Versatile Vision-Language Model for Understanding, Localization, Text Reading, and Beyond.arXiv preprint arXiv:2308.12966 (2023)
arXiv 2023
- [3]
-
[4]
Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexan- der Kirillov, and Sergey Zagoruyko. 2020. End-to-end object detection with transformers. In ECCV
work page 2020
-
[5]
Keqin Chen, Zhao Zhang, Weili Zeng, Richong Zhang, Feng Zhu, and Rui Zhao
-
[6]
Xinlei Chen, Hao Fang, Tsung-Yi Lin, Ramakrishna Vedantam, Saurabh Gupta, Pi- otr Dollár, and C Lawrence Zitnick. 2015. Microsoft coco captions: Data collection and evaluation server. arXiv preprint arXiv:1504.00325 (2015)
arXiv 2015
-
[7]
Yen-Chun Chen, Linjie Li, Licheng Yu, Ahmed El Kholy, Faisal Ahmed, Zhe Gan, Yu Cheng, and Jingjing Liu. 2020. UNITER: UNiversal Image-TExt Representation Learning. 104–120. doi:10.1007/978-3-030-58577-8_7
-
[8]
Zhe Chen, Jiannan Wu, Wenhai Wang, Weijie Su, Guo Chen, Sen Xing, Muyan Zhong, Qinglong Zhang, Xizhou Zhu, Lewei Lu, et al . 2024. Internvl: Scaling up vision foundation models and aligning for generic visual-linguistic tasks. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 24185–24198
2024
Show all 66 references
-
[9]
Ming Dai, Lingfeng Yang, Yihao Xu, Zhenhua Feng, and Wankou Yang. 2024. Simvg: A simple framework for visual grounding with decoupled multi-modal fusion. Advances in neural information processing systems 37 (2024), 121670– 121698
2024
-
[10]
DeepSeek-AI DeepSeek-AI, Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, Xiaokang Zhang, Xingkai Yu, Yu Wu, Z.F. Wu, Zhibin Gou, Zhihong Shao, Zhuoshu Li, Ziyi Gao, Aixin Liu, Bing Xue, Bingxuan Wang, Bocha...
2025
-
[11]
Jiajun Deng, Zhengyuan Yang, Tianlang Chen, Wengang Zhou, and Houqiang Li
-
[12]
Fleet, Jamie Kiros, and Sanja Fidler
Fartash Faghri, DavidJ. Fleet, Jamie Kiros, and Sanja Fidler. 2017. VSE++: Improv- ing Visual-Semantic Embeddings with Hard Negatives. arXiv: Learning,arXiv: Learning (Jul 2017)
2017
-
[13]
Corrado, Jon Shlens, Samy Bengio, Jeff Dean, Marc’Aurelio Ranzato, and Tomas Mikolov
Andrea Frome, GregS. Corrado, Jon Shlens, Samy Bengio, Jeff Dean, Marc’Aurelio Ranzato, and Tomas Mikolov. 2013. DeViSE: A Deep Visual-Semantic Embedding Model. Neural Information Processing Systems,Neural Information Processing Systems (Dec 2013)
2013
-
[14]
Zhe Gan, Yen-Chun Chen, Pingqing Fu, Chen Zhu, Yu Cheng, and Jingjing Liu
-
[16]
Richang Hong, Daqing Liu, Xiaoyu Mo, Xiangnan He, and Hanwang Zhang
-
[17]
Andrew Howard, Mark Sandler, Grace Chu, Liang-Chieh Chen, Bo Chen, Mingx- ing Tan, Weijun Wang, Yukun Zhu, Ruoming Pang, Vijay Vasudevan, et al. 2019. Searching for mobilenetv3. In ICCV
2019
-
[18]
Zhicheng Huang, Zhaoyang Zeng, Yupan Huang, Bei Liu, Dongmei Fu, and Jianlong Fu. 2021. Seeing Out of tHe bOx: End-to-End Pre-training for Vision- Language Representation Learning. In 2021 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) . doi:10.1109/cvpr...
2021
-
[19]
Aishwarya Kamath, Mannat Singh, Yann LeCun, Gabriel Synnaeve, Ishan Misra, and Nicolas Carion. 2021. MDETR-modulated detection for end-to-end multi- modal understanding. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV). 1780–1790
2021
-
[20]
Sahar Kazemzadeh, Vicente Ordonez, Mark Matten, and Tamara Berg. 2014. Referitgame: Referring to objects in photographs of natural scenes. InProceedings of the 2014 conference on empirical methods in natural language processing (EMNLP). 787–798
2014
-
[21]
Won-Jae Kim, Bokyung Son, and Ildoo Kim. 2021. ViLT: Vision-and-Language Transformer Without Convolution or Region Supervision. International Con- ference on Machine Learning,International Conference on Machine Learning (Feb 2021)
2021
-
[22]
Thomas Kipf and Max Welling. 2016. Semi-Supervised Classification with Graph Convolutional Networks. arXiv: Learning,arXiv: Learning (Sep 2016)
2016
-
[23]
Kuang-Huei Lee, Xi Chen, Gang Hua, Houdong Hu, and Xiaodong He. 2018. Stacked Cross Attention for Image-Text Matching. 212–228. doi:10.1007/978-3-030- 01225-0_13 Conference acronym ’25, June 03–05, 2025, Woodstock, NY Xiangzhao et al
2018 doi
-
[24]
Feng Li, Hao Zhang, Shilong Liu, Jian Guo, Lionel M Ni, and Lei Zhang. 2022. DN-DETR: Accelerate detr training by introducing query denoising. In CVPR
2022
-
[25]
Junnan Li, Dongxu Li, Caiming Xiong, and Steven Hoi. 2022. Blip: Bootstrapping language-image pre-training for unified vision-language understanding and generation. In International conference on machine learning . PMLR, 12888–12900
2022
-
[26]
Kunpeng Li, Yulun Zhang, Kai Li, Yuanyuan Li, and Yun Fu. 2019. Visual Semantic Reasoning for Image-Text Matching. In 2019 IEEE/CVF International Conference on Computer Vision (ICCV) . doi:10.1109/iccv.2019.00475
2019
-
[27]
Liunian Harold Li, Pengchuan Zhang, Haotian Zhang, Jianwei Yang, Chunyuan Li, Yiwu Zhong, Lijuan Wang, Lu Yuan, Lei Zhang, Jenq-Neng Hwang, et al. 2022. Grounded language-image pre-training. In CVPR
2022
-
[28]
Tsung-Yi Lin, Priya Goyal, Ross Girshick, Kaiming He, and Piotr Dollár. 2017. Focal loss for dense object detection. In ICCV
2017
-
[29]
Lawrence Zitnick
Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollár, and C. Lawrence Zitnick. 2014. Microsoft COCO: Common Objects in Context. 740–755. doi:10.1007/978-3-319-10602-1_48
2014 doi
-
[30]
Belongie, Lubomir D
Tsung-Yi Lin, Michael Maire, Serge J. Belongie, Lubomir D. Bourdev, Ross B. Gir- shick, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollár, and C. Lawrence Zitnick. 2014. Microsoft COCO: Common Objects in Context. In ECCV
2014
-
[31]
Chunxiao Liu, Zhendong Mao, An-An Liu, Tianzhu Zhang, Bin Wang, and Yong- dong Zhang. 2019. Focus Your Attention: A Bidirectional Focal Attention Network for Image-Text Matching. Cornell University - arXiv,Cornell University - arXiv (Sep 2019)
2019
-
[32]
Daqing Liu, Hanwang Zhang, Feng Wu, and Zheng-Jun Zha. 2019. Learning to assemble neural module tree networks for visual grounding. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV) . 4673–4682
2019
-
[33]
Xihui Liu, Zihao Wang, Jing Shao, Xiaogang Wang, and Hongsheng Li. 2019. Improving referring expression grounding with cross-modal attention-guided erasing. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR). 1950–1959
2019
-
[34]
Ilya Loshchilov and Frank Hutter. 2017. Decoupled Weight Decay Regularization. Learning,Learning (Nov 2017)
2017
-
[35]
Varun K Nagaraja, Vlad I Morariu, and Larry S Davis. 2016. Modeling context between objects for referring expression understanding. In Proceedings of the European Conference on Computer Vision (ECCV) . Springer, 792–807
2016
-
[36]
Hyeonseob Nam, Jung-Woo Ha, and Jeonghee Kim. 2017. Dual Attention Net- works for Multimodal Reasoning and Matching. In 2017 IEEE Conference on Computer Vision and Pattern Recognition (CVPR) . doi:10.1109/cvpr.2017.232
2017 doi
-
[37]
Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Askell Amanda, Pamela Mishkin, Jack Clark, Gretchen Krueger, and Ilya Sutskever
Alec Radford, JongWook Kim, Chris Hallacy, A. Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Askell Amanda, Pamela Mishkin, Jack Clark, Gretchen Krueger, and Ilya Sutskever. 2021. Learning Transferable Visual Models From Natural Language Supervision. Cornell University ...
2021
-
[38]
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. 2021. Learning transferable visual models from natural language supervision. In International conference on machine learni...
2021
-
[39]
Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. 2015. Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks. InAdvances in Neural Information Processing Systems (NIPS)
2015
-
[40]
Fengyuan Shi, Ruopeng Gao, Weilin Huang, and Limin Wang. 2022. Dynamic MDETR: A Dynamic Multimodal Transformer Decoder for Visual Grounding. (Sep 2022)
2022
-
[41]
Quan Sun, Yuxin Fang, Ledell Wu, Xinlong Wang, and Yue Cao. 2023. EVA-CLIP: Improved Training Techniques for CLIP at Scale. arXiv preprint arXiv:2303.15389 (2023)
2023 arXiv
-
[42]
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. 2017. Attention is all you need. Advances in Neural Information Processing Systems (NeurIPS) 30 (2017)
2017
-
[43]
Wenhui Wang, Hangbo Bao, Li Dong, Johan Bjorck, Zhiliang Peng, Qiang Liu, Kriti Aggarwal, Owais Khan Mohammed, Saksham Singhal, Subhojit Som, et al
-
[44]
Yaxiong Wang, Hao Yang, Xueming Qian, Lin Ma, Jing Lu, Biao Li, and Xin Fan
-
[45]
Zihao Wang, Xihui Liu, Hongsheng Li, Lu Sheng, Junjie Yan, Xiaogang Wang, and Jing Shao. 2019. CAMP: Cross-Modal Adaptive Message Passing for Text-Image Retrieval. In 2019 IEEE/CVF International Conference on Computer Vision (ICCV) . doi:10.1109/iccv.2019.00586
2019
-
[46]
Zhaoqing Wang, Yu Lu, Qiang Li, Xunqiang Tao, Yandong Guo, Mingming Gong, and Tongliang Liu. 2022. Cris: Clip-driven referring image segmentation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition . 11686–11695
2022
-
[47]
Zhiyu Wu, Xiaokang Chen, Zizheng Pan, Xingchao Liu, Wen Liu, Damai Dai, Huazuo Gao, Yiyang Ma, Chengyue Wu, Bingxuan Wang, Zhenda Xie, Yu Wu, Kai Hu, Jiawei Wang, Yaofeng Sun, Yukun Li, Yishi Piao, Kang Guan, Aixin Liu, Xin Xie, Yuxiang You, Kai Dong, Xingkai Yu, Haowei Zhang,...
2024 arXiv
-
[48]
Sibei Yang, Guanbin Li, and Yizhou Yu. 2019. Dynamic graph attention for referring expression comprehension. In Proceedings of the IEEE/CVF international conference on computer vision . 4644–4653
2019
-
[49]
arXiv preprint arXiv:2208.10442 (2022)
Image as a Foreign Language: BEiT Pretraining for All Vision and Vision- Language Tasks. arXiv preprint arXiv:2208.10442 (2022)
2022 arXiv
-
[50]
Zhao Yang, Jiaqi Wang, Yansong Tang, Kai Chen, Hengshuang Zhao, and Philip HS Torr. 2022. Lavt: Language-aware vision transformer for referring image segmentation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. 18155–18165
2022
-
[51]
Cornell University - arXiv,Cornell University - arXiv (Jul 2019)
Position Focused Attention Network for Image-Text Matching. Cornell University - arXiv,Cornell University - arXiv (Jul 2019)
2019
-
[52]
Licheng Yu, Zhe Lin, Xiaohui Shen, Jimei Yang, Xin Lu, Mohit Bansal, and Tamara L Berg. 2018. Mattnet: Modular attention network for referring ex- pression comprehension. In Proceedings of the IEEE conference on computer vision and pattern recognition. 1307–1315
2018
-
[53]
Licheng Yu, Patrick Poirson, Shan Yang, Alexander C Berg, and Tamara L Berg
-
[54]
Xiaohua Zhai, Basil Mustafa, Alexander Kolesnikov, and Lucas Beyer. 2023. Sig- moid loss for language image pre-training. In Proceedings of the IEEE/CVF inter- national conference on computer vision . 11975–11986
2023
-
[55]
Kun Zhang, Zhendong Mao, Quan Wang, and Yongdong Zhang. [n. d.]. Negative- Aware Attention Framework for Image-Text Matching. ([n. d.])
-
[56]
Sibei Yang, Guanbin Li, and Yizhou Yu. 2019. Dynamic graph attention for referring expression comprehension. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV) . 4644–4653
2019
-
[57]
Chaoyang Zhu, Yiyi Zhou, Yunhang Shen, Gen Luo, Xingjia Pan, Mingbao Lin, Chao Chen, Liujuan Cao, Xiaoshuai Sun, and Rongrong Ji. 2022. Seqtr: A simple yet universal network for visual grounding. In European Conference on Computer Vision (ECCV). Springer, 598–615
2022
-
[58]
Haoxuan You, Haotian Zhang, Zhe Gan, Xianzhi Du, Bowen Zhang, Zirui Wang, Liangliang Cao, Shih-Fu Chang, and Yinfei Yang. 2023. Ferret: Refer and ground anything anywhere at any granularity. arXiv preprint arXiv:2310.07704 (2023)
2023 arXiv
-
[64]
Xingyi Zhou, Rohit Girdhar, Armand Joulin, Philipp Krähenbühl, and Ishan Misra
-
[65]
Detecting twenty-thousand classes using image-level supervision. InECCV
-
[67]
Instance quality is poor
Xizhou Zhu, Weijie Su, Lewei Lu, Bin Li, Xiaogang Wang, and Jifeng Dai. 2020. Deformable detr: Deformable transformers for end-to-end object detection.arXiv preprint arXiv:2010.04159 (2020). Referring Expression Instance Retrieval and A Strong End-to-End Baseline Conference ac...
2020 arXiv
-
[2016]
In Computer Vision–ECCV 2016: 14th European Conference, Amsterdam, The Netherlands, October 11-14, 2016, Proceedings, Part II 14
Modeling context in referring expressions. In Computer Vision–ECCV 2016: 14th European Conference, Amsterdam, The Netherlands, October 11-14, 2016, Proceedings, Part II 14 . Springer, 69–85
2016
-
[2019]
IEEE Transactions on Pattern Analysis and Machine Intelligence (TPAMI) (2019)
Learning to compose and reason with language tree structures for visual grounding. IEEE Transactions on Pattern Analysis and Machine Intelligence (TPAMI) (2019)
2019
-
[2020]
Neural Information Processing Systems,Neural Information Processing Systems (Jun 2020)
Large-Scale Adversarial Training for Vision-and-Language Representation Learning. Neural Information Processing Systems,Neural Information Processing Systems (Jun 2020)
2020
-
[2021]
In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV)
Transvg: End-to-end visual grounding with transformers. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV) . 1769–1779
-
[2022]
IEEE Transactions on Pattern Analysis and Machine Intelligence (Feb 2022), 684–696
Learning to Compose and Reason with Language Tree Structures for Visual Grounding. IEEE Transactions on Pattern Analysis and Machine Intelligence (Feb 2022), 684–696. doi:10.1109/tpami.2019.2911066
2022
-
[2023]
arXiv preprint arXiv:2306.15195 (2023)
Shikra: Unleashing multimodal llm’s referential dialogue magic. arXiv preprint arXiv:2306.15195 (2023)
2023 arXiv
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.