CLIP classifies ImageNet zero-shot — without ImageNet labels
Vision-language representation learningSupervised models defined a closed taxonomy and were brittle under distribution shift, while collecting labels was the bottleneck. The question was whether learning purely from naturally-occurring image–text pairs could yield a general, transferable visual model that needed no task-specific labels.
Radford et al. trained CLIP on ~400M image–text pairs scraped from the web with a symmetric contrastive objective over dual ViT/Transformer encoders. To classify, they embedded prompts like 'a photo of a {label}' for the target classes and chose the nearest text embedding to each image — no fine-tuning on the target dataset.
CLIP reached about 76.2% zero-shot top-1 on ImageNet, matching a fully-supervised ResNet-50 trained on ImageNet's 1.28M labeled images — while using none of those labels — and it degraded far less on shifted test sets (ImageNet-R, ImageNet-Sketch, ImageNet-A). The shared embedding space went on to power retrieval, captioning/VQA systems, and the text conditioning in modern text-to-image diffusion models.
Source: Learning Transferable Visual Models From Natural Language Supervision — Radford, A., Kim, J. W., Hallacy, C., Ramesh, A., et al.