While the world is focused on GPT-4, Gemini, and Claude, a quieter revolution is being proposed by one of AI's founding fathers. Yann LeCun — Chief AI Scientist at Meta and Turing Award winner — argues that Large Language Models have a fundamental architectural flaw that prevents them from ever achieving true world understanding. His proposed alternative: JEPA.
What Is JEPA?
JEPA stands for Joint Embedding Predictive Architecture. It's a framework for self-supervised learning in which a model learns by predicting abstract representations of the world — not by predicting raw pixel values, audio waveforms, or word sequences.
The key word is abstract. Instead of asking "what will the next pixel look like?", JEPA asks "what will the abstract meaning of the next moment look like?"
- A JEPA model learns by predicting the representation of future or missing information — not the raw data itself — making it efficient, robust, and grounded in the structure of the world rather than its surface appearance.
The Problem JEPA Is Trying to Solve
To understand JEPA, you first need to understand what LeCun believes is fundamentally wrong with LLMs.
LLMs Are Trained on Tokens — Not Reality
LLMs learn from text. Enormous amounts of it. But text is a compressed, lossy, human-filtered description of reality. It doesn't capture:
- Physics — how objects move, fall, break
- Causality — what actually causes what
- Spatial reasoning — where things are in 3D space
- Time — how situations evolve second by second
A child learns these things by experiencing the world — touching, seeing, hearing, falling, interacting. No LLM, no matter how large, can learn this from token prediction alone.
The Hallucination Problem Is Architectural
LLMs hallucinate because they have no internal world model to check against. When asked "how many windows are in the Eiffel Tower?", an LLM has no mental model of the Eiffel Tower — it only has patterns from text that mentioned the Eiffel Tower. It generates a plausible-sounding answer because it learned that plausible-sounding answers follow the question pattern — not because it knows the truth.
- LeCun: A Path Towards Autonomous Machine Intelligence (2022) — the foundational paper proposing JEPA and world models
- Meta AI Blog: I-JEPA (2023) — the first image-based JEPA implementation
- Self-Supervised Learning: The Dark Matter of AI — why unsupervised learning is the future
How JEPA Works
JEPA has two core components: a context encoder and a predictor. They operate in embedding space, not in raw data space.
The target encoder is a slow-moving copy of the context encoder (updated via exponential moving average, not gradient descent). This prevents the model from learning trivial solutions like "just copy the input."
A Concrete Example: Predicting a Missing Patch
Imagine showing the model this image with a large region masked:
V-JEPA and I-JEPA: Real Implementations
I-JEPA (Image JEPA, 2023) masks patches of images and trains a model to predict the embeddings of those patches. It learns strong visual representations without any labels — and outperforms many supervised methods on downstream tasks.
V-JEPA (Video JEPA, 2024) extends this to video. Given a clip with large masked spatio-temporal regions, V-JEPA predicts what the hidden content's representation should be. This forces the model to understand how the world moves — physics, motion, continuity.
- I-JEPA Paper (Assran et al., 2023) — the first published JEPA implementation
- V-JEPA Paper (Bardes et al., 2024) — video prediction via joint embeddings
- I-JEPA GitHub (Meta) — official open-source implementation
- V-JEPA GitHub (Meta) — official V-JEPA code release
How JEPA Differs from Self-Supervised Learning Before It
JEPA isn't the first self-supervised method. Contrastive methods like SimCLR, MoCo, and DINO also learn without labels. The key difference:
| Method | What It Predicts | Key Mechanism | Weakness |
|---|---|---|---|
| Contrastive (SimCLR) | Similarity between augmented views | Push similar together, different apart | Needs negative pairs; can be unstable |
| Masked Autoencoder (MAE) | Raw pixel values of masked patches | Reconstruct masked input | Wastes capacity on irrelevant details |
| DINO / DINOv2 | Self-distillation from teacher model | Student matches teacher output | Collapse risk without careful tricks |
| JEPA | Abstract representations of targets | Predict embedding, not raw data | Still evolving; world model integration TBD |
JEPA vs LLMs: A Direct Comparison
This is the heart of the debate. LLMs and JEPA represent fundamentally different philosophies about what AI should be learning.
| Dimension | LLMs (GPT, Claude, Gemini) | JEPA (I-JEPA, V-JEPA) |
|---|---|---|
| What they learn from | Text tokens from the internet | Raw sensory data (images, video) |
| Training objective | Predict next token | Predict abstract representation of masked region |
| World model | ❌ None — no internal simulation of reality | ✅ Learns structure and physics of the world |
| Hallucination risk | ❌ High — no ground truth to check against | ✅ Lower — grounded in perceptual experience |
| Data efficiency | ❌ Needs trillions of tokens | ✅ Learns from unlabeled images/video |
| Language ability | ✅ Exceptional — state of the art | ❌ Minimal — not designed for language generation |
| Spatial reasoning | ❌ Weak — only text-described space | ✅ Strong — learned from visual experience |
| Physical reasoning | ❌ Very weak — relies on described physics | ✅ Emerging — V-JEPA learns motion dynamics |
| Maturity | ✅ Production-ready, widely deployed | ⚠️ Research stage — rapidly advancing |
| Use cases today | Writing, code, Q&A, summarization | Visual representation learning, robotics research |
A Concrete Example: How Each Would Handle the Same Problem
Task: "A glass of water is placed at the edge of a table and nudged. What happens next?"
The Road Ahead: Are They Complementary or Competing?
The most likely near-term future is hybrid architectures — systems that combine the language fluency of transformers with the world-grounded representations of JEPA-like systems. LeCun himself envisions a full architecture called HJEPA (Hierarchical JEPA) that stacks multiple levels of abstraction, from raw sensory input all the way to high-level planning and goal pursuit.
The end goal: an AI agent that perceives the world through sensors, builds an internal world model from that experience, plans actions toward goals, and uses language as just one tool — not the foundation of intelligence itself.
- JEPA learns by predicting abstract representations, not raw data — more efficient and more meaningful
- LLMs are unmatched at language tasks but lack grounding in physical reality
- JEPA is particularly promising for robotics, video understanding, and physical world reasoning
- The field is moving toward hybrid systems that combine both paradigms
- JEPA is still research-stage but advancing rapidly — worth following closely
- LeCun: A Path Towards Autonomous Machine Intelligence — the manifesto; start here
- I-JEPA Paper (2023) — first rigorous experimental validation
- V-JEPA Paper (2024) — extending to video and temporal prediction
- LeCun at MIT: Objective-Driven AI (YouTube) — the most accessible presentation of his vision
- Meta AI Research Publications — ongoing JEPA and world model research
- Gato (DeepMind, 2022) — a multi-modal agent that hints at hybrid approaches