AdaJEPA adapts world models during planning with one gradient step
Original: AdaJEPA adapts world models during planning with one gradient step View original →
A world model that keeps updating
Planning systems fail when their world model imagines the wrong future. AdaJEPA, a new project from researchers at NYU and AMI Labs, changes that loop by adapting the model during deployment instead of freezing it after training. The source tweet framed the research this way: “Your world model should never stop learning.” That sentence is the technical claim in miniature: every action can produce a new training signal before the next plan is chosen.
The linked project page describes AdaJEPA as a closed-loop model predictive control system. The agent plans with a pretrained JEPA world model, executes the first action chunk, observes the transition (o_t, a_t, o_{t+1}), then updates the latent predictor before replanning. The default adaptation is intentionally small: one gradient step per MPC replan, a replay buffer of five recent transitions, and updates focused on the final layers of the visual encoder and predictor.
Why the result matters
The benchmark settings are designed around the places frozen models break. PushObj changes object shapes, PushT applies visual shifts such as blur, salt-and-pepper noise, dark lighting, and color changes, while PointMaze changes dynamics and held-out layouts. The project page says AdaJEPA improves planning in both in-distribution and out-of-distribution settings, and that on low-data PushObj shapes it can more than double frozen-model success while sometimes outperforming frozen models trained with much more data.
The account behind the tweet is a researcher on the paper, and Yann LeCun amplified it, which is relevant because LeCun has long argued for JEPA-style representations and world models as a route toward more capable agents. The interesting shift here is not just another offline benchmark; it is the move from static learned representations to models that recalibrate while acting. The next thing to watch is whether this lightweight online adaptation survives messier physical robots, longer horizons, and safety constraints where a bad update can be more costly than a bad prediction.
Related Articles
Microsoft Research introduced Memora as an agent memory system that separates what is stored from how it is retrieved. Its research post says Memora outperforms Mem0, RAG, and full-context inference on LoCoMo and LongMemEval while using up to 98% fewer context tokens.
Google DeepMind says a Sierra Leone classroom trial shifted Gemini use toward learning behavior: queries about how to tackle problems rose from 68% to 90%. The eight-week RCT covered 1,763 students across 12 schools.
NVIDIA Research is tying real-time animation and robotics motion to one generative backbone. MotionBricks reports 350,000-plus motion clips, 15,000 FPS, and 2 ms latency in a SIGGRAPH 2026 project release.