--- license: apache-2.0 ---

LLM2CLIP: Extending the Capability Boundaries of CLIP through Large Language Models

Weiquan Huang1*, Aoqi Wu1*, Yifan Yang2†, Xufang Luo2, Yuqing Yang2, Liang Hu1, Qi Dai2, Xiyang Dai2, Dongdong Chen2, Chong Luo2, Lili Qiu2 1Tongji Universiy, 2Microsoft Corporation
*Equal contribution
Corresponding to: yifanyang@microsoft.com

[📂 GitHub] [🆕 Blog] [📜 LLM2CLIP]

In this paper, we propose LLM2CLIP, a novel approach that embraces the power of LLMs to unlock CLIP’s potential. By fine-tuning the LLM in the caption space with contrastive learning, we extract its textual capabilities into the output embeddings, significantly improving the output layer’s textual discriminability. We then design an efficient training process where the fine-tuned LLM acts as a powerful teacher for CLIP’s visual encoder. Thanks to the LLM’s presence, we can now incorporate longer and more complex captions without being restricted by vanilla CLIP text encoder’s context window and ability limitations. Our experiments demonstrate that this approach brings substantial improvements in cross-modal tasks. Our method directly boosted the performance of the previously SOTA EVA02 model by 16.5% on both long-text and short-text retrieval tasks, transforming a CLIP model trained solely on English data into a state-of-the-art cross-lingual model. Moreover, when integrated into mul- timodal training with models like Llava 1.5, it consistently outperformed CLIP across nearly all benchmarks, demonstrating comprehensive performance improvements. ## LLM2CLIP performance
summary_tab
**It's important to note that all results presented in the paper are evaluated using PyTorch weights. There may be differences in performance when using Hugging Face (hf) models.** ## Model Details - **Model Type:** vision foundation model, feature backbone - **Pretrain Dataset:** CC3M, CC12M, YFCC15M and Recap-DataComp-1B(30M subset) ## Usage ### Huggingface Version ```python from PIL import Image from transformers import AutoModel from transformers import CLIPImageProcessor import torch image_path = "CLIP.png" model_name_or_path = "LLM2CLIP-Openai-B-16" # or /path/to/local/LLM2CLIP-Openai-B-16 image_size = 224 processor = CLIPImageProcessor.from_pretrained("openai/clip-vit-large-patch-16") model = AutoModel.from_pretrained( model_name_or_path, torch_dtype=torch.float16, trust_remote_code=True).to('cuda').eval() image = Image.open(image_path) input_pixels = processor(images=image, return_tensors="pt").pixel_values.to('cuda') with torch.no_grad(), torch.cuda.amp.autocast(): outputs = model.get_image_features(input_pixels) ``` ## BibTeX & Citation