Papers · CLIP
AI PAPER

Learning Transferable Visual Models From Natural Language Supervision

Trained a model to connect images and text in a shared space using 400 million image-text pairs from the internet, enabling zero-shot visual classification and powering text-to-image generation.

Authors
Alec Radford, Jong Wook Kim, Chris Hallacy +7
Institution
OpenAI
Published
January NaN, 2021
Citations
25,000
Category
Multimodal
Impact
foundational
PAPER EXPLAINED

Plain-English Summary

CLIP learned to understand images and text together by training on 400 million image-caption pairs scraped from the internet. It maps images and text into the same mathematical space, so you can compare any image with any text description and measure how well they match. This means CLIP can classify images into categories it has never been explicitly trained on — just describe the categories in words.

Before CLIP, computer vision models needed thousands of labeled examples for each specific task (is this a cat or dog? is this a stop sign?). CLIP bypassed this entirely. Want to classify images of car damage? Just describe the categories in text. No labeled training data needed.

Think of it as teaching a student to connect words with pictures so thoroughly that they can identify anything you describe, even if they have never seen that specific example before.

Key Innovation

CLIP uses contrastive learning on massive image-text pairs. Given a batch of images and captions, it learns to match each image with its correct caption while pushing apart mismatched pairs. The result is a shared embedding space where images and text can be directly compared.

The scale of training data (400 million pairs from the internet) was crucial. This natural supervision from web-crawled image-text pairs proved far richer and more diverse than manually labeled datasets, producing representations that transfer broadly across visual tasks.

Impact on the Field

CLIP became a fundamental building block of modern AI. It serves as the text encoder for DALL-E 2 and Stable Diffusion, enabling these systems to understand text prompts and generate matching images. It enabled zero-shot classification across thousands of categories without task-specific training. It also inspired a wave of multimodal research connecting vision and language.

The paper demonstrated that natural language supervision (learning from captions) could produce visual representations as good as or better than models trained on curated labeled datasets. This insight — that internet-scale noisy data beats carefully labeled small data — influenced the entire field.

Models That Built on This

DALL-E 2 uses CLIP’s text encoder to guide image generation. Stable Diffusion relies on CLIP for understanding text prompts. Midjourney uses CLIP-derived representations. LLaVA and other vision-language models build on CLIP’s visual encoder. The CLIP architecture also influenced GPT-4V’s approach to multimodal understanding. Open-source variants (OpenCLIP, SigLIP) power most modern image search and retrieval systems.