ATLAS World Models
T-05The Cartographer’s Table

Representation Learning

18°N, 77°W — where raw sense-data becomes usable coordinates

How a model decides what is worth remembering from raw pixels, sound, or text — and what to throw away.

embeddingmasked predictioncontrastive learningjoint-embedding prediction
First Bearings

For anyone finding this territory for the first time

A photograph of a room contains millions of numbers — one for the brightness of every tiny dot. Almost none of that detail matters for understanding the room: you care that there is a chair, a window, a door, not the exact shade of gray on the fortieth pixel of the wall. Representation learning is the skill of squeezing a firehose of raw detail down into the small number of facts that actually matter, so everything built afterward can work with "chair, window, door" instead of millions of pixels.

Surveyor's Field Notes

For the practitioners building on this ground

Three dominant training recipes produce useful representations without hand-labeled data. Masked prediction hides part of the input and trains a model to reconstruct it, forcing it to infer missing structure from context. Contrastive learning trains an embedding space where augmented views of the same input are pulled together and different inputs are pushed apart, without ever reconstructing pixels directly. Joint-embedding predictive architectures (JEPA-style) predict the representation of a masked or future region — using a separate, slowly-updated target encoder — rather than predicting raw pixels, which sidesteps wasting capacity on unpredictable low-level noise.

The choice among these is really a choice about what the resulting representation will be good for: reconstruction-based objectives tend to preserve fine detail useful for generation, while contrastive and joint-embedding objectives tend to preserve semantic and dynamic structure more useful for prediction and control.

Chief Cartographer's Brief

For the person deciding whether to fund the expedition

This territory is where "garbage in, garbage out" gets decided for every downstream world model. A representation that discards the wrong details — say, collapsing a safety-critical visual cue because it looked like noise during training — silently caps what any planner or policy built on top of it can ever perceive. When adopting a pretrained encoder, the diligence question is not "how good are its benchmark numbers" but "was it trained to preserve the kind of signal my domain actually depends on."

Further Charts & Source Material

← T-04 State-Space Models T-06 Generative Foundations: Latent Variables, Diffusion & Flow →
← Return to the full atlas