REVIEW 2 major objections 5 minor 1 cited by
FLAME: Frozen Large Language Models Enable Data-Efficient Language-Image Pre-training
T0 review · 2 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read A frozen LLM can replace CLIP's text encoder and beat it with far less data.
desk verdict A genuinely useful frozen-LLM-as-text-tower recipe for CLIP-style training, with one real confound: no same-capacity trainable text encoder control, so the central attribution is not yet secure. 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 mechanism is multifaceted prompt distillation over a frozen decoder-only LLM. A set of seven prompts shares one prefix containing the caption, then forces a single-word response for a distinct facet (entity category, entity attribute, interaction, scene context, atmosphere, color); the final-token hidden state for each prompt becomes a text embedding. Facet-decoupled attention packs all prompts into one sequence with a mask that blocks attention across facets, giving a 3.6x speedup over separate forward passes. Offline caching of these embeddings moves the LLM out of the training loop entirely, so the trainable part is only the visual encoder plus an MLP projection.
What would settle it
Train a CLIP-style model with a trainable text transformer of comparable capacity to Mistral-Nemo on the same CC3M and YFCC15M caption sets used for FLAME, with the same multi-facet prompt decomposition. If its ImageNet top-1, long-context recall, and Crossmodal-3600 results match or exceed FLAME's, the claim that frozen LLMs plus prompt distillation drive the gains is falsified, because the improvement would then be attributable to text-encoder scale rather than to the framework.
Extended reading notes
Core claim
The central claim, stated on the authors' terms, is that 'frozen LLMs can effectively enhance language-image pre-training through rich semantic representations,' overturning the conventional wisdom that frozen text encoders are suboptimal. FLAME feeds the full long caption to the LLM and appends K prompts, each asking for a single-word answer about one semantic facet; the hidden state at each prompt's final token is used as a separate text embedding, and the image is contrastively aligned to all K embeddings. A facet-decoupled attention mask concatenates the prompts into one forward pass so facets do not leak into each other, and because the LLM is frozen, all text embeddings are computed once offline. The authors report that this design yields higher zero-shot classification, short- and long-context retrieval, multilingual retrieval, and linear-probe accuracy than CLIP-style models trained on the same or much larger data, and that training time stays competitive with CLIP.
Load-bearing premise
The reported gains are credited to the FLAME design, so the claim rests on the assumption that a similarly large trainable text encoder would not achieve the same results on the same small datasets; every comparison pairs FLAME with far smaller CLIP-style encoders, and only LLMs are swept in the backbone ablation.
Editorial extensions
If this is right
- CLIP-style pre-training can consume full long captions directly, eliminating the need to split captions into 77-token chunks or synthesize shorter rewrites.
- A model trained only on English text can generalize zero-shot to 36 languages at retrieval time, because the frozen LLM supplies multilingual text representations.
- The visual encoder inherits finer semantics: on CC3M, FLAME raises ImageNet top-1 by 4.9 points over the prior state of the art, and the average gain over 10 downstream zero-shot classification sets is 9.3 points.
- Training cost stays near CLIP's because text embeddings are precomputed offline; the extra cost is a one-time preprocessing step.
- Scaling the visual backbone from ViT-B/16 to ViT-L/14 continues to improve zero-shot and linear-probe accuracy, so the approach is not tied to one visual encoder size.
Reading between the lines
- If the gains persist when a trainable text encoder of equal capacity is used, the framework's principle generalizes beyond LLMs: any rich frozen text model could act as a fixed label source, shrinking the need for curated image-text pairs.
- The cross-lingual transfer suggests visual features inherit the LLM's language coverage; one testable extension is to probe low-resource languages deliberately excluded from the LLM's pretraining corpus.
- The one-word-per-facet constraint likely under-exploits the LLM's compositional reasoning; allowing short phrases per facet could improve compositionality benchmarks such as SugarCrepe without hurting single-word retrieval.
- Because the text space is fixed, FLAME could serve as a stable initialization for downstream vision-language models, with the frozen LLM embeddings acting as a semantic anchor during later fine-tuning.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes FLAME, a language-image pre-training framework that uses a frozen large language model (Mistral-Nemo) as the text encoder in a CLIP-style contrastive setup. Two technical components are introduced: multifaceted prompt distillation, which extracts several semantic embeddings from a single long caption using a set of hierarchical prompts, and facet-decoupled attention, which enables single-pass inference over multiple prompts with masked attention and supports offline pre-computation of text embeddings. Experiments on CC3M and YFCC15M report large improvements over CLIP and DreamLIP in zero-shot classification, long-context retrieval (ShareGPT4V-val, Urban-1k), multilingual retrieval (Crossmodal-3600), and short-context retrieval (MSCOCO, Flickr30k), together with ablations on the number of prompts, backbone choices, and semantic levels.
Significance. If the reported results are trustworthy, the paper makes a useful empirical contribution: it shows that a frozen, high-capacity LLM can serve as the text encoder for data-efficient language-image pre-training, naturally handling long and multilingual inputs without architectural modification of the text side. The paper also provides a practical efficiency mechanism (facet-decoupled attention plus offline embedding) that makes the approach computationally feasible, and it ships code and several ablations that test the design choices. The cross-modal gains are large and consistent across diverse benchmarks, which is a genuine strength. However, the central attribution of these gains to the specific FLAME design is weakened by the absence of a same-capacity trainable text-encoder control, and the reliance on a re-implemented, unreleased synthetic caption dataset limits the verifiability of head-to-head comparisons with DreamLIP.
major comments (2)
- [§4.2–4.3, Tables 1–3 and 7] Every headline comparison pairs FLAME's frozen Mistral-Nemo text encoder (~12B parameters) with CLIP-family text towers that are roughly two orders of magnitude smaller, and Table 7 sweeps only among LLMs (Mistral-7B, Mistral-Nemo, Llama-3.1-8B). No trainable text encoder of comparable capacity is trained or evaluated, so the reported gains (e.g., 4.9% ImageNet top-1 on CC3M, 44.4% multilingual recall@1, 34.6% long-context recall@1) could in principle be explained by LLM scale and prior linguistic pre-training alone, independent of the frozen design or the multifaceted prompt distillation. To support the paper's challenge to the conventional wisdom about frozen text encoders, please add a control experiment that trains a same-capacity trainable text encoder on the same data with the same objective, or that fine-tunes (e.g., with LoRA) the same LLM text encoder in the same framework. Reporting the same metrics for that control would directly separate the effect of freezing from the effect of LLM capacity; without it, the central attribution is not fully secured.
- [§4.1, Dataset Details] The synthetic captions used for training are a re-implementation of DreamLIP's pipeline with MiniCPM-Llama3-V 2.5, not the exact released DreamLIP captions, and the generated captions are not yet released. Since Tables 1–3 compare against published DreamLIP numbers, differences in caption quality or distribution could account for part of the reported gap. Please release the synthetic caption sets, or retrain DreamLIP on the same re-implemented captions under the same schedule and report both results, so that the comparison is apples-to-apples.
minor comments (5)
- [§3.2, Prompt template] The prompt template in Section 3.2 uses color annotations (blue for the shared prefix, red for the extraction position) that are not visible in the printed text; please spell out which part of the prompt is the shared prefix and where the final hidden state is extracted, so the construction is unambiguous.
- [References, [21]] The paper cites Mistral-Nemo as [21], but reference [21] is the Mistral 7B technical report; please provide the correct citation for Mistral-Nemo or disambiguate the two models.
- [§4.1, Implementation Details] The text says 'we apply a single prompt for inference' for short-text inputs and identifies it as 'the first prompt at the scene level', but the supplementary prompt list marks the scene-level prompt as default for both long and short inputs; please clarify why a different prompt is not used for short inputs and whether the choice affects results.
- [Table 6 and §4.5] The number of prompts K=7 is selected after observing performance on the evaluation benchmarks (ImageNet, MSCOCO, Flickr30k, ShareGPT4V-val, Urban-1k). This is a form of test-set peeking; please state explicitly that K was chosen on a held-out validation set or report the sensitivity of the choice to the evaluation split.
- [Figure 6] The embedding and training overhead figure is referenced in the text but not reproduced in this version; please ensure the figure is included in the final submission and that the y-axis and baseline definitions are clearly labeled.
Circularity Check
No significant circularity: FLAME's reported gains are empirical evaluations against external benchmarks, with no fitted parameter or self-citation chain presented as a prediction.
full rationale
FLAME's central claim is that a frozen LLM text encoder, combined with multifaceted prompt distillation, outperforms prior CLIP-style models under data-limited language-image pre-training. This is an empirical claim evaluated on external benchmarks (ImageNet, COCO, Flickr30k, Crossmodal-3600, Urban-1k, ShareGPT4V-val, and others), not a derivation from the method's own equations. The text embeddings are produced by a frozen Mistral-Nemo LLM plus a trainable visual encoder and projection trained with the contrastive objective in Eq. (1); no parameter is fitted to the benchmark numbers and then reported as a prediction. The prompt set and prompt count are design choices ablated in Table 6, and choosing 7 prompts after observing saturation is a model-selection procedure, not a circular reduction: the reported numbers are model outputs on held-out test sets, not the quantity being optimized. The manuscript's self-citations are incidental (e.g., reference [4] appears in a generic list of LLMs, and reference [5] appears as a ViT-B/16 citation) and are not load-bearing for the central claim. The absence of a same-capacity trainable text-encoder control is a legitimate attribution confound, but it does not make the claim true by construction. No step in the paper reduces, by the paper's own equations or by a self-citation chain, to its own inputs. Therefore the circularity score is 0.
Assumptions & free parameters
free parameters (3)
- Number of prompts K =
7 (out of 9 designed)
- Prompt templates and semantic hierarchy =
9 templates, 7 used by default
- Inference prompt choice for short text =
Scene-level prompt 'this image description means in just one word'
assumptions (4)
- domain assumption Final-token hidden states of a causal LLM, prompted to respond with one word, yield discriminative text embeddings.
- domain assumption Facet-decoupled attention prevents semantic leakage between prompts while sharing the prefix KV cache.
- domain assumption Synthetic captions generated by MiniCPM-Llama3-V 2.5 with DreamLIP-style prompts are adequate and comparable to DreamLIP's training captions.
- domain assumption Contrastive learning against fixed, precomputed text embeddings transfers to zero-shot classification and retrieval.
Cite this review
Pith. "Pith review of FLAME: Frozen Large Language Models Enable Data-Efficient Language-Image Pre-training." pith.science (2026). https://pith.science/paper/BWSDD7SI
@misc{pith2026241111927,
author = {Pith},
title = {Pith review of: FLAME: Frozen Large Language Models Enable Data-Efficient Language-Image Pre-training},
year = {2026},
howpublished = {\url{https://pith.science/paper/BWSDD7SI}},
note = {Machine review of arXiv:2411.11927}
}
read the original abstract
Language-image pre-training faces significant challenges due to limited data in specific formats and the constrained capacities of text encoders. While prevailing methods attempt to address these issues through data augmentation and architecture modifications, they continue to struggle with processing long-form text inputs, and the inherent limitations of traditional CLIP text encoders lead to suboptimal downstream generalization. In this paper, we propose FLAME (Frozen Large lAnguage Models Enable data-efficient language-image pre-training) that leverages frozen large language models as text encoders, naturally processing long text inputs and demonstrating impressive multilingual generalization. FLAME comprises two key components: 1) a multifaceted prompt distillation technique for extracting diverse semantic representations from long captions, which better aligns with the multifaceted nature of images, and 2) a facet-decoupled attention mechanism, complemented by an offline embedding strategy, to ensure efficient computation. Extensive empirical evaluations demonstrate FLAME's superior performance. When trained on CC3M, FLAME surpasses the previous state-of-the-art by 4.9% in ImageNet top-1 accuracy. On YFCC15M, FLAME surpasses the WIT-400M-trained CLIP by 44.4\% in average image-to-text recall@1 across 36 languages, and by 34.6% in text-to-image recall@1 for long-context retrieval on Urban-1k. Code is available at https://github.com/MIV-XJTU/FLAME.
Figures
Figures from the paper (3 more)
Forward citations
Cited by 1 Pith paper
-
Magic-MM-Embedding: Towards Visual-Token-Efficient Universal Multimodal Embedding with MLLMs
Visual token compression (4x fewer tokens) plus a three-stage generative/contrastive/judge-curated training pipeline yields state-of-the-art MLLM-based retrieval accuracy at lower inference cost.
Reference graph
Works this paper leans on
-
[1]
Phi-3 technical report: A highly capable language model locally on your phone
Marah Abdin, Sam Ade Jacobs, Ammar Ahmad Awan, Jyoti Aneja, Ahmed Awadallah, Hany Awadalla, Nguyen Bach, Amit Bahree, Arash Bakhtiari, Harkirat Behl, et al. Phi-3 technical report: A highly capable language model locally on your phone. arXiv preprint arXiv:2404.14219, 2024. 3
arXiv 2024
-
[2]
Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774, 2023
arXiv 2023
-
[3]
Jinze Bai, Shuai Bai, Yunfei Chu, Zeyu Cui, Kai Dang, Xi- aodong Deng, Yang Fan, Wenbin Ge, Yu Han, Fei Huang, et al. Qwen technical report. arXiv preprint arXiv:2309.16609 , 2023
arXiv 2023
-
[4]
Is a 3d-tokenized llm the key to reliable autonomous driving? arXiv preprint arXiv:2405.18361, 2024
Yifan Bai, Dongming Wu, Yingfei Liu, Fan Jia, Weixin Mao, Ziheng Zhang, Yucheng Zhao, Jianbing Shen, Xing Wei, Tian- cai Wang, et al. Is a 3d-tokenized llm the key to reliable autonomous driving? arXiv preprint arXiv:2405.18361, 2024. 3
arXiv 2024
-
[5]
Ar- trackv2: Prompting autoregressive tracker where to look and how to describe
Yifan Bai, Zeyang Zhao, Yihong Gong, and Xing Wei. Ar- trackv2: Prompting autoregressive tracker where to look and how to describe. In CVPR, 2024. 5
work page 2024
-
[6]
Llm2vec: Large language models are secretly powerful text encoders
Parishad BehnamGhader, Vaibhav Adlakha, Marius Mos- bach, Dzmitry Bahdanau, Nicolas Chapados, and Siva Reddy. Llm2vec: Large language models are secretly powerful text encoders. arXiv preprint arXiv:2404.05961, 2024. 2, 3, 4
arXiv 2024
-
[7]
Language models are few-shot learners
Tom Brown, Benjamin Mann, Nick Ryder, Melanie Sub- biah, Jared D Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. In NeurIPS, 2020. 3
work page 2020
-
[8]
Cross-lingual and multilingual clip
Fredrik Carlsson, Philipp Eisen, Faton Rekathati, and Magnus Sahlgren. Cross-lingual and multilingual clip. In LREC, 2022. 2, 3
work page 2022
Show all 65 references
-
[9]
Sharegpt4v: Improving large multi-modal models with better captions
Lin Chen, Jinsong Li, Xiaoyi Dong, Pan Zhang, Conghui He, Jiaqi Wang, Feng Zhao, and Dahua Lin. Sharegpt4v: Improving large multi-modal models with better captions. arXiv preprint arXiv:2311.12793, 2023. 5
2023 arXiv
-
[10]
Pali: A jointly- scaled multilingual language-image model
Xi Chen, Xiao Wang, Soravit Changpinyo, AJ Piergiovanni, Piotr Padlewski, Daniel Salz, Sebastian Goodman, Adam Grycner, Basil Mustafa, Lucas Beyer, et al. Pali: A jointly- scaled multilingual language-image model. In ICLR, 2023. 6
2023
-
[11]
Altclip: Altering the language encoder in clip for extended language capabilities
Zhongzhi Chen, Guang Liu, Bo-Wen Zhang, Qinghong Yang, and Ledell Wu. Altclip: Altering the language encoder in clip for extended language capabilities. In ACL Findings, 2023. 3
2023
-
[12]
Maskclip: Masked self-distillation advances contrastive language-image pretraining
Xiaoyi Dong, Jianmin Bao, Yinglin Zheng, Ting Zhang, Dongdong Chen, Hao Yang, Ming Zeng, Weiming Zhang, Lu Yuan, Dong Chen, et al. Maskclip: Masked self-distillation advances contrastive language-image pretraining. In CVPR,
-
[13]
An image is worth 16x16 words: Transform- ers for image recognition at scale
Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Syl- vain Gelly, et al. An image is worth 16x16 words: Transform- ers for image recognition at scale. In ICLR, 2021. 5
2021
-
[14]
Improving clip training with language rewrites
Lijie Fan, Dilip Krishnan, Phillip Isola, Dina Katabi, and Yon- glong Tian. Improving clip training with language rewrites. In NeurIPS, 2023. 2, 3, 7, 1
2023
-
[15]
Pyramidclip: Hierarchical feature alignment for vision-language model pretraining
Yuting Gao, Jinfeng Liu, Zihan Xu, Jun Zhang, Ke Li, Ron- grong Ji, and Chunhua Shen. Pyramidclip: Hierarchical feature alignment for vision-language model pretraining. In NeurIPS, 2022. 3
2022
-
[16]
Softclip: Softer cross-modal alignment makes clip stronger
Yuting Gao, Jinfeng Liu, Zihan Xu, Tong Wu, Enwei Zhang, Ke Li, Jie Yang, Wei Liu, and Xing Sun. Softclip: Softer cross-modal alignment makes clip stronger. In AAAI, 2024. 3, 6
2024
-
[17]
Hiclip: Contrastive language-image pre- training with hierarchy-aware attention
Shijie Geng, Jianbo Yuan, Yu Tian, Yuxiao Chen, and Yongfeng Zhang. Hiclip: Contrastive language-image pre- training with hierarchy-aware attention. In ICLR, 2023. 3, 7
2023
-
[18]
Sugarcrepe: Fixing hack- able benchmarks for vision-language compositionality
Cheng-Yu Hsieh, Jieyu Zhang, Zixian Ma, Aniruddha Kem- bhavi, and Ranjay Krishna. Sugarcrepe: Fixing hack- able benchmarks for vision-language compositionality. In NeurIPS, 2023. 2
2023
-
[19]
Openclip, 2021
Gabriel Ilharco, Mitchell Wortsman, Ross Wightman, Cade Gordon, Nicholas Carlini, Rohan Taori, Achal Dave, Vaishaal Shankar, Hongseok Namkoong, John Miller, Hannaneh Ha- jishirzi, Ali Farhadi, and Ludwig Schmidt. Openclip, 2021. If you use this software, please cite it as below. 5
2021
-
[20]
Scaling up visual and vision-language representation learning with noisy text supervision
Chao Jia, Yinfei Yang, Ye Xia, Yi-Ting Chen, Zarana Parekh, Hieu Pham, Quoc Le, Yun-Hsuan Sung, Zhen Li, and Tom Duerig. Scaling up visual and vision-language representation learning with noisy text supervision. In ICML, 2021. 3
2021
-
[21]
Mistral 7b
Albert Q Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, Devendra Singh Chaplot, Diego de las Casas, Florian Bressand, Gianna Lengyel, Guillaume Lample, Lucile Saulnier, et al. Mistral 7b. arXiv preprint arXiv:2310.06825,
-
[22]
Scaling sentence embeddings with large language models
Ting Jiang, Shaohan Huang, Zhongzhi Luan, Deqing Wang, and Fuzhen Zhuang. Scaling sentence embeddings with large language models. arXiv preprint arXiv:2307.16645, 2023. 2, 3, 4
2023 arXiv
-
[23]
Misalign, contrast then distill: Rethinking misalign- ments in language-image pre-training
Bumsoo Kim, Yeonsik Jo, Jinhyung Kim, and Seunghwan Kim. Misalign, contrast then distill: Rethinking misalign- ments in language-image pre-training. In ICCV, 2023. 3
2023
-
[24]
Jina clip: Your clip model is also your text retriever
Andreas Koukounas, Georgios Mastrapas, Michael G¨unther, Bo Wang, Scott Martens, Isabelle Mohr, Saba Sturua, Mo- hammad Kalim Akram, Joan Fontanals Mart´ınez, Saahil Og- nawala, et al. Jina clip: Your clip model is also your text retriever. arXiv preprint arXiv:2405.20204, 2024. 2
2024 arXiv
-
[25]
From scarcity to efficiency: Improving clip training via visual-enriched captions
Zhengfeng Lai, Haotian Zhang, Wentao Wu, Haoping Bai, Aleksei Timofeev, Xianzhi Du, Zhe Gan, Jiulong Shan, Chen- Nee Chuah, Yinfei Yang, et al. From scarcity to efficiency: Improving clip training via visual-enriched captions. arXiv preprint arXiv:2310.07699, 2023. 2, 3
-
[26]
Uni- clip: Unified framework for contrastive language-image pre- training
Janghyeon Lee, Jongsuk Kim, Hyounguk Shon, Bumsoo Kim, Seung Hwan Kim, Honglak Lee, and Junmo Kim. Uni- clip: Unified framework for contrastive language-image pre- training. In NeurIPS, 2022. 3
2022
-
[27]
Gecko: Versatile text embed- dings distilled from large language models
Jinhyuk Lee, Zhuyun Dai, Xiaoqi Ren, Blair Chen, Daniel Cer, Jeremy R Cole, Kai Hui, Michael Boratko, Rajvi Ka- padia, Wen Ding, et al. Gecko: Versatile text embed- dings distilled from large language models. arXiv preprint arXiv:2403.20327, 2024. 3
2024 arXiv
-
[28]
Meta-task prompting elicits embedding from large language models
Yibin Lei, Di Wu, Tianyi Zhou, Tao Shen, Yu Cao, Chongyang Tao, and Andrew Yates. Meta-task prompting elicits embedding from large language models. In ACL, 2024. 3
2024
-
[29]
Scene graph generation: A comprehensive survey
Hongsheng Li, Guangming Zhu, Liang Zhang, Youliang Jiang, Yixuan Dang, Haoran Hou, Peiyi Shen, Xia Zhao, Syed Afaq Ali Shah, and Mohammed Bennamoun. Scene graph generation: A comprehensive survey. Neurocomputing, 566:127052, 2024. 4
2024
-
[30]
Grounded language- image pre-training
Liunian Harold Li, Pengchuan Zhang, Haotian Zhang, Jian- wei Yang, Chunyuan Li, Yiwu Zhong, Lijuan Wang, Lu Yuan, Lei Zhang, Jenq-Neng Hwang, et al. Grounded language- image pre-training. In CVPR, 2022. 1
2022
-
[31]
An inverse scaling law for clip training
Xianhang Li, Zeyu Wang, and Cihang Xie. An inverse scaling law for clip training. In NeurIPS, 2023. 1
2023
-
[32]
Scene graph generation from objects, phrases and region captions
Yikang Li, Wanli Ouyang, Bolei Zhou, Kun Wang, and Xi- aogang Wang. Scene graph generation from objects, phrases and region captions. In ICCV, 2017. 4
2017
-
[33]
Supervi- sion exists everywhere: A data efficient contrastive language- image pre-training paradigm
Yangguang Li, Feng Liang, Lichen Zhao, Yufeng Cui, Wanli Ouyang, Jing Shao, Fengwei Yu, and Junjie Yan. Supervi- sion exists everywhere: A data efficient contrastive language- image pre-training paradigm. In ICLR, 2022. 3, 5
2022
-
[34]
Scaling language-image pre-training via masking
Yanghao Li, Haoqi Fan, Ronghang Hu, Christoph Feichten- hofer, and Kaiming He. Scaling language-image pre-training via masking. In CVPR, 2023. 3
2023
-
[35]
Language quantized autoencoders: Towards unsupervised text-image alignment
Hao Liu, Wilson Yan, and Pieter Abbeel. Language quantized autoencoders: Towards unsupervised text-image alignment. In NeurIPS, 2023. 2
2023
-
[36]
Mllms- augmented visual-language representation learning
Yanqing Liu, Kai Wang, Wenqi Shao, Ping Luo, Yu Qiao, Mike Zheng Shou, Kaipeng Zhang, and Yang You. Mllms- augmented visual-language representation learning. arXiv preprint arXiv:2311.18765, 2023. 2, 3, 6, 7
2023 arXiv
-
[37]
Decoupled weight decay regularization
I Loshchilov. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101, 2017. 1
2017 arXiv
-
[38]
Slip: Self-supervision meets language-image pre- training
Norman Mu, Alexander Kirillov, David Wagner, and Sain- ing Xie. Slip: Self-supervision meets language-image pre- training. In ECCV, 2022. 3
2022
-
[39]
Gen- erative representational instruction tuning
Niklas Muennighoff, Hongjin Su, Liang Wang, Nan Yang, Furu Wei, Tao Yu, Amanpreet Singh, and Douwe Kiela. Gen- erative representational instruction tuning. arXiv preprint arXiv:2402.09906, 2024. 3
2024 arXiv
-
[40]
Docci: De- scriptions of connected and contrasting images
Yasumasa Onoe, Sunayana Rane, Zachary Berger, Yonatan Bitton, Jaemin Cho, Roopal Garg, Alexander Ku, Zarana Parekh, Jordi Pont-Tuset, Garrett Tanzer, et al. Docci: De- scriptions of connected and contrasting images. In ECCV,
-
[41]
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, et al. Learning transferable visual models from natural language supervision. In ICML, 2021. 1, 2, 5, 6, 7, 3
2021
-
[42]
High-resolution image synthesis with latent diffusion models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj ¨orn Ommer. High-resolution image synthesis with latent diffusion models. In CVPR, 2022. 1
2022
-
[43]
Conceptual captions: A cleaned, hypernymed, image alt-text dataset for automatic image captioning
Piyush Sharma, Nan Ding, Sebastian Goodman, and Radu Soricut. Conceptual captions: A cleaned, hypernymed, image alt-text dataset for automatic image captioning. In ACL, 2018. 5
2018
-
[44]
Repetition improves lan- guage model embeddings
Jacob Mitchell Springer, Suhas Kotha, Daniel Fried, Graham Neubig, and Aditi Raghunathan. Repetition improves lan- guage model embeddings. arXiv preprint arXiv:2402.15449,
-
[45]
Eva-clip: Improved training techniques for clip at scale
Quan Sun, Yuxin Fang, Ledell Wu, Xinlong Wang, and Yue Cao. Eva-clip: Improved training techniques for clip at scale. arXiv preprint arXiv:2303.15389, 2023. 1
2023 arXiv
-
[46]
Crossmodal-3600: A massively multilingual multi- modal evaluation dataset
Ashish V Thapliyal, Jordi Pont Tuset, Xi Chen, and Radu Soricut. Crossmodal-3600: A massively multilingual multi- modal evaluation dataset. In EMNLP, 2022. 2, 6, 1
2022
-
[47]
Winoground: Probing vision and language models for visio- linguistic compositionality
Tristan Thrush, Ryan Jiang, Max Bartolo, Amanpreet Singh, Adina Williams, Douwe Kiela, and Candace Ross. Winoground: Probing vision and language models for visio- linguistic compositionality. In CVPR, 2022. 2
2022
-
[48]
Stablerep: Synthetic images from text-to- image models make strong visual representation learners
Yonglong Tian, Lijie Fan, Phillip Isola, Huiwen Chang, and Dilip Krishnan. Stablerep: Synthetic images from text-to- image models make strong visual representation learners. In NeurIPS, 2023. 3
2023
-
[49]
Llama 2: Open foundation and fine-tuned chat models
Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Am- jad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, et al. Llama 2: Open foundation and fine-tuned chat models. arXiv preprint arXiv:2307.09288, 2023. 3
2023 arXiv
-
[50]
Multimodal few-shot learning with frozen language models
Maria Tsimpoukelli, Jacob L Menick, Serkan Cabi, SM Es- lami, Oriol Vinyals, and Felix Hill. Multimodal few-shot learning with frozen language models. In NeurIPS, 2021. 2
2021
-
[51]
Nllb-clip–train performant multilin- gual image retrieval model on a budget
Alexander Visheratin. Nllb-clip–train performant multilin- gual image retrieval model on a budget. arXiv preprint arXiv:2309.01859, 2023. 2, 3, 6, 7
2023 arXiv
-
[52]
Improving text embeddings with large language models.arXiv preprint arXiv:2401.00368,
Liang Wang, Nan Yang, Xiaolong Huang, Linjun Yang, Ran- gan Majumder, and Furu Wei. Improving text embeddings with large language models.arXiv preprint arXiv:2401.00368,
-
[53]
Groupvit: Semantic segmentation emerges from text supervision
Jiarui Xu, Shalini De Mello, Sifei Liu, Wonmin Byeon, Thomas Breuel, Jan Kautz, and Xiaolong Wang. Groupvit: Semantic segmentation emerges from text supervision. In CVPR, 2022. 1
2022
-
[54]
Chinese clip: Con- trastive vision-language pretraining in chinese
An Yang, Junshu Pan, Junyang Lin, Rui Men, Yichang Zhang, Jingren Zhou, and Chang Zhou. Chinese clip: Con- trastive vision-language pretraining in chinese. arXiv preprint arXiv:2211.01335, 2022. 2, 3, 6, 7
2022 arXiv
-
[55]
Alip: Adaptive language-image pre-training with synthetic caption
Kaicheng Yang, Jiankang Deng, Xiang An, Jiawei Li, Ziyong Feng, Jia Guo, Jing Yang, and Tongliang Liu. Alip: Adaptive language-image pre-training with synthetic caption. In ICCV,
-
[56]
Filip: Fine-grained interactive language-image pre-training
Lewei Yao, Runhui Huang, Lu Hou, Guansong Lu, Minzhe Niu, Hang Xu, Xiaodan Liang, Zhenguo Li, Xin Jiang, and Chunjing Xu. Filip: Fine-grained interactive language-image pre-training. arXiv preprint arXiv:2111.07783, 2021. 3
2021 arXiv
-
[57]
Coca: Contrastive captioners are image-text foundation models
Jiahui Yu, Zirui Wang, Vijay Vasudevan, Legg Yeung, Mo- jtaba Seyedhosseini, and Yonghui Wu. Coca: Contrastive captioners are image-text foundation models. arXiv preprint arXiv:2205.01917, 2022. 3
2022 arXiv
-
[58]
Spae: Semantic pyramid autoencoder for multimodal generation with frozen llms
Lijun Yu, Yong Cheng, Zhiruo Wang, Vivek Kumar, Wolfgang Macherey, Yanping Huang, David Ross, Irfan Essa, Yonatan Bisk, Ming-Hsuan Yang, et al. Spae: Semantic pyramid autoencoder for multimodal generation with frozen llms. In NeurIPS, 2023. 2
2023
-
[59]
Lit: Zero-shot transfer with locked-image text tuning
Xiaohua Zhai, Xiao Wang, Basil Mustafa, Andreas Steiner, Daniel Keysers, Alexander Kolesnikov, and Lucas Beyer. Lit: Zero-shot transfer with locked-image text tuning. In CVPR,
-
[60]
Sigmoid loss for language image pre-training
Xiaohua Zhai, Basil Mustafa, Alexander Kolesnikov, and Lucas Beyer. Sigmoid loss for language image pre-training. In ICCV, 2023. 1, 6
2023
-
[61]
Simple techniques for enhancing sentence embeddings in generative language models
Bowen Zhang, Kehua Chang, and Chunping Li. Simple techniques for enhancing sentence embeddings in generative language models. In ICIC, 2024. 2, 3, 4
2024
-
[62]
Long-clip: Unlocking the long-text capability of clip
Beichen Zhang, Pan Zhang, Xiaoyi Dong, Yuhang Zang, and Jiaqi Wang. Long-clip: Unlocking the long-text capability of clip. In ECCV, 2024. 2, 3, 5, 6
2024
-
[63]
Dreamlip: Language- image pre-training with long captions
Kecheng Zheng, Yifei Zhang, Wei Wu, Fan Lu, Shuailei Ma, Xin Jin, Wei Chen, and Yujun Shen. Dreamlip: Language- image pre-training with long captions. In ECCV, 2024. 2, 3, 5, 6, 7, 8, 1
2024
-
[64]
Beyond text: Frozen large language models in visual signal comprehension
Lei Zhu, Fangyun Wei, and Yanye Lu. Beyond text: Frozen large language models in visual signal comprehension. In CVPR, 2024. 2
2024
-
[65]
yi”. After thinking step by step, the category of the main object in this image means in just one word:
Shengyao Zhuang, Xueguang Ma, Bevan Koopman, Jimmy Lin, and Guido Zuccon. Promptreps: Prompting large lan- guage models to generate dense and sparse representations for zero-shot document retrieval. In EMNLP, 2024. 2, 3, 4 FLAME : Frozen Large Language Models Enable Data-Effic...
2024
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.