REVIEW 4 major objections 4 minor 49 references
ART: Adaptive Relation Tuning for Generalized Relation Prediction
T0 review · 4 major / 4 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read ART claims that adaptive instruction tuning lets a vision-language model predict visual relations it never saw in training, beating mainstream scene-graph models and naive tuned baselines on mean recall across held-out datasets.
desk verdict Solid instruction-tuning recipe for VRD with consistent mR gains, but the proposed gR/gmR metric is coupled to the training sampler, so the headline generalization claim is weaker than it looks. 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 carrying mechanism is an adaptive sampling loop wrapped around instruction tuning. Relation triplets are first turned into a question template that names a high-level relation category (“Is there a prominent spatial relation between...”), with one positive answer and one “counter-negative” answer drawn from a mutually exclusive category according to a hand-set exclusivity table among spatial, semantic, and possessive relations. Then, in each loop, a balanced initialization covers all predicates, per-predicate budgets are scaled by recall shortfall, and per-predicate thresholds are fit to the entropy $H$ and semantic-similarity $S$ distributions of true positives, false negatives, and false positives; samples are selected as high-entropy true positives, high- and low-entropy false negatives, and low-similarity false positives. The load-bearing part is the similarity measure $S$, a cosine similarity between predicted and ground-truth text embeddings: it decides which false positives are harmless paraphrases (“girl with hair” versus “girl has hair”) and which are genuine errors (“bag under table” versus “bag on table”), and the same $S$ with the same 0.95 threshold defines the paper's generalized recall metrics gR and gmR.
What would settle it
Swap the similarity measure S for an independent oracle and recompute both halves of the pipeline: have human raters (or a different text-embedding model with its own threshold) judge whether each false positive is a valid paraphrase of the ground truth, use that judgment to re-select ART's training samples and to recompute gR and gmR, and check whether ART still beats its strongest baselines. If the ordering flips, or if ART's chosen samples become indistinguishable from random selection, the reported generalized-recall advantage is an artifact of S's calibration. A cheaper probe is to rerun evaluation with the similarity threshold moved from 0.95 to 0.90 and 0.98 and measure how much ART's gR and gmR move relative to the baselines'.
Extended reading notes
Core claim
The central claim is that instruction tuning a vision-language model on a small, adaptively selected subset of a relation-detection dataset preserves and extends the model's generalization, so that it predicts relation concepts beyond the training vocabulary. Concretely, the paper shows that training on roughly 12% of Visual Genome data selected by ART yields higher mean recall (mR) and generalized mean recall (gmR) than training on the full dataset, on a random subset, or on a balanced random subset, across test sets of rising difficulty: GQA, Open Images v4, and Open Images v6. ART's model also predicts relations absent from training annotations, a capability the paper demonstrates is missing from mainstream scene-graph models, and these richer relations transfer downstream: scene graphs generated by ART resolve deictic segmentation prompts that ground-truth scene graphs miss. The authors frame the result as evidence that for imbalanced relation data, which samples you tune on matters more than how much you tune.
Load-bearing premise
Everything leans on one measure: an embedding-based semantic similarity score, cut at a 0.95 threshold that the paper says was chosen by qualitative inspection, is assumed to reliably tell harmless paraphrases of a relation (girl has hair versus girl with hair) apart from genuinely wrong relations (bag under table versus bag on table), and the same measure and threshold run both the training-sample selection and the headline generalized-recall numbers, so if that score is miscalibrated both sides of the argument drift together.
Editorial extensions
If this is right
- A vision-language model tuned on roughly 12% of an imbalanced relation dataset, selected adaptively, outperforms the same model tuned on the full dataset, so sample selection can dominate data volume for this task.
- Relation concepts never present in training annotations can be predicted, and this transfers to datasets with wholly new objects and predicates, which mainstream scene-graph models do not do.
- Pairing each positive relation with one counter-negative from a mutually exclusive high-level category improves mean recall more than random negatives, and one counter-negative is better than several.
- Adaptive, per-predicate thresholds for entropy and similarity beat any single fixed threshold, implying the selection rule should be customized per predicate.
- The predicted relations carry into a downstream task: a neuro-symbolic segmentation model resolves deictic prompts that ground-truth scene graphs fail on, with near-perfect mAP when object boxes are provided.
Reading between the lines
- The same similarity measure $S$ and the same 0.95 threshold drive both training-sample selection and the headline generalized-recall metrics, so the reported gains in gR and gmR are partly self-referential: if $S$ misjudges paraphrase equivalence, the sampling and the evaluation share the same error. These numbers would be worth re-checking against an independent semantic-equivalence oracle.
- The exclusivity table among spatial, semantic, and possessive relations is a domain heuristic; on datasets with a different predicate vocabulary the table would likely need re-derivation, and ART's edge could shrink if the presumed mutual exclusions do not hold there.
- ART's output is often more specific than the annotation it is scored against (for example, “girl petting dog” versus “girl interacts with dog”), which suggests standard exact-match metrics under-reward the method; a metric that credits semantic entailment could change the apparent gap between ART and random-sampling baselines.
- Since adaptive sampling roughly triples training time while leaving inference cost unchanged, the method's practical payoff depends on whether downstream applications extract enough value from fine-grained relations to justify the extra tuning cost.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces ART, an instruction-tuning framework for visual relation classification. The authors convert Visual Genome relation annotations into an instruction-following format with high-level relation categories (spatial/semantic/possessive) and counter-negative mining, then fine-tune a VLM (InstructBLIP with Vicuna-7B or FlanT5-XL) on a small, adaptively selected subset of the training data. The adaptive sampler (Algorithm 1) combines balanced initialization with per-predicate sampling that uses entropy on true positives and false negatives and a semantic-similarity score S on false positives, with per-predicate adaptive thresholds. The model is trained on VG and evaluated on GQA and Open Images (v4/v6), reporting Recall, mean Recall, and newly proposed generalized recall metrics gR/gmR that credit false positives whose similarity to the ground truth exceeds 0.95. The paper also evaluates a downstream deictic segmentation task with DeiSAM. The central claim is that ART outperforms naive instruction-tuned VLMs and classical VRD models on mean recall and can predict unseen, semantically meaningful relations.
Significance. If the main claims are correct, the paper makes a useful contribution: it shows how adaptive instance selection can improve the rare-relation and cross-dataset behavior of VLM-based relation classifiers, and it backs the approach with a released codebase, thorough ablations (Tables 2 and 3), honest computational-cost reporting (Table 6, Fig. 7), and a concrete downstream application. The core mR improvements over balanced-random baselines, especially on OI-v4 (e.g., Vicuna-7B mR@20/50 of 26.0/26.2 vs. 11.8/12.4 for balanced random), are non-trivial and are not affected by the generalized metric. However, the paper's headline generalization evidence is substantially carried by the new gR/gmR metrics, and those metrics share their similarity function S and 0.95 threshold with the adaptive sampler that guides training; this coupling is a serious load-bearing weakness that needs to be resolved before the claims can be accepted at face value.
major comments (4)
- [Sec. 3.2 (Algorithm 1, Step 2.2) and Appendix B] The generalized metrics gR/gmR and the adaptive sampler are coupled through the same semantic similarity function S and the same 0.95 threshold. Algorithm 1, Line 29, samples only false positives with S(s) < tFP, i.e., it explicitly declines to correct high-similarity false positives, while Appendix B defines gR/gmR by re-labeling exactly those high-similarity false positives (S > 0.95) as correct. Baselines are not trained with this S and thus receive no such credit during training. Consequently, the reported gR/gmR gains for ART can be inflated purely by this metric-sampler alignment, independent of any genuine semantic improvement. I ask the authors to (i) report exact-match mR/R@k alongside gR/gmR in all headline tables (Tab. 1 already does, but the accompanying text should not give the generalized metrics equal weight without this caveat), and (ii) add an evaluation where the similarity re-labeling is performed with an independently calibrated embedding model and a threshold fixed before inspecting ART's outputs, to show the generalization claim survives a change of S.
- [Appendix B (On semantic similarity for evaluation)] The similarity measure S is not specified in a reproducible way. The paper only refers to 'cosine similarity-based approach' and says the 0.95 threshold was 'selected based on qualitative analysis'; no embedding model, version, or computation details are given, and no calibration or error analysis is provided. Since S appears on both the training side (Step 2.2) and the evaluation side (gR/gmR), the absence of details makes the generalized-recall numbers unverifiable and the threshold choice appear unprincipled. Please specify the embedding model, the exact per-triplet similarity computation, and provide a sensitivity analysis of gR/gmR and of the final model's mR to the threshold (e.g., 0.90, 0.93, 0.95, 0.97, 0.99).
- [Table 4 and Sec. 4.2 (Q5)] The downstream segmentation result 'DeiSAM + ART (with bbox)' reaching mAP 99.98 on VG and 97.96 on GQA is implausibly high for a real segmentation task, especially when 'DeiSAM + GT (with bbox)' reaches only 35.04 and 43.84. This suggests that the evaluation protocol or the bbox-conditioned setup inadvertently leaks the solution (for example, by using the bounding box as a seed mask or by computing mAP over an extremely small candidate set). Please clarify the exact protocol for the 'with bbox' condition, report per-image metrics and failure cases, and verify that the comparison with DeiSAM + GT is apples-to-apples.
- [Figs. 4/6, Sec. 4.2 (Q1-Q2), and Appendix H] The claim that ART 'can infer unseen relation concepts' is supported only by counts of unique and unseen predictions (Figs. 4/6) and by qualitative examples (Appendix H). No quantitative precision or recall is reported on the subset of test predicates that never appear in the VG training vocabulary. Please compute per-predicate mR or precision@k on the held-out predicate subset for ART and for all baselines, so that the zero-shot/unseen-concept capability is measured rather than merely illustrated.
minor comments (4)
- [Table 2] In the first row, both R@k and mR@k are reported as 37.5/38.0 and 37.5/38.0; identical values for these two metrics are suspicious and should be checked for a typo.
- [Figs. 4 and 6] The figures showing unique and unseen relation predictions lack readable axis labels and numerical values, making it impossible to extract the counts that the text refers to; please add labeled axes and, if possible, tabulate the counts.
- [Sec. 4.2 (Q1)] The sentence 'Vicuna-7B+ARToutperforms the strongest baseline' contains a missing space between 'ART' and 'outperforms'; please fix the typo.
- [Appendix G, Table 7] The first row of Table 7 changes both tFP and tFN from the midpoint, while the text says 'lower t and increase h from their midpoint values'; please clarify the naming so that 'Lower-t' refers to both low-similarity FP and low-entropy FN thresholds, or split the rows to show each variation separately.
Circularity Check
The generalized-recall metrics gR/gmR share their semantic-similarity function S and its 0.95 threshold with ART's adaptive sampler, so the headline generalization gains are partially aligned with the training objective by construction.
-
self definitional
[Sec. 4.1 (Evaluation protocol and metrics), Sec. 3.2 / Algorithm 1 Step 2.2, Appendix B]
"To further assess generalization, we propose generalized Recall (gR@k) and mean generalized Recall (mgR@k), which treat false positives with high semantic similarity (measured by S from Sec. 3.2) as true positives."
The same semantic similarity function S is used on both sides of the pipeline. In Algorithm 1 Step 2.2, ART deliberately does not sample false positives with S(s) > tFP because they 'retain meaningful semantics, making them less critical for correction.' In Appendix B, the evaluation thresholds S at 95% and counts exactly those high-similarity false positives as true positives. Thus ART is trained to preserve the very predictions that gR/gmR reward: high-similarity FPs are left uncorrected during training and then re-labeled as correct during evaluation. The gR/gmR advantage over baselines in Table 1 is therefore partly a self-consistency between the training objective and the evaluation metric, not an independent measurement of generalization to unseen concepts.
full rationale
ART's central claim of improving over baselines is partially supported by non-circular evidence: the exact-match mean recall (mR@k) numbers in Table 1 and the downstream segmentation results do not depend on the semantic similarity function S. However, the paper's own generalized metrics gR/gmR are defined using S from Sec. 3.2, and the adaptive sampler is explicitly designed to avoid correcting high-similarity false positives because they are considered semantically valid. The evaluation then counts those same high-similarity false positives as true positives. This couples the training selection criterion to the headline evaluation metric, so the gR/gmR gains are inflated by construction if S is at all permissive. The threshold 0.95 was selected by qualitative analysis rather than calibrated independently, and no error analysis of S is provided. This is a genuine partial circularity, but it does not extend to mR, which is an exact-match metric, nor does it rely on self-citation or imported uniqueness theorems. The self-cited DeiSAM and VETO works are used as a downstream application and a baseline, respectively, and are not load-bearing for the core derivation. Overall, the paper has independent content, but the specific generalized-recall evidence for 'unseen relation concepts' is partially self-consistent rather than independently verified.
Assumptions & free parameters
free parameters (4)
- z-score threshold z_init =
1.96
- similarity threshold for gR/gmR =
0.95
- training data fraction =
12% of VG training data
- sampling budget per loop =
2% of training data per iteration
assumptions (4)
- ad hoc to paper The exclusivity rules in Eq. (1): spatial vs. possessive and semantic vs. possessive are mutually exclusive, while semantic vs. spatial are not.
- domain assumption Beam search entropy, averaged over beams and positions, is a valid measure of model uncertainty for sample selection.
- domain assumption The instruction template with a yes/no question about a specific relation reliably exposes the true relation in the image.
- domain assumption Validation-set recall per predicate is a reliable proxy for allocating sampling budgets in Algorithm 1.
Cite this review
Pith. "Pith review of ART: Adaptive Relation Tuning for Generalized Relation Prediction." pith.science (2026). https://pith.science/paper/W6CST7XD
@misc{pith2026250723543,
author = {Pith},
title = {Pith review of: ART: Adaptive Relation Tuning for Generalized Relation Prediction},
year = {2026},
howpublished = {\url{https://pith.science/paper/W6CST7XD}},
note = {Machine review of arXiv:2507.23543}
}
read the original abstract
Visual relation detection (VRD) is the task of identifying the relationships between objects in a scene. VRD models trained solely on relation detection data struggle to generalize beyond the relations on which they are trained. While prompt tuning has been used to adapt vision-language models (VLMs) for VRD, it uses handcrafted prompts and struggles with novel or complex relations. We argue that instruction tuning offers a more effective solution by fine-tuning VLMs on diverse instructional data. We thus introduce ART, an Adaptive Relation Tuning framework that adapts VLMs for VRD through instruction tuning and strategic instance selection. By converting VRD datasets into an instruction tuning format and employing an adaptive sampling algorithm, ART directs the VLM to focus on informative relations while maintaining generalizability. Specifically, we focus on the relation classification, where subject-object boxes are given and the model predicts the predicate between them. We tune on a held-in set and evaluate across multiple held-out datasets of varying complexity. Our approach strongly improves over its baselines and can infer unseen relation concepts, a capability absent in mainstream VRD methods. We demonstrate ART's practical value by using the predicted relations for segmenting complex scenes.
Figures
Figures from the paper (11 more)
Reference graph
Works this paper leans on
-
[1]
Flamingo: A visual language model for few-shot learning
Jean-Baptiste Alayrac, Jeff Donahue, Pauline Luc, Antoine Miech, Iain Barr, Yana Hasson, Karel Lenc, Arthur Men- sch, Katherine Millican, Malcolm Reynolds, Roman Ring, Eliza Rutherford, Serkan Cabi, Tengda Han, Zhitao Gong, Sina Samangooei, Marianne Monteiro, Jacob L Menick, Sebastian Borgeaud, Andy Brock, Aida Nematzadeh, Sa- hand Sharifzadeh, Mikołaj Bi...
work page 2022
-
[2]
Lawrence Zitnick, and Devi Parikh
Stanislaw Antol, Aishwarya Agrawal, Jiasen Lu, Margaret Mitchell, Dhruv Batra, C. Lawrence Zitnick, and Devi Parikh. VQA: Visual question answering. In ICCV, pages 2425–2433, 2015. 1
work page 2015
-
[3]
A comprehensive survey of scene graphs: Generation and application
Xiaojun Chang, Pengzhen Ren, Pengfei Xu, Zhihui Li, Xiao- jiang Chen, and Alex Hauptmann. A comprehensive survey of scene graphs: Generation and application. IEEE Trans. Pattern Anal. Mach. Intell., 45(1):1–26, 2021. 1
work page 2021
-
[4]
Scaling instruction- finetuned language models
Hyung Won Chung, Le Hou, Shayne Longpre, Barret Zoph, Yi Tay, William Fedus, Yunxuan Li, Xuezhi Wang, Mostafa Dehghani, Siddhartha Brahma, et al. Scaling instruction- finetuned language models. J. Mach. Learn. Res., 25, 2024. 6, 7, iii
work page 2024
-
[5]
Wenliang Dai, Junnan Li, Dongxu Li, Anthony Meng Huat Tiong, Junqi Zhao, Weisheng Wang, Boyang Li, Pascale N. Fung, and Steven Hoi. InstructBLIP: Towards general- purpose vision-language models with instruction tuning. NeurIPS, 2024. 1, 2, 6
work page 2024
-
[6]
EV A: Exploring the limits of masked visual represen- tation learning at scale
Yuxin Fang, Wen Wang, Binhui Xie, Quan Sun, Ledell Wu, Xinggang Wang, Tiejun Huang, Xinlong Wang, and Yue Cao. EV A: Exploring the limits of masked visual represen- tation learning at scale. In CVPR, 2023. 6
work page 2023
-
[7]
Deep Ensembles: A loss landscape perspective
Stanislav Fort, Huiyi Hu, and Balaji Lakshminarayanan. Deep Ensembles: A loss landscape perspective. arXiv:1912.02757 [stat.ML], 2019. 2
arXiv 1912
-
[8]
Dropout as a Bayesian approximation: Representing model uncertainty in deep learning
Yarin Gal and Zoubin Ghahramani. Dropout as a Bayesian approximation: Representing model uncertainty in deep learning. In ICML, pages 1050–1059, 2016. 2
work page 2016
Show all 49 references
-
[9]
ICAN: Instance-centric attention network for human-object interac- tion detection
Chen Gao, Yuliang Zou, and Jia-Bin Huang. ICAN: Instance-centric attention network for human-object interac- tion detection. In BMVC, 2018. 2
2018
-
[10]
To- wards open-vocabulary scene graph generation with prompt- based finetuning
Tao He, Lianli Gao, Jingkuan Song, and Yuan-Fang Li. To- wards open-vocabulary scene graph generation with prompt- based finetuning. In ECCV, 2022. 1, 2
2022
-
[11]
Zakir Hossain, Ferdous Sohel, Mohd Fairuz Shiratud- din, and Hamid Laga
Md. Zakir Hossain, Ferdous Sohel, Mohd Fairuz Shiratud- din, and Hamid Laga. A comprehensive survey of deep learn- ing for image captioning. ACM Computing Surveys, 51(6): 1–36, 2019. 1
2019
-
[12]
Hudson and Christopher D
Drew A. Hudson and Christopher D. Manning. GQA: A new dataset for real-world visual reasoning and compositional question answering. In CVPR, pages 6700–6709, 2019. 1, 6, i
2019
-
[13]
A. S. M. Iftekhar, Satish Kumar, R. Austin McEver, Suya You, and B. S. Manjunath. GTNet: Guided transformer net- work for detecting human-object interactions. In Pattern Recognition and Tracking XXXIV , pages 192–205. SPIE,
-
[14]
Shamma, et al
Ranjay Krishna, Yuke Zhu, Oliver Groth, Justin Johnson, Kenji Hata, Joshua Kravitz, Stephanie Chen, Yannis Kalan- tidis, Li-Jia Li, David A. Shamma, et al. Visual Genome: Connecting language and vision using crowdsourced dense image annotations. Int. J. Comput. Vis., 123(1):32...
2017
-
[15]
Active instruction tuning: Improving cross- task generalization by training on prompt sensitive tasks
Po-Nien Kung, Fan Yin, Di Wu, Kai-Wei Chang, and Nanyun Peng. Active instruction tuning: Improving cross- task generalization by training on prompt sensitive tasks. arXiv:2311.00288 [cs.CL], 2023. 2
2023 arXiv
-
[16]
The Open Images Dataset V4: Uni- fied image classification, object detection, and visual rela- tionship detection at scale
Alina Kuznetsova, Hassan Rom, Neil Alldrin, Jasper Ui- jlings, Ivan Krasin, Jordi Pont-Tuset, Shahab Kamali, Stefan Popov, Matteo Malloci, Alexander Kolesnikov, Tom Duerig, and Vittorio Ferrari. The Open Images Dataset V4: Uni- fied image classification, object detection, and ...
1956
-
[17]
LISA: Reasoning segmenta- tion via large language model
Xin Lai, Zhuotao Tian, Yukang Chen, Yanwei Li, Yuhui Yuan, Shu Liu, and Jiaya Jia. LISA: Reasoning segmenta- tion via large language model. In CVPR, 2024. 8
2024
-
[18]
Distance weighted cosine similar- ity measure for text classification
Baoli Li and Liping Han. Distance weighted cosine similar- ity measure for text classification. In Intelligent Data Engi- neering and Automated Learning, 2013. 2
2013
-
[19]
Dongxu Li, Junnan Li, Hung Le, Guangsen Wang, Silvio Savarese, and Steven C. H. Hoi. LA VIS: A library for language-vision intelligence. arXiv:2209.09019 [cs.CV] ,
-
[20]
BLIP-2: Bootstrapping language-image pre-training with frozen image encoders and large language models
Junnan Li, Dongxu Li, Silvio Savarese, and Steven Hoi. BLIP-2: Bootstrapping language-image pre-training with frozen image encoders and large language models. In ICML,
-
[21]
The devil is in the labels: Noisy label correction for robust scene graph generation
Lin Li, Long Chen, Yifeng Huang, Zhimeng Zhang, Songyang Zhang, and Jun Xiao. The devil is in the labels: Noisy label correction for robust scene graph generation. In CVPR, pages 18869–18878, 2022. 2
2022
-
[22]
Zero-shot visual relation detection via com- posite visual cues from large language models
Lin Li, Jun Xiao, Guikun Chen, Jian Shao, Yueting Zhuang, and Long Chen. Zero-shot visual relation detection via com- posite visual cues from large language models. NeurIPS,
-
[23]
Natural language guided visual relationship de- tection
Wentong Liao, Bodo Rosenhahn, Ling Shuai, and Michael Ying Yang. Natural language guided visual relationship de- tection. In CVPRW, 2019. 2
2019
-
[24]
Visual instruction tuning
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning. In NeurIPS, 2023. 1 9
2023
-
[25]
Pre-train, prompt, and predict: A systematic survey of prompting methods in nat- ural language processing
Pengfei Liu, Weizhe Yuan, Jinlan Fu, Zhengbao Jiang, Hi- roaki Hayashi, and Graham Neubig. Pre-train, prompt, and predict: A systematic survey of prompting methods in nat- ural language processing. ACM Computing Surveys, 2023. 2
2023
-
[26]
Visual relationship detection with language priors
Cewu Lu, Ranjay Krishna, Michael Bernstein, and Li Fei- Fei. Visual relationship detection with language priors. In ECCV, pages 852–869, 2016. 2
2016
-
[27]
How to measure uncertainty in uncertainty sampling for active learning
Vu-Linh Nguyen, Mohammad Hossein Shaker, and Eyke H¨ullermeier. How to measure uncertainty in uncertainty sampling for active learning. Machine Learning, 111(1):89– 122, 2022. 2, 4
2022
-
[28]
A literature survey of active machine learn- ing in the context of natural language processing.SICS Tech- nical Report, 2009
Fredrik Olsson. A literature survey of active machine learn- ing in the context of natural language processing.SICS Tech- nical Report, 2009. 2
2009
-
[29]
Learning transferable visual models from natural language supervision
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, Gretchen Krueger, and Ilya Sutskever. Learning transferable visual models from natural language supervision. In ICML, 2021. 1
2021
-
[30]
Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J. Liu. Exploring the limits of transfer learning with a unified text-to-text transformer. J. Mach. Learn. Res., 21,
-
[31]
Zero-shot object detection: Learning to simultaneously recognize and localize novel concepts
Shafin Rahman, Salman Khan, and Fatih Porikli. Zero-shot object detection: Learning to simultaneously recognize and localize novel concepts. In ACCV, pages 547–563, 2018. 2
2018
-
[32]
DeiSAM: Segment anything with deictic prompting
Hikaru Shindo, Manuel Brack, Gopika Sudhakaran, Deven- dra Singh Dhami, Patrick Schramowski, and Kristian Kerst- ing. DeiSAM: Segment anything with deictic prompting. In NeurIPS, 2024. 1, 8, iv
2024
-
[33]
Aditya Siddhant and Zachary C. Lipton. Deep Bayesian active learning for natural language processing: Results of a large-scale empirical study. arXiv:1808.05697 [cs.CL] ,
-
[34]
Vision relation transformer for unbi- ased scene graph generation
Gopika Sudhakaran, Devendra Singh Dhami, Kristian Kerst- ing, and Stefan Roth. Vision relation transformer for unbi- ased scene graph generation. In ICCV, 2023. 2, 6, 7, i
2023
-
[35]
Learning to compose dynamic tree structures for visual contexts
Kaihua Tang, Hanwang Zhang, Baoyuan Wu, Wenhan Luo, and Wei Liu. Learning to compose dynamic tree structures for visual contexts. In CVPR, pages 6619–6628, 2019. 1
2019
-
[36]
Unbiased scene graph generation from bi- ased training
Kaihua Tang, Yulei Niu, Jianqiang Huang, Jiaxin Shi, and Hanwang Zhang. Unbiased scene graph generation from bi- ased training. In CVPR, pages 3716–3725, 2020. 2, 7, i
2020
-
[37]
LLaMA: Open and efficient foundation language models
Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timoth´ee Lacroix, Baptiste Rozi`ere, Naman Goyal, Eric Hambro, Faisal Azhar, et al. LLaMA: Open and efficient foundation language models. arXiv:2302.13971 [cs.CL], 2023. 6
2023 arXiv
-
[38]
Oytun Ulutan, A. S. M. Iftekhar, and Bangalore S. Manju- nath. VSGNet: Spatial attention network for detecting hu- man object interactions using graph convolutions. In CVPR, pages 13617–13626, 2020. 2
2020
-
[39]
Dai, and Quoc V
Jason Wei, Maarten Bosma, Vincent Y Zhao, Kelvin Guu, Adams Wei Yu, Brian Lester, Nan Du, Andrew M. Dai, and Quoc V . Le. Finetuned language models are zero-shot learn- ers. arXiv:2109.01652 [cs.CL], 2021. 2
2021 arXiv
-
[40]
Detectron2
Yuxin Wu et al. Detectron2. https://github.com/ facebookresearch/detectron2, 2019. 8
2019
-
[41]
Kankanhalli
Bingjie Xu, Yongkang Wong, Junnan Li, Qi Zhao, and Mo- han S. Kankanhalli. Learning to detect human-object inter- actions with knowledge. In CVPR, 2019. 2
2019
-
[42]
Hauptman
Caixia Yan, Qinghua Zheng, Xiaojun Chang, Minnan Luo, Chung-Hsing Yeh, and Alexander G. Hauptman. Semantics- preserving graph propagation for zero-shot object detection. IEEE Trans. Image Process., 29:8163–8176, 2020. 2
2020
-
[43]
Semantics-guided contrastive network for zero-shot object detection
Caixia Yan, Xiaojun Chang, Minnan Luo, Huan Liu, Xiaoqin Zhang, and Qinghua Zheng. Semantics-guided contrastive network for zero-shot object detection. IEEE Trans. Pattern Anal. Mach. Intell., 46(3):1530–1544, 2024. 2
2024
-
[44]
Neural Motifs: Scene graph parsing with global con- text
Rowan Zellers, Mark Yatskar, Sam Thomson, and Yejin Choi. Neural Motifs: Scene graph parsing with global con- text. In CVPR, pages 5831–5840, 2018. 1, 2, 3, 6, 7, i
2018
-
[45]
Visual translation embedding network for visual relation detection
Hanwang Zhang, Zawlin Kyaw, Shih-Fu Chang, and Tat- Seng Chua. Visual translation embedding network for visual relation detection. In CVPR, pages 5532–5540, 2017. 6, 7, i
2017
-
[46]
Youcai et al. Zhang. Recognize anything: A strong image tagging model. In CVPR, pages 1724–1732, 2024. 8
2024
-
[47]
A survey of active learning for natural language processing
Zhisong Zhang, Emma Strubell, and Eduard Hovy. A survey of active learning for natural language processing. arXiv:2210.10109 [cs.CL], 2022. 2
2022 arXiv
-
[48]
Prototype-based embedding network for scene graph generation
Chaofan Zheng, Xinyu Lyu, Lianli Gao, Bo Dai, and Jingkuan Song. Prototype-based embedding network for scene graph generation. In CVPR, 2023. 2, 6, 7, i
2023
-
[49]
bag on table
Lianmin Zheng, Wei-Lin Chiang, Ying Sheng, Siyuan Zhuang, Zhanghao Wu, Yonghao Zhuang, Zi Lin, Zhuohan Li, Dacheng Li, Eric. P Xing, Hao Zhang, Joseph E. Gon- zalez, and Ion Stoica. Judging LLM-as-a-judge with MT- Bench and Chatbot Arena. arXiv:2306.05685 [cs.CL], 2023. 6, 7, ...
2023 arXiv
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.