LESSON wm.3.1 · Paper Study · 160 min
Genie 1→3: from latent actions to real-time worlds
Genie 1 jointly learned video representations, latent actions, and action-conditioned dynamics from videos without action labels, enabling control of generated 2D environments. Gen
DIRECT ANSWER · VERIFIED SOURCES ·
What changed fundamentally from Genie 1 through Genie 3?
Genie 1 jointly learned video representations, latent actions, and action-conditioned dynamics from videos without action labels, enabling control of generated 2D environments. Genie 2 expanded toward diverse controllable 3D environments generated from images for agent training and evaluation. Genie 3 generates real-time navigable worlds from text, maintains minutes of consistency at 720p and 24 FPS, and adds promptable world events, while long memory and precise action spaces remain limited.
Key takeaways
- Latent action modeling extracts controllable factors from video changes without requiring keyboard labels.
- The progression moves from short 2D interaction toward more general 3D, real-time generation, and longer consistency.
- Evaluation should separate action response, world memory, object permanence, and long-horizon drift.
Boundary and caveat
Public Genie 3 evidence is primarily official research demonstration and product-prototype material. Architecture, training data, and reproducibility are not yet equivalent to a fully open paper and codebase, so product claims are not treated as independently verified results.
Primary sources
Learning objectives
- Explain what problem “Genie 1→3: from latent actions to real-time worlds” solves without hiding behind terminology.
- Trace the variables and causal links across video tokenization, latent actions, autoregressive dynamics.
- Complete “Trace Genie’s evolution and design an action-control test” and judge the result with evidence rather than intuition.
Core concepts
video tokenization
video tokenization compresses continuous video into a discrete spatiotemporal token grid that preserves motion and scene structure for future prediction. This is visual-temporal representation rather than text subword segmentation; evaluate reconstruction, compression, and whether action-relevant detail survives.
latent actions
latent actions learns discrete control variables from changes between frames in video without action labels, helping dynamics separate autonomous change from user-controllable change. This variable describes environment control rather than language-model orchestration; test identifiability with different actions from the same starting frame.
autoregressive dynamics
autoregressive dynamics predicts the next frame or latent segment step by step from prior spatiotemporal tokens and actions. Errors compound during autoregressive rollout, so evaluate short-horizon quality alongside long-horizon drift, control failure, and state loss.
interaction
interaction requires frame-by-frame actions to produce corresponding observations within an interaction-latency budget while preserving control direction and world state. Frame rate proves speed only; action response, revisit consistency, and sustained stability remain separate tests.
and consistency
and consistency requires objects, geometry, and events to remain recoverable after leaving view and to avoid unexplained drift during continued interaction. Measure it with closed trajectories, revisited locations, and longer action sequences rather than a favorable demo clip.
Build and verify
Trace Genie’s evolution and design an action-control test
- Predict: write the expected output, trend, or failure before running code.
- Build: implement only the minimum components needed to answer the question.
- Verify: compare with a baseline or trusted implementation; save seeds, parameters, and raw outputs.
- Transfer: change one shape, dataset, scale, or workload condition and explain whether the conclusion still holds.