Most robotics benchmarks treat every question as a fresh start, resetting the robot's memory after each answer. New research reveals that this episodic evaluation hides a critical failure: only agents that build a structured 3D spatial-semantic map can accumulate knowledge across a sequence of questions, while simpler memory architectures cause robots to repeatedly re-explore and forget what they’ve already seen.
What the Researchers Built
Researchers from the University of Maryland and collaborating institutions developed a sequential evaluation protocol for Embodied Question Answering (EQA). Unlike standard episodic benchmarks where the robot’s internal state—maps, memory, perceptual embeddings—is wiped clean after each query, the new protocol chains multiple questions in the same environment without resets. This small change exposes a critical architectural bottleneck: agents that rely on episodic memory or implicit latent states cannot effectively reuse prior observations.
To stress-test this bottleneck, the team compared four representative agent architectures:
- ExploreEQA – a VLM with a 2D occupancy map that remembers where the robot has been but not what it saw.
- MemoryEQA – a VLM with an episodic semantic library of pose-tagged images and descriptions, but no spatial fusion.
- 3D-Mem – a VLM with a fully structured 3D spatial-semantic map that binds visual features directly to 3D coordinates.
- UniNavid – a vision-language-action (VLA) model that predicts waypoints from a short RGB window, with memory only in its transformer attention state.
They tested these agents in simulation and on a real Unitree Go2 quadruped robot, asking sequences of five questions per environment covering object identification, counting, and localization.

Key Results
The sequential evaluation revealed a stark divide in performance. In one representative scene from the benchmark, 3D-Mem answered only 1 of 3 questions correctly under episodic evaluation due to incomplete exploration within the per-question budget. When the same three queries were asked sequentially without resetting the map, 3D-Mem answered all three correctly while traveling far less total distance.
The other agent types did not show this improvement. ExploreEQA’s 2D occupancy map could not retrieve visual content—it knew where the agent had been but not what was there, so later questions about object attributes required re-navigation. MemoryEQA’s episodic library lacked spatial consistency; retrieved frames from different viewpoints could not be combined into coherent reasoning. UniNavid, trained entirely from episodic resets, showed no sequential benefit because its implicit latent memory had no mechanism to consolidate observations across query boundaries.
These trends held in real-robot experiments across indoor labs, open lobbies, and hallways. Physical sensing noise and actuation drift amplified the weaknesses of simpler memory architectures: noisy observations reduced evidence quality, and without a structured map the agent had no stable reference for deciding whether a later query could be answered from prior evidence.
How It Works
The core insight is that memory architecture dictates whether an agent can accumulate knowledge compositionally. An episodic evaluation resets the agent after every question, so even a poorly structured memory may succeed on individual queries. Under sequential evaluation, the agent must decide whether the answer to a new question is already available in its stored representation of the environment.
The four agent types represent a spectrum of memory architectures:
| Agent | Memory Type | What It Stores | Sequential Benefit |
|---|---|---|---|
| ExploreEQA | Geometric occupancy | Traversable space, frontier scores | None – no object-level recall |
| MemoryEQA | Episodic semantic library | RGB frames + pose + description + embedding | Weak – no spatial fusion |
| 3D-Mem | Structured 3D spatial-semantic map | Visual features bound to 3D coordinates | Strong – compositional reasoning |
| UniNavid | Implicit latent (transformer attention) | Short window of RGB frames | None – designed for single episodes |
3D-Mem fuses observations from different viewpoints into a globally consistent 3D reconstruction, linking object-level features directly to spatial coordinates. When a new question arrives, the agent can query this map by spatial region or semantic category, retrieving previously seen objects without re-navigation. This is not just an efficiency gain—it improves accuracy because the agent has more complete evidence from earlier traversals.
The other agents fail for distinct reasons: ExploreEQA has no semantic memory, MemoryEQA stores events but cannot fuse them spatially, and UniNavid has no long-term memory at all. The sequential protocol cleanly isolates these failures, showing that architectural choices about memory structure directly determine whether an agent can handle continuous deployment.

Why This Matters for Robotics
Sequential embodied question answering is the natural mode for real-world service robots. A warehouse robot asked to “find the blue bin” and then “is the blue bin full?” should not re-explore the entire floor. A home assistant asked “where are the keys?” and then “what color are they?” should recall the keys’ appearance from the first search. This paper demonstrates that most current EQA systems cannot do this—they treat each question as an independent episode, wasting time and risking errors.
For buyers and operators evaluating robots, the finding points to a critical specification: the robot’s memory architecture. Not all “memory” is equal. A robot that builds a persistent 3D spatial-semantic map (like 3D-Mem) can accumulate observations across tasks and queries, while robots that rely on episodic logs or implicit attention states will struggle with sequential interactions.
This has direct implications for browse humanoid robots on Robot Overflow or warehouse robots that need to answer operator questions on the fly. It also suggests that used industrial robots retrofitted with VLMs may underperform unless paired with structured memory layers.
Limitations and Open Questions
The study focuses on four specific agent architectures and a limited set of question types (color, count, location). It remains unclear how the results generalize to more complex queries, dynamic environments where objects move, or lifelong learning scenarios where the map must update over days. The real-robot experiments used a single quadruped platform; noise profiles on wheeled or humanoid robots could differ.
Another open question is how to efficiently update the 3D map when objects are removed or relocated. The sequential evaluation assumes a static environment. In real deployments, a robot that remembers yesterday’s furniture arrangement might give wrong answers today. Adaptive memory that forgets or updates is still an unsolved challenge.
Frequently Asked Questions
What is the difference between episodic and sequential evaluation in embodied QA? In episodic evaluation, the robot’s memory is completely reset before each new question. In sequential evaluation, the robot retains its internal map and memory across a sequence of questions in the same environment.
Which memory architecture performed best under sequential evaluation? The 3D-Mem agent, which builds a structured 3D spatial-semantic map, outperformed all others by accumulating observations across queries and composing them for later answers.
Do these findings apply to real robots or just simulation? Yes, the researchers validated all four agents on a physical Unitree Go2 robot in indoor environments, and the sequential trends matched the simulation results.
Why can’t a simple episodic memory work for sequential questions? Episodic memories are stored as independent events without spatial fusion. The robot cannot reason across viewpoints or determine whether a new question can be answered from past observations, forcing it to re-explore.
Conclusion
This paper exposes a fundamental blind spot in embodied question answering: episodic evaluation hides how poorly most agents handle sequential queries. Only agents with structured 3D spatial-semantic memory can accumulate knowledge across questions, a capability essential for any robot deployed in a continuous environment. The sequential evaluation protocol should become a standard test for general-purpose robotic agents.
