REVIEW 2 major objections 4 minor 65 cited by
LXMERT: Learning Cross-Modality Encoder Representations from Transformers
T0 review · 2 major / 4 minor · reviewed 2026-08-14 · deepseek-v4-flash
Pith's one-line read A three-encoder transformer pretrained on image-sentence pairs learns reusable vision-language representations and sets high scores on VQA, GQA, and NLVR2.
desk verdict LXMERT is a genuinely influential cross-modal pretraining paper whose VQA 'state-of-the-art' claim is time-stamped to May 2019 and its own footnote shows MCAN later passed it, but that nuance doesn't shake the architecture, ablations, or the striking NLVR2 result. 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 object is LXMERT's three-encoder transformer: a language encoder, an object-relationship encoder over detected region features, and a cross-modality encoder whose bidirectional cross-attention sub-layers align words to objects and objects to words. Five pretraining tasks push the same weights: masked cross-modality language modeling, masked object prediction through both RoI-feature regression and detected-label classification, cross-modality matching, and image question answering. Together these tasks force the model to predict a missing piece of one modality using evidence from the other, which is what makes the learned alignments transferable to new tasks.
What would settle it
Replace the bidirectional cross-attention sub-layers in the cross-modality encoder with a simple concatenation of the two single-modality outputs, keeping the same five pretraining tasks; if that model still reaches 76.2% on NLVR2, the paper's claim that cross-attention alignment is essential to the transfer would be undercut.
Extended reading notes
Core claim
LXMERT's central claim is that cross-modality pretraining, not just single-modality pretraining, is what lets a model answer questions about images and judge whether sentences describe images. The model takes a sentence and a fixed set of 36 detected image regions, encodes each modality with its own transformer, and then lets the two streams exchange information through bidirectional cross-attention layers. Pretraining the whole stack on image-caption and image-question pairs lets masked words be filled in from visual evidence and masked objects be predicted from language, so the learned representations contain both intra-modality and cross-modality structure. The paper reports that this yields the highest published results on VQA and GQA and a 22% absolute improvement on NLVR2 over the previous best, and that removing the cross-modality encoder or any of the pretraining tasks lowers accuracy.
Load-bearing premise
The whole model sees an image only through 36 regions produced by a frozen Faster R-CNN detector trained on Visual Genome; if those regions miss fine-grained details or relations the questions need, no amount of cross-modality pretraining can recover them.
Editorial extensions
If this is right
- The same pretrained LXMERT weights can be fine-tuned to a two-image reasoning task whose images were never seen in pretraining, and still gain 22 absolute points over the previous best, so the learned cross-modality representations transfer to unseen visual domains.
- On VQA and GQA, a single model without task-specific modules reaches the highest published scores, suggesting that cross-modality pretraining supplies much of what task-specific designs previously supplied.
- The ablations imply each pretraining task is doing work: dropping the vision tasks or the image QA objective lowers development accuracy on all three benchmarks.
- Loading a language-only pretrained encoder into LXMERT produces weaker final results than training the same architecture from scratch, indicating that the cross-modality objective, not just the language initialization, drives the improvement.
Reading between the lines
- The same recipe should apply to any task that pairs one image with one sentence, such as caption retrieval, referring expression grounding, or visual entailment, because the pretraining objectives only assume aligned image-text pairs.
- Because the vision input is capped at 36 frozen object regions, the next measurable gains may come not from larger fusion layers but from richer or fine-tuned visual features; the paper's own detector choice is the likeliest ceiling on further improvement.
- A testable corollary is that cross-modality pretraining should reduce the amount of task-specific supervision needed: fine-tuning LXMERT on smaller fractions of VQA or GQA should degrade more gracefully than a model trained from scratch.
- The large NLVR2 jump may partly reflect how weak the previous baseline was, but the consistency metric improving from 12% to 42.1% suggests the gain is not only on easy examples.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes LXMERT, a Transformer-based cross-modal encoder with three encoders (language, object-relationship, and cross-modality) and five pretraining objectives (masked language modeling, masked object feature regression, masked object label classification, cross-modality matching, and image QA). The model is pretrained on 9.18M image-sentence pairs from COCO, Visual Genome, VQA, GQA, and VG-QA, then fine-tuned on VQA v2.0, GQA, and NLVR2. The authors report 72.5% on VQA test-standard, 60.3% on GQA test-standard, and 76.2% on NLVR2 Test-U, a 22% absolute improvement over the prior best result, and they provide ablation studies (Tables 3-5) and attention visualizations.
Significance. If the results hold, LXMERT is an important early demonstration that large-scale cross-modal pretraining transfers to vision-and-language tasks; the 22% absolute gain on NLVR2 and the ablation pattern are strong evidence for the value of the proposed pretraining tasks and architecture. The paper is also commendable for releasing code and pretrained models and for carefully describing data splits in Appendix C. The main qualification is that the unqualified state-of-the-art claim on VQA is not supported by the paper's own footnote listing MCAN at 72.8%.
major comments (2)
- [Abstract; §1; §4.3 (footnote 5); Table 2; §7] The paper repeatedly claims that LXMERT 'achieves the state-of-the-art results' on VQA (abstract, Section 1, and conclusion), but footnote 5 in Section 4.3 states that MCAN (VQA challenge version) reaches 72.8% on VQA 2.0 test-standard, which is higher than LXMERT's 72.5%. The Table 2 caption includes the qualifier '(comparable)', but the abstract and conclusion do not, making the central empirical claim internally inconsistent. Please qualify the VQA claim as state-of-the-art among methods submitted by the EMNLP deadline, or among comparable single-feature models, and integrate the MCAN comparison into the main text rather than only in a footnote. The GQA and NLVR2 claims are not affected.
- [§5, Tables 3-5] All accuracy numbers in the ablation tables come from single runs; there are no error bars, confidence intervals, or multiple seeds. In several places the differences between variants are very small (e.g., Table 5 rows 2 and 3 differ by 0.2-0.3 accuracy on VQA and GQA), while the text claims that the components 'significantly contribute' to the results. Please add variance information, or soften the significance wording to reflect the evidence level. This is needed to support the paper's second central claim that the individual pretraining tasks and model components are each responsible for the gains.
minor comments (4)
- [§7] There is a typo in the conclusion: 'Transfermer' should be 'Transformer'.
- [§6] The related-work statement that LXMERT provides 'the current best performance' with a 'margin of 1.5% accuracy on VQA 2.0' needs the same timestamp/qualification as the main state-of-the-art claim, since footnote 5 already lists MCAN above LXMERT.
- [§3.3] The frozen Faster R-CNN detector is a design choice, but its ceiling effect is not analyzed; a sentence in the main text acknowledging this limitation would be appropriate, since the model can never recover visual information that the detector does not provide.
- [§5.2] The pre-training versus data augmentation comparison would be clearer if the text specified exactly which data are added in the DA condition and how the total data volume is matched, since the current wording only says the amounts are 'similar'.
Circularity Check
No circularity: LXMERT's architecture and pretraining are evaluated on held-out test splits, with ablations and external baselines supporting the claims.
full rationale
The paper's central claim is that a new cross-modality Transformer architecture, pretrained with five tasks on aggregated vision-and-language data, improves VQA, GQA, and NLVR2 performance after fine-tuning. This claim is not derived by construction from its inputs. The model parameters are not fitted to the test-standard or Test-U labels; evaluation is on held-out splits as described in Appendix C, and the NLVR2 evaluation explicitly uses images and statements not present in pretraining ('we do not use the natural images in their dataset for our pre-training, but fine-tune and evaluate on these challenging, real-world images'). The pretraining objectives (masked language modeling, masked object prediction, cross-modality matching, image QA) are auxiliary self-supervised or supervised tasks on train/dev corpora, and the reported gains are benchmark comparisons against external state-of-the-art methods, not algebraic consequences of the objective definitions. The ablations in Tables 3–5 compare variants and show that the pretraining tasks and architecture components contribute empirically to the results. There is no fitting of a parameter to a subset of data that is then relabeled as a prediction, no target quantity defined in terms of the model's own outputs, and no load-bearing self-citation chain. The footnote reporting MCAN's 72.8% versus LXMERT's 72.5% is an internal consistency or factual-qualification concern about the unqualified 'state-of-the-art' wording, not a circularity issue, because the empirical comparison does not reduce to the model's own construction. Overall, the derivation and evaluation are self-contained against external benchmarks, so the circularity score is 0.
Assumptions & free parameters
free parameters (5)
- Number of object proposals per image =
36
- Layer counts NL, NX, NR =
9, 5, 5
- Hidden size =
768
- Pretraining epochs per phase =
20 total; image QA only in last 10
- Peak learning rates =
1e-4 pretrain, 1e-5/5e-5 fine-tune
assumptions (5)
- domain assumption The frozen Faster R-CNN object detector provides region features that encode sufficient visual semantics for vision-and-language tasks.
- domain assumption The five pretraining tasks (masked LM, masked object regression/classification, matching, image QA) jointly learn representations that transfer to downstream tasks.
- standard math The Transformer architecture and its attention layers can learn the needed intra- and cross-modality alignments from the pretraining data.
- domain assumption Evaluation benchmarks VQA v2.0, GQA, and NLVR2 reliably measure vision-and-language reasoning.
- domain assumption The data split procedure prevents test images from being seen during pretraining.
Cite this review
Pith. "Pith review of LXMERT: Learning Cross-Modality Encoder Representations from Transformers." pith.science (2026). https://pith.science/paper/FPIGQHMJ
@misc{pith2026190807490,
author = {Pith},
title = {Pith review of: LXMERT: Learning Cross-Modality Encoder Representations from Transformers},
year = {2026},
howpublished = {\url{https://pith.science/paper/FPIGQHMJ}},
note = {Machine review of arXiv:1908.07490}
}
read the original abstract
Vision-and-language reasoning requires an understanding of visual concepts, language semantics, and, most importantly, the alignment and relationships between these two modalities. We thus propose the LXMERT (Learning Cross-Modality Encoder Representations from Transformers) framework to learn these vision-and-language connections. In LXMERT, we build a large-scale Transformer model that consists of three encoders: an object relationship encoder, a language encoder, and a cross-modality encoder. Next, to endow our model with the capability of connecting vision and language semantics, we pre-train the model with large amounts of image-and-sentence pairs, via five diverse representative pre-training tasks: masked language modeling, masked object prediction (feature regression and label classification), cross-modality matching, and image question answering. These tasks help in learning both intra-modality and cross-modality relationships. After fine-tuning from our pre-trained parameters, our model achieves the state-of-the-art results on two visual question answering datasets (i.e., VQA and GQA). We also show the generalizability of our pre-trained cross-modality model by adapting it to a challenging visual-reasoning task, NLVR2, and improve the previous best result by 22% absolute (54% to 76%). Lastly, we demonstrate detailed ablation studies to prove that both our novel model components and pre-training strategies significantly contribute to our strong results; and also present several attention visualizations for the different encoders. Code and pre-trained models publicly available at: https://github.com/airsplay/lxmert
Figures
Forward citations
Showing 60 of 65 Pith papers that cite this
-
Multi-modal contrastive learning adapts to intrinsic dimensions of shared latent variables
Multi-modal InfoNCE minimizers with temperature optimization provably adapt to the intrinsic dimension of the shared latent variables when aligned maximal-information encoders exist.
-
Scaling Representation Diversity: Modulated Attention and Reconstructive Regularization for Visual Grounding
A unified visual grounding framework combining a broadcast cross-attention head, a JEPA auxiliary loss, and an MLLM-generated caption dataset preserves representation diversity and generalizes across RefCOCO/+/g.
-
When Does An Extra View Help? Adapting Single-View 3D Reconstruction with Extra Imagery
ASV3D improves single-view 3D reconstruction by using one extra unposed photo, with a consistency-based gate selecting which image conditions each generated view.
-
DICA: Dual-Indicator Guided Contrastive Alignment in Multimodal Large Language Models
Monitoring attention entropy and image-output correlation during decoding, then applying targeted contrastive corrections, reduces hallucination in multimodal LLMs without retraining.
-
XRFormer: Multiscale Tokenization for XRF Representation Learning
A multiscale convolutional tokenizer plus MSM/PPP pretraining yields more accurate, parameter-efficient transformers for XRF pigment identification and unmixing than ViT, SpectralFormer, or 1D-CNN baselines.
-
Attn-Adapter: Attention Is All You Need for Online Few-shot Learner of Vision-Language Model
A dual attention adapter using support-image memory and local-global feature mixing improves CLIP few-shot and domain-shift classification.
-
SEAM: Semantically Equivalent Across Modalities Benchmark for Vision-Language Models
SEAM measures VLM reasoning consistency across modalities using paired semantically equivalent textual and visual notations, and finds systematic vision-language imbalance.
-
PlantExpertVQA: A Visual Question Answering Dataset for Benchmarking Vision-Language Models in Plant Science
PlantExpertVQA is a 765,186-question visual QA benchmark for plant diseases on which current vision-language models score poorly and on which small-model fine-tuning yields large gains.
-
DAgger Diffusion Navigation: DAgger Boosted Diffusion Policy for Vision-Language Navigation
A single diffusion policy trained with DAgger, without a waypoint predictor, reports better performance than two-stage waypoint-based models on VLN-CE benchmarks.
-
Gait-Based Hand Load Estimation via Deep Latent Variable Models with Auxiliary Information
A VAE-TCN model with bidirectional cross-attention that uses unloaded baseline gait and marginalizes over carrying style cuts hand-load estimation MAE to 5.67 lb on a 22-person IMU dataset.
-
NavMorph: A Self-Evolving World Model for Vision-and-Language Navigation in Continuous Environments
NavMorph combines an RSSM-based latent world model with an online-updated contextual memory, reporting consistent VLN-CE gains on R2R-CE and RxR-CE.
-
GenRecal: Generation after Recalibration from Large to Small Vision-Language Models
A learnable Recalibrator bridges different tokenizers so that small VLMs can distill knowledge from any large VLM, improving their benchmark scores.
-
Weakly-supervised VLM-guided Partial Contrastive Learning for Visual Language Navigation
A VLM-guided partial contrastive loss, which treats views sharing an object as positive pairs, improves visual language navigation success on R2R, REVERIE and SOON without VLM fine-tuning.
-
Light as Deception: GPT-driven Natural Relighting Against Vision-Language Pre-training Models
LightD creates natural adversarial relighting images with GPT-selected lighting parameters and gradient optimization, outperforming prior non-suspicious attacks on vision-language models.
-
R1-ShareVL: Incentivizing Reasoning Capability of Multimodal Large Language Models via Share-GRPO
Share-GRPO creates paraphrased and visually augmented versions of reasoning questions and shares answers and reward signals across versions, improving multimodal reasoning without cold-start SFT.
-
DPSeg: Dual-Prompt Cost Volume Learning for Open-Vocabulary Semantic Segmentation
DPSeg adds Stable Diffusion generated visual prompts to CLIP text prompts to build cost volumes for open-vocabulary semantic segmentation, reporting state-of-the-art mIoU on five benchmarks.
-
A Multimodal PDE Foundation Model for Prediction and Scientific Text Descriptions
A multimodal transformer predicts ODE/PDE solutions and generates correct scientific text descriptions from numerical and symbolic inputs, with low error on in-distribution and out-of-distribution tests.
-
Can MLLMs Reason in Multimodality? EMMA: An Enhanced MultiModal ReAsoning Benchmark
A new multimodal reasoning benchmark shows that state-of-the-art AI models lag human experts by more than 30 percentage points, with visual reasoning errors as the main bottleneck.
-
CGCOD: Class-Guided Camouflaged Object Detection
A new COD benchmark with class labels and a text-guided framework that outperforms existing camouflaged object detectors.
-
Enhancing Fine-Grained Vision-Language Pretraining with Negative Augmented Samples
A vision-language pretraining method generates token-level negative image samples from a visual dictionary and combines them with textual negatives to improve fine-grained understanding.
-
GAMED: Knowledge Adaptive Multi-Experts Decoupling for Multimodal Fake News Detection
By decoupling text and image processing, refining features with mixtures of experts and AdaIN, and combining them through a confidence-based veto vote, GAMED reports state-of-the-art accuracy on Fakeddit (93.93%) and ...
-
Unified Framework for Open-World Compositional Zero-shot Learning
A single-stream vision-language transformer with top-K text selection and a sparse compositor achieves state-of-the-art open-world compositional zero-shot learning on MIT-States, C-GQA, and VAW-CZSL.
-
Planning from Imagination: Episodic Simulation and Episodic Memory for Vision-and-Language Navigation
SALI adds a recurrently generated 'imagination' map of unvisited scenes to a real-observation memory, reporting state-of-the-art SPL on R2R and REVERIE.
-
Generating a Paracosm for Training-Free Zero-Shot Composed Image Retrieval
By generating an edited "mental image" of a query and synthetic counterparts of database images, and matching in that synthetic space, Paracosm achieves state-of-the-art training-free zero-shot composed image retrieva...
-
MIND: Multi-rationale INtegrated Discriminative Reasoning Framework for Multi-modal Large Models
MIND improves multimodal reasoning by training on diverse correct and deliberately wrong rationales with two-stage correction and contrastive alignment, reporting SOTA on ScienceQA, A-OKVQA, and M3CoT.
-
VELVET-Med: Vision and Efficient Language Pre-training for Volumetric Imaging Tasks in Medicine
VELVET-Med combines a sentence-aware TriBERT text encoder, hierarchical contrastive learning, and uni-modal self-supervision to pre-train 3D CT vision-language encoders on 38,875 scan-report pairs.
-
AME: Aligned Manifold Entropy for Robust Vision-Language Distillation
A plug-and-play manifold entropy module improves few-shot vision-language distillation in the reported 11-dataset benchmarks, while the claimed generalization bound rests on unproven assumptions.
-
Decoding the Multimodal Maze: A Systematic Review on the Adoption of Explainability in Multimodal Attention-based Models
A systematic review of 55 papers finds explainability for multimodal attention-based models is dominated by attention-weight visualizations, while evaluation remains mostly qualitative and non-standardized.
-
Traits Run Deep: Enhancing Personality Assessment via Psychology-Guided LLM Representations and Multimodal Apparent Behaviors
Psychology-guided LLM text embeddings fused with audio and facial cues achieved the lowest MSE in the AVI 2025 personality assessment challenge.
-
MM-Prompt: Cross-Modal Prompt Tuning for Continual Visual Question Answering
MM-Prompt couples the visual and language prompt paths in continual VQA, and reports higher average accuracy and lower forgetting than existing prompt-based methods.
-
Mitigating Hallucinations via Inter-Layer Consistency Aggregation in Large Vision-Language Models
DCLA reduces hallucinations by correcting each transformer layer's hidden state toward an exponentially weighted average of earlier layers, gated by a cosine-similarity threshold.
-
Probabilistic Embeddings for Frozen Vision-Language Models: Uncertainty Quantification with Gaussian Process Latent Variable Models
A post-hoc GPLVM adapter learns probabilistic embeddings from frozen CLIP and BLIP embeddings and reports state-of-the-art calibration on retrieval, VQA, and active learning benchmarks.
-
Think Hierarchically, Act Dynamically: Hierarchical Multi-modal Fusion and Reasoning for Vision-and-Language Navigation
MFRA combines a hierarchical DIRformer-style fusion backbone with instruction-guided attention and a GRU history encoder, reporting improved VLN benchmark scores.
-
MIM: Multi-modal Content Interest Modeling Paradigm for User Behavior Modeling
MIM aligns multi-modal item embeddings with purchase-based user interest signals and combines them with ID-based collaborative filtering, reporting small offline AUC gains and large online CTR and RPM gains at Taobao.
-
sDREAMER: Self-distilled Mixture-of-Modality-Experts Transformer for Automatic Sleep Staging
A mixture-of-modality-experts transformer with self-distillation reports improved mouse sleep staging and enables single-channel inference after multi-channel training.
-
SAFE-MEME: Structured Reasoning Framework for Robust Hate Speech Detection in Memes
SAFE-MEME, a two-variant chain-of-thought framework, reaches macro F1 of 0.55 on new MHS and 0.619 on new MHS-Con, outperforming several open baselines on its own benchmarks.
-
AlignMamba: Enhancing Multimodal Mamba with Local and Global Cross-modal Alignment
AlignMamba fuses audio, video, and language by matching tokens to a language anchor and enforcing distribution similarity, reporting small accuracy gains with large efficiency gains on MOSI and MOSEI.
-
Beyond Logit Lens: Contextual Embeddings for Robust Hallucination Detection & Grounding in VLMs
Middle-layer contextual embeddings, not logit-lens readings, improve hallucination detection in VLMs and enable bounding-box grounding for visual question answering.
-
VisGraphVar: A Benchmark Generator for Assessing Variability in Graph Analysis Using Large Vision-Language Models
A new graph-image benchmark generator shows that six large vision-language models are sensitive to layout, labeling, and visual defects across seven graph tasks.
-
Multimodal Plant Root Phenotyping with Integration of 3D Skeleton Extraction and Language Analysis
An unsupervised 3D root skeleton extractor plus evidence-first GPT-4o fine-tuning is claimed to improve root phenotyping VQA accuracy on a private 12-species dataset.
-
Towards Dual-Brain Minimal Sufficient Representation for Vision-Language Navigation
A CP-decomposed, instruction-conditioned latent bottleneck (CompactNav) improves VLN-CE success rate by about 2% over prior state of the art on two benchmarks.
-
A Survey on Semantic Communication for Vision: Categories, Frameworks, Enabling Techniques, and Applications
A survey that classifies visual semantic communication into preservation, expansion, and refinement categories and reviews their machine-learning components and applications.
-
EVENT-Retriever: Event-Aware Multimodal Image Retrieval for Realistic Captions
A Qwen-based four-stage retrieval pipeline with RRF ensembling achieves the top-1 score on the EVENTA 2025 Track 2 private test set.
-
Analyzing the Sensitivity of Vision Language Models in Visual Question Answering
Adding answer-preserving visual or relational modifiers to visual questions lowers accuracy of GPT-4o, Gemini-1.5-Flash, and Claude-3.5-Sonnet on VQA v2.0.
-
Can Mental Imagery Improve the Thinking Capabilities of AI Systems?
A framework for machine thinking that adds a Mental Imagery Unit is described, but its demonstrations do not test whether imagery improves reasoning.
-
Co-AttenDWG: Co-Attentive Dimension-Wise Gating and Expert Fusion for Multi-Modal Offensive Content Detection
A new multimodal fusion architecture reports small state-of-the-art gains on two offensive content benchmarks using co-attention, dimension-wise gating, and expert fusion.
-
DOPE: Dual Object Perception-Enhancement Network for Vision-and-Language Navigation
DOPE augments a DUET navigation backbone with text and image object attention modules and reports improved success rates on the R2R and REVERIE benchmarks.
-
Analysing the Robustness of Vision-Language-Models to Common Corruptions
The paper introduces TextVQA-C and GQA-C, showing that LLaVA 1.5 loses text-question accuracy most under blur and snow and object-question accuracy most under frost and impulse noise, though only one model is tested.
-
Explainability for Vision Foundation Models: A Survey
A structured review of 122 papers on explainability for vision foundation models, with a taxonomy and the finding that quantitative evaluation is rare (36%).
-
MASS: Overcoming Language Bias in Image-Text Matching
MASS re-scores image-text pairs with pointwise mutual information, estimated by comparing caption likelihood on the real image versus a black image, and reduces language bias on color, counting, gender, and compositio...
-
From Screens to Scenes: A Survey of Embodied AI in Healthcare
A survey of embodied AI in healthcare, organizing 35 tasks into four application domains and proposing a five-level intelligence scale.
-
Multimodal Multihop Source Retrieval for Web Question Answering
A lightweight GraphSAGE model with star-graph connections outperforms a pairwise VLP transformer on image query source retrieval in WebQA, but underperforms it overall.
-
Jasper and Stella: distillation of SOTA embedding models
A 2B-parameter embedding model distilled from two larger teachers achieves a 71.54 average MTEB score (No.3 as of Dec 2024), matching 7B-parameter models.
-
SubstationAI: Multimodal Large Model-Based Approaches for Analyzing Substation Equipment Faults
SubstationAI, a fine-tuned LLaVA-1.5-7B model augmented with a fault knowledge base, receives higher expert ratings than GPT-4 for substation fault reports, but suspected train/test overlap makes the result unreliable.
-
BioBridge: Unified Bio-Embedding with Bridging Modality in Code-Switched EMR
BioBridge improves emergency triage classification on Korean-English code-switched EMRs by adding language segment tokens and BioSent2Vec medical features to transformer encoders, with modest gains over baselines.
-
VLM-HOI: Vision Language Models for Interpretable Human-Object Interaction Analysis
VLM-HOI distills BLIP image-text matching scores into an HOI detector via a contrastive loss, achieving 34.25 mAP on HICO-DET and 67.7 AP on V-COCO with a ResNet-50 backbone.
-
Acquiring and Adapting Priors for Novel Tasks via Neural Meta-Architectures
A meta-learning dissertation showing that distributed memory and hypernetworks can adapt to new tasks with few samples, applied to image classification, text-to-3D generation, and molecular binding prediction, with th...
-
Scene Detection Policies and Keyframe Extraction Strategies for Large-Scale Video Analysis
A duration-based policy table selects between thresholding and fixed-interval splitting for scene detection, and a sharpness-plus-brightness score picks one keyframe per scene.
-
A Survey on Data Curation for Visual Contrastive Learning: Why Crafting Effective Positive and Negative Pairs Matters
A survey that categorizes positive and negative pair curation techniques in visual contrastive learning and discusses their trade-offs and open questions.
-
BERT-VQA: Visual Question Answering on Plots
A VisualBERT-based VQA model underperformed a simple LSTM+CNN+classifier baseline on a subset of PlotQA yes/no questions, but the comparison does not isolate the fusion mechanism.
Reference graph
Works this paper leans on
-
[1]
URL: " 'urlintro :=
ENTRY address author booktitle chapter edition editor howpublished institution journal key month note number organization pages publisher school series title type volume year eprint doi pubmed url lastchecked label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block STRINGS urlintro eprinturl eprintpr...
-
[2]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...
-
[3]
Peter Anderson, Xiaodong He, Chris Buehler, Damien Teney, Mark Johnson, Stephen Gould, and Lei Zhang. 2018. Bottom-up and top-down attention for image captioning and visual question answering. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 6077--6086
2018
-
[4]
Stanislaw Antol, Aishwarya Agrawal, Jiasen Lu, Margaret Mitchell, Dhruv Batra, C Lawrence Zitnick, and Devi Parikh. 2015. Vqa: Visual question answering. In Proceedings of the IEEE international conference on computer vision, pages 2425--2433
2015
-
[5]
Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. 2014. Neural machine translation by jointly learning to align and translate. arXiv preprint arXiv:1409.0473
arXiv 2014
-
[6]
Junyoung Chung, Caglar Gulcehre, Kyunghyun Cho, and Yoshua Bengio. 2015. Gated feedback recurrent neural networks. In International Conference on Machine Learning, pages 2067--2075
work page 2015
-
[7]
Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. 2009. Imagenet: A large-scale hierarchical image database. In 2009 IEEE Conference on Computer Vision and Pattern Recognition, pages 248--255. IEEE
work page 2009
-
[8]
Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. 2019. Bert: Pre-training of deep bidirectional transformers for language understanding. In Proceedings of NAACL-HLT
2019
Show all 45 references
-
[9]
Peng Gao, Zhengkai Jiang, Haoxuan You, Pan Lu, Steven C. H. Hoi, Xiaogang Wang, and Hongsheng Li. 2019 a . Dynamic fusion with intra- and inter-modality attention flow for visual question answering. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)
2019
-
[10]
Peng Gao, Haoxuan You, Zhanpeng Zhang, Xiaogang Wang, and Hongsheng Li. 2019 b . Multi-modality latent interaction network for visual question answering. arXiv preprint arXiv:1908.04289
2019 arXiv
-
[11]
Ross Girshick, Jeff Donahue, Trevor Darrell, and Jitendra Malik. 2014. Rich feature hierarchies for accurate object detection and semantic segmentation. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 580--587
2014
-
[12]
Yash Goyal, Tejas Khot, Douglas Summers-Stay, Dhruv Batra, and Devi Parikh. 2017. Making the v in vqa matter: Elevating the role of image understanding in visual question answering. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 6904--6913
2017
-
[13]
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. 2016. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 770--778
2016
-
[14]
Dan Hendrycks and Kevin Gimpel. 2016. Bridging nonlinearities and stochastic regularizers with gaussian error linear units. https://openreview.net/forum?id=Bk0MRI5lg
2016
-
[15]
Benjamin Hoover, Hendrik Strobelt, and Sebastian Gehrmann. 2019. exbert: A visual analysis tool to explore learned representations in transformers models. arXiv preprint arXiv:1910.05276
2019 arXiv
-
[16]
Ronghang Hu, Jacob Andreas, Marcus Rohrbach, Trevor Darrell, and Kate Saenko. 2017. Learning to reason: End-to-end module networks for visual question answering. In Proceedings of the IEEE International Conference on Computer Vision, pages 804--813
2017
-
[17]
Drew A Hudson and Christopher D Manning. 2019. Gqa: a new dataset for compositional question answering over real-world images. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition
2019
-
[18]
Yu Jiang, Vivek Natarajan, Xinlei Chen, Marcus Rohrbach, Dhruv Batra, and Devi Parikh. 2018. Pythia v0. 1: the winning entry to the vqa challenge 2018. arXiv preprint arXiv:1807.09956
2018 arXiv
-
[19]
Jin-Hwa Kim, Jaehyun Jun, and Byoung-Tak Zhang. 2018. Bilinear attention networks. In Advances in Neural Information Processing Systems, pages 1564--1574
2018
-
[20]
Diederik P Kingma and Jimmy Ba. 2014. Adam: A method for stochastic optimization. In International Conference on Learning Representations
2014
-
[21]
Ranjay Krishna, Yuke Zhu, Oliver Groth, Justin Johnson, Kenji Hata, Joshua Kravitz, Stephanie Chen, Yannis Kalantidis, Li-Jia Li, David A Shamma, et al. 2017. Visual genome: Connecting language and vision using crowdsourced dense image annotations. International Journal of Com...
2017
-
[22]
Guillaume Lample and Alexis Conneau. 2019. Cross-lingual language model pretraining. arXiv preprint arXiv:1901.07291
2019 arXiv
-
[23]
Liunian Harold Li, Mark Yatskar, Da Yin, Cho-Jui Hsieh, and Kai-Wei Chang. 2019. Visualbert: A simple and performant baseline for vision and language. arXiv preprint arXiv:1908.03557
2019 arXiv
-
[24]
Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Doll \'a r, and C Lawrence Zitnick. 2014. Microsoft coco: Common objects in context. In European conference on computer vision, pages 740--755. Springer
2014
-
[25]
Jiasen Lu, Dhruv Batra, Devi Parikh, and Stefan Lee. 2019. Vilbert: Pretraining task-agnostic visiolinguistic representations for vision-and-language tasks. arXiv preprint arXiv:1908.02265
2019 arXiv
-
[26]
Jiasen Lu, Jianwei Yang, Dhruv Batra, and Devi Parikh. 2016. Hierarchical question-image co-attention for visual question answering. In Advances In Neural Information Processing Systems, pages 289--297
2016
-
[27]
Ethan Perez, Florian Strub, Harm De Vries, Vincent Dumoulin, and Aaron Courville. 2018. Film: Visual reasoning with a general conditioning layer. In Thirty-Second AAAI Conference on Artificial Intelligence
2018
-
[28]
Matthew E Peters, Mark Neumann, Mohit Iyyer, Matt Gardner, Christopher Clark, Kenton Lee, and Luke Zettlemoyer. 2018. Deep contextualized word representations. In Proceedings of NAACL-HLT, pages 2227--2237
2018
-
[29]
Alec Radford, Karthik Narasimhan, Tim Salimans, and Ilya Sutskever. 2018. Improving language understanding by generative pre-training. URL https://s3-us-west-2. amazonaws. com/openai-assets/researchcovers/languageunsupervised/language understanding paper. pdf
2018
-
[30]
Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. 2016. Squad: 100,000+ questions for machine comprehension of text. In Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing, pages 2383--2392
2016
-
[31]
Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. 2015. Faster r-cnn: Towards real-time object detection with region proposal networks. In Advances in neural information processing systems, pages 91--99
2015
-
[32]
Minjoon Seo, Aniruddha Kembhavi, Ali Farhadi, and Hannaneh Hajishirzi. 2017. Bidirectional attention flow for machine comprehension. In International Conference on Learning Representations
2017
-
[33]
Meet Shah, Xinlei Chen, Marcus Rohrbach, and Devi Parikh. 2019. Cycle-consistency for robust visual question answering. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition
2019
-
[34]
Karen Simonyan and Andrew Zisserman. 2014. Very deep convolutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556
2014 arXiv
-
[35]
Alane Suhr, Stephanie Zhou, Iris Zhang, Huajun Bai, and Yoav Artzi. 2019. A corpus for reasoning about natural language grounded in photographs. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics
2019
-
[36]
Chen Sun, Austin Myers, Carl Vondrick, Kevin Murphy, and Cordelia Schmid. 2019. Videobert: A joint model for video and language representation learning. arXiv preprint arXiv:1904.01766
2019 arXiv
-
[37]
Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov, Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. 2015. Going deeper with convolutions. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 1--9
2015
-
[38]
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, ukasz Kaiser, and Illia Polosukhin. 2017. Attention is all you need. In Advances in neural information processing systems, pages 5998--6008
2017
-
[39]
Alex Wang, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel R Bowman. 2018. Glue: A multi-task benchmark and analysis platform for natural language understanding. EMNLP 2018, page 353
2018
-
[40]
Yonghui Wu, Mike Schuster, Zhifeng Chen, Quoc V Le, Mohammad Norouzi, Wolfgang Macherey, Maxim Krikun, Yuan Cao, Qin Gao, Klaus Macherey, et al. 2016. Google's neural machine translation system: Bridging the gap between human and machine translation. arXiv preprint arXiv:1609.08144
2016 arXiv
-
[41]
Kelvin Xu, Jimmy Ba, Ryan Kiros, Kyunghyun Cho, Aaron Courville, Ruslan Salakhudinov, Rich Zemel, and Yoshua Bengio. 2015. Show, attend and tell: Neural image caption generation with visual attention. In International conference on machine learning, pages 2048--2057
2015
-
[42]
Zhou Yu, Yuhao Cui, Jun Yu, Dacheng Tao, and Qi Tian. 2019 a . Multimodal unified attention networks for vision-and-language interactions. arXiv preprint arXiv:1908.04107
2019 arXiv
-
[43]
Zhou Yu, Jun Yu, Yuhao Cui, Dacheng Tao, and Qi Tian. 2019 b . Deep modular co-attention networks for visual question answering. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 6281--6290
2019
-
[44]
Zhou Yu, Jun Yu, Chenchao Xiang, Jianping Fan, and Dacheng Tao. 2018. Beyond bilinear: Generalized multimodal factorized high-order pooling for visual question answering. IEEE Transactions on Neural Networks and Learning Systems, 29(12):5947--5959
2018
-
[45]
Yuke Zhu, Oliver Groth, Michael Bernstein, and Li Fei-Fei. 2016. Visual7w: Grounded question answering in images. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 4995--5004
2016
Reviewed August 14, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.