Li Fei-Fei's Latest Long-Form Article: When Video Generation, Robotics, and NVIDIA All Call Themselves World Models, We Need a Taxonomy

marsbitPublicado em 2026-07-05Última atualização em 2026-07-05

Resumo

In a new article, Dr. Fei-Fei Li addresses the widespread and often inconsistent use of the term "world model" in AI. She proposes a clear, functional taxonomy rooted in the classic Partially Observable Markov Decision Process (POMDP) loop (agent → action → state → observation → agent). According to this framework, current systems called "world models" are different projections of this loop, categorized by their primary output: 1. **Renderers**: Output observations (pixels). Their goal is visual fidelity for human consumption (e.g., video generation models like Sora). They are the most commercially mature but are limited by a focus on appearance over physical accuracy. 2. **Simulators**: Output states (geometric, physical, dynamic representations). They provide a structurally accurate world for both human professionals (e.g., architects) and computational agents (e.g., robots for training). Li argues simulators are the crucial, underappreciated bridge, as they can underpin both rendering and planning. 3. **Planners**: Output actions. Given an observation and a goal, they decide what an agent should do next (e.g., robotic action models). This area is highly promising but remains the least mature for real-world deployment. Li highlights a key trend: the boundaries between these three categories are beginning to blur, as they all rely on a shared underlying understanding of geometry, physics, and dynamics. The logical endpoint is a unified world foundation model capable of ...

Author: Li Fei-Fei

Compiler: Jiayang

"World model" is probably the hottest and most chaotic concept in the AI field since 2025. When Sora was released, OpenAI called it a world simulator; Genie lets you walk around in generated scenes and also calls it a world model; robotics companies say they are working on world models, NVIDIA says Omniverse is the infrastructure for world models, and even game engines have been pulled into this narrative. Everyone is using the same term, but they are all talking about completely different things.

Today, Li Fei-Fei published a new article on her personal Substack, clarifying this concept. She first returns to the most classic diagram from reinforcement learning textbooks (the POMDP closed loop: agent→action→state→observation→agent), and then points out: what is now called a "world model" is actually three different projections of this closed loop. What outputs pixels (observations) is a renderer, what outputs states is a simulator, and what outputs actions is a planner. The classification standard is very simple: it depends on which part of the closed loop you output.

(Source: MIT Technology Review)

She judges that among the three, the renderer is the most commercially mature but has a ceiling (looking good does not equal being physically correct), the planner is the most exciting but farthest from real-world deployment (the gap between lab demos and practical usability is still huge), and the simulator is the critically underestimated hub. Because the simulator works at the level of geometry, physics, and dynamics, it can project upward into pixels for human consumption, and also derive action consequences for robot use. Mastering simulation gives you the foundation for both rendering and planning; the reverse is not true.

This article is of course also a product manifesto for World Labs. Their Marble already outputs both Gaussian splats and collision meshes, attempting to unify the renderer and simulator into a single model. The endgame depicted at the end of the article is a unified world foundation model, capable of freely switching between rendering, simulation, and planning based on downstream needs. Whether this vision can be realized is another matter, but as an analytical framework, the tripartite classification of renderer/simulator/planner may indeed help cut through some of the noise surrounding the current concept of "world model."

The full text is translated below.

"The world is everything that is the case." — Ludwig Wittgenstein, Tractatus Logico-Philosophicus, 1921

The world is not made of words.

In an earlier article, we proposed that spatial intelligence is the next frontier of AI, and world models are the path to it. Here, the World Labs team and I want to go one level deeper: among the many things now labeled "world models," which functional components truly constitute this capability? And what are their respective uses?

Language models have endowed machines with powerful control over concepts, vocabulary, and reasoning, but the physical world, whether virtual or real, operates on a completely different substrate. Language models learn the statistical structure of text; world models learn the statistical structure of space and time: how light falls on a surface, what a garden looks like from an angle never captured by a camera, how objects respond to forces and follow physical laws.

This makes "world model" one of the most important, and also most abused, terms in AI today. Computer vision, robotics, reinforcement learning, and generative AI all claim to be building world models, but each refers to something quite different. A video model that generates gorgeous but physically impossible flames, a language model that improvises playable games, a physics engine that faithfully simulates combustion—they are all called by the same name.

The ancient Greeks could never agree on what the world was made of, be it fire, water, or indivisible atoms, because "the world" was never a single thing. It was always a stand-in a thinker used to reason about a certain totality. AI has inherited the same problem, and it happens precisely at the moment when the field most needs precision.

The Closed Loop Behind the Taxonomy

To sort out this confusion, we can start with a diagram older than all the technologies mentioned above. All reinforcement learning textbooks, including the classic Sutton and Barto, have for decades used variants of the same diagram to describe how an agent interacts with the world. The formal name of this diagram is a partially observable Markov decision process (POMDP), and the initial definition of the term "world model" belongs to this tradition.

An agent (which can be a human, robot, or software system) performs actions. These actions change the state of the world. But the agent can never directly see the state itself; what it receives are observations: photons hitting the retina, sensor readings, pixels in a video frame. New observations guide new actions, and the cycle repeats.

The word "state" needs to be unpacked because its meaning shifts across fields. This is not the chemist's state, not the distinction between solid, liquid, and gas. This is the physicist and roboticist's state: a complete description of everything that is happening in the world at a given moment, including every object, every position, every velocity, every property. State is the underlying reality of the world, complete in principle, but forever unobservable directly by any agent within it. Observations are the agent's partial perspective on this reality. Actions are the agent's response based on this.

This closed loop (agent→action→state→observation→agent) is precisely the structure that gives the term "world model" its technical meaning. The phrase itself is older, dating back to Kenneth Craik's 1943 proposal that the mind reasons by running a "small-scale model" of reality, and was introduced into the neural network field in the late 1980s and early 1990s. This closed loop also explains what people mean when they use the term today. The various things now called world models are actually different projections of the same closed loop, each outputting a different component of the loop.

The Three Functions of World Models

The first type of world model is the renderer. The renderer outputs observations, specifically pixels for human eyes, and the most important quality metric is visual fidelity. A video model that turns text prompts into cinematic aerial shots is a renderer; interactive systems like Google's Genie 3 or World Labs' own RTFM are also renderers, generating imagery in real-time based on user input. Such models lack explicit understanding of 3D structure. They generate what a viewer would see, not what things actually are. The buildings in an aerial shot might look flawless from above, but try to navigate the city below and they fall apart.

The second is the simulator. The simulator outputs states: a representation of the world that is faithful in geometry, physics, or dynamics, on which both humans and computer programs can compute and interact. The renderer's contract is purely visual, while the simulator's contract is structural—it requires geometry that holds up to inspection, physics that follows Newton's laws, and dynamics that behave as expected by physical principles. The simulator serves two types of users. Professionals like architects, designers, filmmakers, and game developers need accuracy beyond visual plausibility. Computer programs like reinforcement learning agents, robot controllers, and autonomous vehicles use the simulator as a training ground to interact with the world at scale, testing scenarios that would be dangerous, expensive, or impossible to execute in reality.

The third is the planner. The planner outputs actions. Given an observation and a goal, the planner answers the question: what should the agent do next. In many ways, the planner is the inverse of the renderer. The renderer takes actions as input and produces observations; the planner takes observations as input and produces actions, thereby closing the perception-action loop. Vision-Language-Action models (VLA), model-based systems, and the new wave of World Action Models are all attempts at planning: enabling systems to decide what a robot should do in an unstructured world.

These three categories cover most of the work currently being implemented, and distinguishing between them is useful in practice. But these categories are not fundamentally separate. They share the same underlying knowledge about how the world works: geometry, physics, dynamics. A model that can render a cup from any angle should, in principle, also be able to simulate what happens if the cup is pushed, and plan a hand to pick it up. Increasingly, the most interesting research is intentionally blurring the boundaries between these three.

Image丨The Three Types of World Models (Source: Substack)

Why Simulation is the Critical Hub

Among the three categories, the simulator receives the least public attention but is the most important. This article aims to correct that asymmetry.

Renderers are currently the most commercialized. A multitude of image- or text-to-video products are expanding rapidly in both consumer and enterprise markets. Google's Nano Banana model delivers renderer-level image generation capabilities to possibly hundreds of millions of users. The technology is real, and the market is real. However, the target of renderer optimization is visual plausibility, not physical accuracy, and that ceiling is important. Their outputs are beautiful, but you cannot use them to design a building or train a robot.

Planners are the most exciting and least mature, closely related to the rapidly evolving field of robot learning. Over the past two years, this field has produced many robot demonstrations that look impressive in videos, but we need to be honest about what these demos actually show. Almost all are confined to highly constrained lab environments, with limited object variety and short task durations. None have been validated against the complexity, diversity, and duration required for real-world deployment. The gap between a stunning demo video and a robot that works reliably in a kitchen, warehouse, or operating room remains vast.

Despite this, the scale of commercial bets is substantial. A wave of well-funded newcomers is racing to launch general-purpose planning systems, while large infrastructure players are building planning capabilities on top of broader simulation stacks.

Simulation is the bridge connecting the two. If language is an abstraction of the world, and pixels are a projection of the world, then geometry, physics, and dynamics are the world itself. The simulator must operate at this level: it is the structural skeleton from which visual appearance (for renderers) and action consequences (for planners) can both be derived.

A model that masters simulation can project its understanding into pixels for human consumption, and into action predictions for embodied agents. A model that only masters rendering or only planning can do neither. The commercial space here is immense. NVIDIA's Omniverse alone targets a total addressable market estimated by the company at over a trillion dollars, covering factories, warehouses, supply chains, and digital twins. Robot training, autonomous driving testing, architectural visualization, engineering design, drug discovery—all rely on some form of simulation.

The most difficult open questions in the field are also concentrated here. 3D data with explicit geometry, material properties, and physics annotations is several orders of magnitude scarcer than the internet videos used to train renderers. The sim-to-real gap (the difference between how objects behave in simulation and in the real world) persists. Generative simulators add a new risk: AI-generated geometry may look correct but actually contain self-intersections or incorrect scales, causing physics simulation to produce absurd results. The computational cost of large-scale multi-physics simulation (rigid bodies, deformable objects, fluids, cloth all interacting simultaneously) is still several orders of magnitude higher than single-domain simulation.

At World Labs, Marble is our first step in this direction. It takes multimodal input (text, images, video, or spatial sketches), generates explorable 3D environments, and simultaneously outputs Gaussian splats for visual exploration and collision meshes for physics engine operation. But Marble is only the first chapter of a long arc. This story is being written across the entire field as the boundaries between rendering, simulation, and planning begin to dissolve.

Boundaries are Dissolving, and What Comes Next

The most important trend in the field right now is that the three categories are beginning to merge. The underlying consensus is: the knowledge needed to render a world, simulate it, and act within it is largely the same. Following the previous example, a model that truly understands how a cup sits on a table (its geometry, material properties, response to force, etc.) should be able to render that cup from any angle, simulate what happens if the cup is pushed, and plan a hand to pick it up. The three categories are three projections of the same underlying understanding.

For instance, a small but growing body of work from various robotics labs has recently shown a possibility that is at least conceptually viable: a pre-trained video renderer can serve as a backbone network for joint world prediction and action prediction, allowing a single model to simultaneously imagine "what will happen" and "what to do," thus bridging renderer and planner. World Labs' Marble already outputs both Gaussian splats and collision meshes from a single model, dissolving the boundary between renderer and simulator. At every level, there is a shift from passive output to interactive systems: renderers become responsive to action conditions, simulators generate worlds that are more controllable and editable, and planners begin to engage in deliberative reasoning rather than just reacting.

The logical endpoint is a unified world model: a foundation model capable of rendering photorealistic views, generating physically accurate structures, planning action sequences, and switching between different output modalities based on downstream user needs. We will still face a series of daunting challenges. The data landscape is highly uneven, with renderers sitting atop vast amounts of internet video, while simulators and planners suffer from severe shortages of 3D assets and robot demonstration data. Optimization for visual aesthetics may sacrifice the precision needed for robotics or high-fidelity simulation. Reconciling these tensions within a single architecture is the central open problem in world model research today, and is what World Labs is committed to solving as Marble continues to evolve.

(Source: Substack)

But the general direction is already clear. From the late 1980s to today, the field has always bet on the same wager: if the world model is rich enough, everything an agent needs to see the world, construct it, and act within it will be inside. This bet is now driving a generation of research. What truly adds weight to it is the already ongoing fusion: the three lines of rendering, simulation, and planning, each already supporting industries worth tens of billions of dollars, initially independent research directions, are now converging. When boundaries disappear, the confluence of the three will redefine something larger: the relationship between machine intelligence and the physical world it inhabits, which is the long-term trajectory of spatial intelligence.

Language gave machines a way to talk about the world. World models are how machines will ultimately understand, imagine, reason about, and interact with it.

Reference: 1.https://drfeifei.substack.com/p/a-functional-taxonomy-of-world-models

Perguntas relacionadas

QAccording to Li Fei-Fei's article, what are the three main functional categories of 'world models' based on the POMDP loop?

AThe three main categories are Renderers, Simulators, and Planners. A Renderer outputs observations (like pixels for human consumption). A Simulator outputs the underlying state (a structurally faithful representation of geometry, physics, and dynamics). A Planner outputs actions (determining what an agent should do next).

QWhy does the article argue that the Simulator is the critical hub among the three types of world models?

AThe article argues that Simulators operate on the foundational level of geometry, physics, and dynamics, which constitute the fabric of the world itself. A model that masters simulation can project its understanding upwards into pixels for humans and downwards into action consequences for embodied agents. In contrast, a model that masters only rendering or only planning cannot do both. It serves as the bridge between visual appeal and actionable intelligence.

QWhat current trend in world model research does Li Fei-Fei identify as the most important?

AThe most important trend is the convergence or fusion of the three categories (Rendering, Simulation, and Planning). The consensus is that the knowledge required to render a world, simulate it, and act within it is largely the same. These categories are seen as three different projections of the same underlying understanding of the world, and research is increasingly working to blur the boundaries between them.

QWhat is the 'logical endpoint' or ultimate vision for world models described in the article?

AThe logical endpoint is a unified world model: a single foundational model capable of rendering photorealistic views, generating physically accurate structures, and planning action sequences. It would switch between these output modalities based on the needs of the downstream user, integrating rendering, simulation, and planning into one system.

QWhat are some of the key challenges facing the development of advanced world models, particularly Simulators?

AKey challenges include: 1) Data Scarcity: Explicit 3D data with geometric, material, and physical annotations is orders of magnitude scarcer than internet videos used for training renderers. 2) The Sim-to-Real Gap: Differences between how objects behave in simulation versus the real world. 3) Generative Risks: AI-generated geometry might look correct but contain errors leading to absurd physics. 4) Computational Cost: Large-scale multi-physics simulation (involving rigid bodies, deformables, fluids, cloth) is significantly more expensive than single-domain simulation.

Leituras Relacionadas

Forbes Feature: Stablecoin Cross-Border Payments Are Faster, But Not Yet Cheaper

A Forbes feature delves into the state of stablecoin-based cross-border payments, noting rapid growth but a key shortfall: while faster and more accessible, they are not yet cheaper. At a recent industry conference in Mexico City, optimism about technology, regulation, and volume was tempered by discussions with practitioners. The core issue is liquidity. Traditional FX brokers charge 60-70 basis points, and stablecoins promise to slash this to 2-5 basis points. However, this theoretical cost advantage cannot be realized until deep liquidity pools are established at scale, requiring significant institutional capital inflow. A major adoption barrier is trust. Businesses often rely on long-standing relationships with traditional brokers, valuing reliability over marginal cost savings. This shift will be gradual. Furthermore, successful companies in the space are not positioning themselves as replacements for legacy systems like SWIFT, but as complements. They leverage stablecoins for speed while using traditional rails for their standardization and reliability in ensuring accurate payment details—a critical factor for supplier payments to avoid customs issues. Companies like Caliza, experiencing high monthly growth, exemplify this hybrid approach. The industry anticipates consolidation, as long-term viability will depend on securing the essential trifecta: proper licensing, robust fiat on/off-ramps, and deep liquidity. Without these, firms risk being mere intermediaries rather than building sustainable businesses.

marsbitHá 1h

Forbes Feature: Stablecoin Cross-Border Payments Are Faster, But Not Yet Cheaper

marsbitHá 1h

Li Feifei's Latest Article: When Video Generation, Robotics, and NVIDIA All Claim to Have 'World Models,' We Need a Taxonomy

"World Model" has become a widely used yet ambiguous term in AI. Drawing from the classic POMDP framework (agent → action → state → observation), this article proposes a functional taxonomy to clarify the concept. It identifies three distinct types, categorized by their output in the perception-action loop: 1. **Renderers**: Output visual observations (pixels). These models, like advanced video generators, prioritize visual fidelity but often lack underlying physical accuracy. 2. **Simulators**: Output the state of the world (geometry, physics, dynamics). They provide a structurally accurate representation for professionals (e.g., architects) and serve as training environments for robots and AI agents. 3. **Planners**: Output actions. Given an observation and a goal, they determine what an agent should do next, closing the perception-action loop (e.g., vision-language-action models). While renderers are currently the most commercially mature and planners are the most aspirational, the article argues that **simulators are the crucial, underappreciated hub**. By working at the level of geometry and physics, a simulator can project upwards to create visuals for humans and downwards to predict action consequences for agents. The future lies in the convergence of these three functions. Emerging research and products, like World Labs' Marble model which outputs both visual splats and physical collision meshes, are beginning to blur these boundaries. The logical endpoint is a unified world foundation model capable of rendering, simulating, and planning based on a shared understanding of spatial and temporal structures—ultimately enabling machines to understand, imagine, and interact with the physical world.

链捕手Há 1h

Li Feifei's Latest Article: When Video Generation, Robotics, and NVIDIA All Claim to Have 'World Models,' We Need a Taxonomy

链捕手Há 1h

Trading

Spot
活动图片