Research Notes

CLIP and Image-Text Alignment

By Satwik ยท February 4, 2026

CLIP (Radford et al., 2021) trained an image encoder and a text encoder jointly on a very large set of image-caption pairs scraped from the web, using a contrastive objective: match each image to its true caption against many distractors. The result was a shared embedding space where images and their descriptions land near each other. This enabled zero-shot classification, you name the candidate labels in natural language, embed them, and pick the nearest to the image, without training a task-specific classifier.

Why it mattered

CLIP showed that natural-language supervision at scale produces representations that transfer broadly and robustly across many vision benchmarks. It became a workhorse component, powering retrieval, guiding image generation, and serving as a general visual feature extractor for downstream systems.

Reading angle

CLIP is instructive on the risks of web-scale supervision. Because it learned from uncurated internet pairs, it inherited the associations and biases present in that data, which surface in its zero-shot predictions. The team's own analysis flagged concerning behavior on sensitive categories. There is also an adversarial dimension: a now-classic demonstration showed CLIP could be fooled by "typographic attacks," a handwritten label taped onto an object steered the model's prediction toward the written word. That is a concrete example of an input channel, text-in-image, undermining a vision system. Read CLIP as both a milestone in multimodal learning and an early case study in how scale imports the messiness of its data source, including exploitable failure modes.