What a representation actually is
A representation is a vector that captures what matters about an input for the task at hand. man and king end up nearby in a good word-embedding space because the network learned that royal terms cluster. Two photographs of the same dog from different angles end up nearby in a vision encoder because the model learned dog-ness rather than pixel-level identity.
Representations are the load-bearing idea of modern AI. Once you have a strong encoder — CLIP for images, a sentence-transformer for text, an audio model for waveforms — you can solve downstream tasks (classification, retrieval, clustering, recommendation) by stacking a tiny head on top. The hard work was learning the representation in the first place.
Why this is so cost-effective
Pretraining a backbone is expensive — millions of dollars for the largest models. But once it exists, the marginal cost of a new task is small: collect a few thousand labeled examples, freeze (or lightly fine-tune) the backbone, train a small classifier on top. This is how a two-person team can ship a useful image classifier in a week.
Representations reflect their training data
If you train a face encoder on photos of one demographic, the resulting representation makes that demographic central and pushes others to the periphery. If your text encoder was pretrained on English news from 2020, it will do worse on Reddit slang from 2025 and worse still on Korean. Knowing what your encoder was trained on is part of using it competently.