EQA Support Status
Frank inventory โ HM-EQA/OpenEQA envs, reasoner nodesets, gaps
This page does two jobs. Part I โ Support answers which EQA methods AgentCanvas runs or wants to run: a single support matrix (verified ยท in-progress ยท planned), then the env / reasoner / method machinery underneath. Part II โ Landscape places those methods in the wider EQA field โ representative & most-cited reasoners and the 2024โ26 frontier (ยง9) โ condensed from the EQA โ Methods survey. Companion to VLN Support Status and VLA Support Status.
Part I โ Methods we support
1. Support matrix
Every EQA graph AgentCanvas ships, is building, or has planned (ยง8). This is the single source of truth for "what we support" โ the env / reasoner / method backing is in ยง2โยง4, planned adoptions in ยง8, the wider field is Part II. Verified graphs live under eqa/verified/, the rest under eqa/unverified/.
| Graph | Status | Headline result (HM3D, n=100, gpt-4o) |
|---|---|---|
openeqa_em_blind_llm.json |
โ verified working | LLM-Match 0.4175 (paper baseline 0.355, +6 pp) โ run_id=10864f2c |
openeqa_em_single_frame.json |
โ verified working | LLM-Match 0.330 โ single-arbitrary-frame ablation (paper has no entry for this archetype) โ run_id=3aa974ba |
openeqa_em_multiframe.json |
โ verified working | LLM-Match 0.7025 (paper baseline 0.466 GPT-4V K=50, +24 pp) โ run_id=1f2e327b |
openeqa_aeqa_* (A-EQA) |
๐ง TODO โ blocked on data | Active-EQA mode not yet shipped. Blocker is data, not method: the original OpenEQA Meta-Dropbox tarballs (full-fidelity scene frames + states re-render artefacts) are permanently expired (verified 2026-05-04, see scripts/data/fetch_dataset_openeqa.sh); the HF mirror we use for EM-EQA caps each episode at 32 frames and doesn't carry the artefacts an active-explorer needs |
explore_eqa_hmeqa.json |
โ verified working | Author-verified 2026-06-01 โ runs end-to-end on a real HM-EQA episode (HM3D meshes installed, install_ac_hmeqa.sh done). Closes the E6 "validate end-to-end on a real episode" remaining item. |
tooleqa_hmeqa.json |
๐ redone 2026-06-08 (monolith) โ runs e2e, SR tuning | Rebuilt monolith-first: backend ReAct reasoner (tooleqa__step) + fused tooleqa_explore__go_next (full Explore-EQA TSDF frontier step + teleport โ the first port's bug was treating go_next as discrete dead-reckoning). Qwen2.5-VL-3B serves the LLM/VQA; DetAny3D serves 2D/3D detect; all over server-mode HTTP. End-to-end smoke works (first correct answer: ep0 โ 'B' == GT). SR aggregate + 3B convergence still being tuned โ see roadmap #63. Scope still HM-EQA only; reuses the explore_eqa_hmeqa.json TSDF substrate. |
All three OpenEQA EM-EQA graphs reproduced on 2026-05-04. Frozen artefacts (summary + graph + log.jsonl.gz with raw VLM and judge text) live under outputs/archive/openeqa_em_baselines_2026-05-04/ โ the README in that folder is the canonical reproduction record. Headline ordering matches paper expectation: multi-frame โซ blind > single-arbitrary-frame.
We outperform paper baselines because the reasoner + judge are gpt-4o (2025); the paper used gpt-4 / gpt-4-vision-preview (2024). The +24 pp gap on multi-frame is dominated by the model upgrade.
VLN graphs are out of scope (see VLN Support Status); VLA graphs are out of scope (see VLA Support Status).
workspace/graphs/ is organised by domain ร verification status. The EQA verified set is eqa/verified/{openeqa_em_multiframe, openeqa_em_single_frame, openeqa_em_blind_llm, explore_eqa_hmeqa}.json; eqa/unverified/ is currently empty โ its prior occupant tooleqa_hmeqa was removed 2026-06-08 pending a monolith-first redo (A-EQA graphs are also not yet shipped โ data-blocked, see ยง2.3). Graphs stay addressable by bare name โ the execution resolver and architect overlay fall back to a recursive graphs/**/{name}.json search.2. Environment Nodesets
EQA environments wrapped as BaseNodeSets under server mode. Both share the ac-hmeqa conda env in server mode (parallelism="replicated").
2.1 HM-EQA (E6, in progress)
- Files:
workspace/nodesets/env/env_hmeqa/__init__.py+hmeqa_renderer.py+hmeqa_replay.py - Source: House-Mesh EQA over HM3D โ multi-choice questions on semantic scenes
- Capabilities: 5 tools incl. free-pose teleport
- Method side: paired with
explore_eqa.py+explore_eqa_tsdf.py(see ยง3) - Doc: HM-EQA nodeset
- Constraint discovered during integration (TODO #17): live
TSDFPlannerobjects don't cross the server-mode JSON IPC boundary (numba-JIT'd volumes aren't pickle-friendly). The explore-eqa nodeset works around this with subprocess-local module globals keyed byepisode_id, not state containers โ load-bearing design constraint for future container work
2.2 OpenEQA (E9, shipped 2026-05-04)
- File:
workspace/nodesets/env/env_openeqa_em.py - Source: OpenEQA EM-EQA (24.06) โ free-form Embodied QA with LLM-as-judge (1โ5 โ LLM-Match)
- 5 tools:
reset/episode_info/sample_frames/parse_score/emit_metricsโ judge LLM call uses framework builtinllmCall; OpenEQA-specific score parsing + metric naming live in two thin nodeset nodes - Dataset path (the install actually works today): HuggingFace mirror
Embodied1/open-eqa(32 frames/episode parquet) โ installer rewritten to use this since the upstream Meta Dropbox tarballs are permanently expired (scripts/data/fetch_dataset_openeqa.sh) - Critical config โ
image_size(default 512):sample_frameslong-side resize. Mirrors paper baseline (openai_utils.py:30); the default keeps a 32-frame batch under provider single-request size caps (OpenAI rejects >50 MB; raw 1920ร1080 PNGs total ~70 MB and silently fail otherwise โ that bug was the reason early multi-frame smokes scored 1/5 across the board) - Doc: OpenEQA nodeset
2.3 OpenEQA A-EQA (E10, deferred โ blocked on data)
Active-EQA mode would reuse HM-EQA's Habitat manager + an explore-eqa-style termination policy on top of the E9 nodeset, plus a free-text answer-emit action. Not yet shipped โ and the blocker is data, not method:
- The original OpenEQA Meta-Dropbox tarballs (full-fidelity HM3D / ScanNet frames + the
statesarchive used for Habitat re-rendering) are permanently expired โ verified 2026-05-04 (Link ExpiredHTML response, see the rationale comment block at the top ofscripts/data/fetch_dataset_openeqa.sh). - The HuggingFace mirror
Embodied1/open-eqais enough for EM-EQA (32 frames per episode, parquet) but does not carry the scene meshes / state artefacts an active explorer needs. - Method-side dependencies (answer-emit verb on a unified action contract โ TODO #46) are real but secondary; even if those landed today, A-EQA would still be blocked until we either (a) re-render via Habitat from a fresh path-fix patch + recovered
states, or (b) find a community mirror of the original tarballs.
3. Reasoner / Method Nodesets
EQA-shaped graphs are reasoner fragments, not full agents โ pure (frames, question) โ (answer, score) functions. They wrap as composite graph_nodes; default to no iter_in / iter_out (per project memory eqa_reasoner_shape).
3.1 Explore-EQA (paper port)
- File:
workspace/nodesets/explore_eqa.py - Source: Explore-EQA โ agent that explores HM3D scenes, scores VLM token-likelihoods over frontier choices, and decides when to answer
- Pairs with: HM-EQA env nodeset (ยง2.1) โ example graph
explore_eqa_hmeqa.json - Backend lock-in (v1): Prismatic-locked.
ExploreEQANodeSet.initialize()loads Prismatic;vlm.get_loss()is called directly fromVLMScoreStep.forward()โ same pattern as the retiredpolicy_cmaport. Decoupling tracked as TODO #50 - Doc: ExploreEQA nodeset
3.2 Explore-EQA TSDF utilities
- File:
workspace/nodesets/explore_eqa_tsdf.py - Source: vendored
TSDFPlanner+ geom utilities from explore-eqa, kept verbatim with minor tweaks - Why a separate file: TSDFPlanner state is what hits the pickle/JSON-IPC wall mentioned in ยง2.1 โ keeping it in its own module makes the subprocess-local-globals pattern easier to reason about
3.3 OpenEQA reasoner nodes
- File: same
workspace/nodesets/env/env_openeqa_em.pyas the env (the OpenEQA nodeset bundles both env-side reset/sample/info and judge-side parse/emit). The judge LLM call itself is the framework built-inllmCallโ by design, so users can swap providers without touching this nodeset (project memory:llmCall.profile = ""so the active profile resolves at run time) - Judge model is
gpt-4ofor all variants โgpt-4-1106-previewreferenced in the paper has been retired by OpenAI (per project memoryfeedback_openeqa_reasoner_model); don't pin the older model in new graphs.
3.4 ToolEQA (redone 2026-06-08 โ monolith, runs e2e)
- Status: rebuilt monolith-first after the unverified first port was removed.
tooleqa__step(backend,transformers.agentsReAct in-process) dispatches over server-mode HTTP to Qwen2.5-VL-3B (vlm_qwen2_5_vl, LLM + VQA), DetAny3D (model_detany3d, 2D/3D detect), and a new fusedtooleqa_explore__go_nextthat runs the full Explore-EQA TSDF frontier step + teleport (reusing_explore_eqa_tsdf.TSDFPlanner; the first port wrongly treatedgo_nextas discrete dead-reckoning). Graphworkspace/graphs/eqa/unverified/tooleqa_hmeqa.jsonis a Design-B loop โenv_hmeqa__stepis not a loop node (go_next steps it internally), and the step self-evaluates to graphOut. Housekeeping 2026-07-04: the monolith had been shadowed by a same-named root-level copy while the organized slot held the removed first-port remnant โ root copy deleted, monolith now lives at the standard path. End-to-end smoke worked pre-refactor (ep0 โ correct 'B'), but the graph currently starves at iteration 0 (iterIn loop-carry never seeded โ post 2026-06-11 two-sided-iterOut semantics) and is in the unverified re-eval wave (roadmap #63, #64); SR aggregate + 3B convergence also still being tuned. Then decompose into a clean multi-node graph (voxposer monolithic โ decomposed path). - Retained for the redo:
model_detany3dserver nodeset +data/detany3d/weights +ac-detany3dconda env +install_ac_detany3d.sh; thetooleqa-hmeqaeval profile; the upstream fetch stubworkspace/nodesets/_upstream/tooleqa/fetch_upstream.sh; the 2026-05-10 port plan (.claude/plan/) as porting reference. - PortBench v1 scope (unchanged): HM-EQA only โ reuses the
explore_eqa_hmeqa.jsonsubstrate; OpenEQA-A-EQA (data-blocked, see ยง2.3) and EXPRESS-Bench (high integration cost) are explicitly out of scope for v1. Decision recorded in project memoryproject_tooleqa_hmeqa_only.
4. Ready-to-Run Graphs
| Graph | Env | Reasoner / shape | Verified status (HM3D, n=100, 2026-05-04) |
|---|---|---|---|
openeqa_em_blind_llm.json |
OpenEQA EM | blind-LLM (no frames) baseline | โ
LLM-Match 0.4175 โ run_id=10864f2c |
openeqa_em_single_frame.json |
OpenEQA EM | single-frame VLM + LLM judge | โ
LLM-Match 0.330 โ run_id=3aa974ba |
openeqa_em_multiframe.json |
OpenEQA EM | multi-frame VLM (K=32) + LLM judge | โ
LLM-Match 0.7025 โ run_id=1f2e327b |
explore_eqa_hmeqa.json |
HM-EQA | Explore-EQA (Prismatic-locked) | โ verified working โ author-verified 2026-06-01 |
tooleqa_hmeqa.json was redone monolith-first on 2026-06-08 and runs end-to-end again โ see ยง3.4.
When forking a new EQA experiment, start from openeqa_em_multiframe.json โ it's the strongest baseline and the configuration most closely matching the OpenEQA paper. For language-only (text-baseline) ablations, start from openeqa_em_blind_llm.json. The single-frame graph is an ablation slot, useful only as a sanity check that single-arbitrary-frame โ blind (it does โ single-frame underperforms blind, in line with paper expectations that one random frame adds noise rather than signal).
Frozen reproduction package: outputs/archive/openeqa_em_baselines_2026-05-04/ โ contains the three summary.json + graph.json + log.jsonl.gz (raw VLM answers + judge "Your mark: N" text), plus a README with reproduction commands.
5. Datasets, Question Format, and Metrics
5.1 HM-EQA
- Dataset: HM3D semantic scenes; HF mirror
bingCS/hm3dโ 264/266 scenes downloaded as of 2026-04-30; 24 missing only navmesh (env auto-recomputes); 454/500 questions full-fidelity - Question format: multi-choice
- Scoring: Prismatic VLM token-likelihood over choice tokens (
vlm.get_loss)
5.2 OpenEQA EM-EQA
- Dataset: HF mirror
Embodied1/open-eqaโ 32 frames per episode in parquet form. HM3D filter: 557 questions / 63 scenes; ScanNet filter: 1079 questions (untested in our pipeline). Full benchmark in the original paper is 1636 questions. - Question format: free-form (open-ended)
- Scoring: LLM-as-judge โ judge returns 1โ5; the 1โ5 โ LLM-Match conversion is the canonical OpenEQA metric. The judge LLM is configurable via the framework's
llmCallprofile, not pinned to a specific provider - Frame size: long-side 512 px PNG base64 (matches paper
openai_utils.py:30). Configurable viasample_frames.image_size; don't disable unless you've verified your VLM provider accepts >50 MB per request.
5.3 Why two scoring paths matter architecturally
EQA is the first benchmark family in the repo that requires two distinct scoring shapes:
- Multi-choice / VLM token-likelihood (HM-EQA, Prismatic) โ one library call, deterministic
- Free-form / external judge (OpenEQA, any LLM) โ separate inference call, prompt-engineered
Both are wired through the same canvas pattern: env nodeset emits frames + question; reasoner emits answer + per-choice or free-text payload; a thin "scoring" subgraph emits the metric. This is what made OpenEQA E9 a useful generalisation exercise.
6. Eval Infrastructure
6.1 BatchEvalRunner + EnvWorkerPool (ADR-eval-002)
Same shared pipeline VLN and VLA use (agentcanvas/backend/app/agent_loop/eval_batch.py + env_worker_pool.py):
- One fresh
LoopRunnerper episode worker_count > 1spawns N tagged env subprocesses; per-workerenv_panel_overrides+server_url_overrides- Per-episode timeout:
max_steps ร per_step_budget_secโ for EQA you typically want a generous budget because of judge-LLM latency
6.2 Parallelism posture (ADR-server-003)
- HM-EQA and OpenEQA env nodesets stay
parallelism="replicated"โ they're stateful and thread-affine; N tagged copies underworker_count > 1 - The judge LLM uses the framework's
llmCalland inherits whatever profile / batching the runtime is configured for
6.3 Reasoner-shape consequence
Because EQA reasoners are pure (frames, question) โ (answer, score) functions (no iter_in / iter_out by default โ project memory eqa_reasoner_shape), they fit naturally into a per-episode one-shot evaluation rather than per-step VLN-style streaming. Plan eval graphs accordingly: one or a few reasoning steps per episode, terminating cleanly so BatchEvalRunner can advance.
7. Known Gaps
EQA-relevant items in roadmap.md:
| Item | What's missing |
|---|---|
| #17 | Find a VLN/EQA method that needs states to verify the state-container system. HM-EQA was the strong candidate; design constraint discovered: state containers need an in-subprocess addressing mode (no JSON round-trip) before they can hold things like live TSDFPlanner objects |
| #50 | Decouple VLM backend from explore-eqa โ v1 ships Prismatic-locked. Triggered by either a second EQA method needing token-prob scoring or a request to run with GPT-4V / Claude / Gemini |
| E6 | HM-EQA end-to-end validation on a real episode (env + method shipped, smoke not yet recorded) |
| E10 โ OpenEQA A-EQA | Blocked on data, not method. The Active-EQA mode needs the original full-fidelity scene + states artefacts; both Dropbox tarballs are permanently expired (verified 2026-05-04). HF mirror is EM-EQA-only. Method-side bits (decide-to-stop policy + answer-emit verb on TODO #46 unified action contract) are listed as secondary because data has to land first |
| OpenEQA original full-fidelity dataset (TODO) | The HF mirror Embodied1/open-eqa is what works today โ 32 frames per episode in parquet form. The original Meta-released tarballs (open-eqa-hm3d-frames-v0.tgz, states-v0.tar.gz, ScanNet-frames-v0) have permanently expired Dropbox links (scripts/data/fetch_dataset_openeqa.sh documents the 2026-05-04 verification). Recovering them unlocks: (1) true K=50 multi-frame, (2) full ScanNet split (1079 questions, currently untested), (3) A-EQA active exploration. Two paths: re-render via Habitat with a community path-fix patch, or find a community mirror of the originals โ currently unattempted |
| HM3D semantic data missing | data/hm3d/hm3dsem/ lacks .semantic.glb / .semantic.txt / .scn โ fine for explore-eqa, gap for SpatialNav-class methods that want HM3D semantics |
| Multi-frame K=32 vs paper K=50 | Symptom of the entry above โ the HF mirror caps episode length at 32 frames; multi-frame graph's K=50 is effectively K=32 |
| ScanNet portion of OpenEQA untested | Symptom of the entry above โ installer has --filter scannet but our pipeline has only run the HM3D 557-question subset. The full 1636 benchmark (HM3D + ScanNet) hasn't been validated end-to-end |
No seed plumbing in llmCall |
Paper sets seed=1234 for OpenAI calls; our runs are non-deterministic. Mean LLM-Match across โฅ30 episodes is the right comparison, not single-episode scores |
8. Planned Adoptions โ Method & Benchmark Tracks
A frank survey of EQA papers from the last ~12 months, scored for AgentCanvas integration. Two tracks: Method (agent / reasoning approaches we'd port as graph + nodeset) and Benchmark (datasets / metrics we'd add to eval infrastructure). Citations are 2026-05-05 snapshots (Google Scholar primary, Semantic Scholar fallback; numbers <5 are noisy and labelled as such).
8.1 Track A โ Method
| Tier | Paper | Year / Venue | Cites | Architecture fit | Data feasibility | Paper-strategy value | Effort | Verdict |
|---|---|---|---|---|---|---|---|---|
| 1 | ToolEQA (arXiv 2510.20310) | 2025-10 โ ICLR 2026 (in review) | <5 | โ โ โ โ โ tool-call agent โก graph-as-config | ๐ first port removed 2026-06-08 โ redo monolith-first (HM-EQA only) | paper #2 flagship case โ ToolEQA in upstream is multi-thousand-line Python; in AgentCanvas it should be a few-node graph. That compression ratio is the core narrative of paper #2 | ~1 wk | โ adopt next |
| 2 | GraphPad (arXiv 2506.01174) | 2025-06 / arXiv | 2 | โ โ โ โ โ mutable scene-graph = state container; scratchpad = string buffer; both are stock node types | โ OpenEQA spatial subset | High โ pairs with ToolEQA to unify archetype 4 (scene-graph) + 5 (tool-call) under the same canvas idiom | ~1 wk | โ adopt round 2 |
| 2 | GraphEQA (arXiv 2412.14480, CoRL 2025) | 2024 โ CoRL 2025 | 28 | โ โ โ Hydra 3DSG is stateful + sim-tight, hits the same JSON-IPC wall as TSDFPlanner (TODO #17) | โ ๏ธ needs Habitat-Sim RGBD streaming + Hydra integration | Medium โ paper #1 self-evolve anchor baseline; cost is real but value too | ~2-3 wk | โ adopt round 3 |
| 3 | MemoryEQA (2505.13948) / Mind Palace (2507.12846) | 2025-05 / 2025-07 | <5 / 8 | โ โ โ overlaps GraphPad / GraphEQA design space | โ | Low โ memory thread should land after the scene-graph thread to avoid parallel designs | โ | โธ defer |
| 3 | FAST-EQA (2602.15813) / EfficientEQA (2410.20263) | 2026-02 / 2024-10 | <5 / 11 | โ โ incremental over Explore-EQA | โ | Low โ same archetype as already-shipped Explore-EQA | โ | โธ defer |
| 3 | CityEQA (2502.12532, EMNLP 2025) | 2025-02 | 25 | โ different env (city), task shape divergent | โ ๏ธ new dataset | Low | โ | โ skip |
| 3 | EQA-RM (2506.10389, EMNLP 2025) | 2025-06 | 1 | โ reward-model training, not an agent | โ | Medium (revisit when self-evolve loop needs a learned reward) | โ | โธ defer |
| 3 | ConEQsA (2509.11663) | 2025-09 | 0 | โ concurrent / async niche | โ | Low | โ | โ skip |
8.2 Track B โ Benchmark / Eval Infrastructure
| Tier | Dataset / Metric | Year / Venue | Cites | What it adds | Data feasibility | Paper-strategy value | Effort | Verdict |
|---|---|---|---|---|---|---|---|---|
| 1 | EXPRESS-Bench + EAC (arXiv 2503.11117, GitHub) | 2025-03 โ ICCV 2025 | 24 | Exploration-Answer Consistency (EAC) metric โ scores grounding ร exploration alignment, fills the blind spot of LLM-Match-only eval. 2044 Q-T pairs on HM3D | โ self-contained dataset; HM3D in place | Critical โ paper #1's self-evolve loop uses EAC as reward signal; far more informative than LLM-Match alone | ~3 d | โ adopt first |
| 2 | OpenEQA EM-EQA (already shipped) | 2024 / CVPR | 312 | Free-form QA + LLM-Match | โ HF mirror | Anchor baseline | โ | already shipped |
| 2 | HM-EQA (already shipped via Explore-EQA) | 2024 / R:SS | 79 | Multi-choice + active explore | โ | Anchor baseline | โ | already shipped |
| 3 | ExploraQA (OpenReview) | 2025-10 / OpenReview | <5 | 12,436 long-horizon open-ended questions | โ ๏ธ venue not yet finalised | Medium โ wait for ICLR 2026 decision | โ | โธ observe |
| 3 | EQARewardBench (EQA-RM bench) | 2025-06 | 1 | Reward-model evaluation | โ | Low โ not an agent benchmark | โ | โธ defer |
| 3 | DarkEQA | 2025-12 | <5 | Low-light robustness | โ ๏ธ requires re-render | Low | โ | โ skip |
| โ | SpatialVLM (page) / SpatialRGPT (NeurIPS 2024) | 2024 / CVPR / NeurIPS | 792 / 397 | Model-level spatial-reasoning VLMs | โ | Switch in via llmCall profile โ no integration work needed |
โ | config-layer only |
8.3 Landing order
Two tracks are interleaved so the benchmark upgrade lands first; every subsequent method port consumes the new metric.
| # | Item | Track | Window | Output |
|---|---|---|---|---|
| 1 | EXPRESS-Bench dataset + EAC metric node | B | ~3 d | Eval-substrate upgrade โ every downstream method port scores against EAC, not just LLM-Match |
| 2 | ToolEQA graph + tool-node set | A | ~1 wk | Paper #2 case #1 โ flagship "coding-agent porting" story |
| 3 | GraphPad graph + scene-graph state container | A | ~1 wk | Paper #2 case #2 โ graph-as-config isomorphism on scene-graph mutation |
| 4 | GraphEQA full port (Hydra + Habitat RGBD streaming) | A | ~2-3 wk | Paper #1 self-evolve anchor baseline |
After items 1-4 land, paper #2 has N=3+ case studies (existing OpenEQA three + ToolEQA + GraphPad), the cross-framework-porting benchmark is structurally complete; paper #1 has both an EAC reward signal and a strong scene-graph baseline to evolve against.
Part II โ Field landscape
9. Landscape โ representative methods & frontier
Where the supported EQA subset sits in the wider field, condensed from the research survey EQA โ Methods (cite counts are that page's Semantic Scholar snapshot). Ours maps each method to our port status: โ shipped ยท ๐ in-progress ยท ๐ ผ planned (ยง8) ยท โ not ported.
9.1 Representative & most-cited
| Method | Time | Cites | Type | Ours |
|---|---|---|---|---|
| PACMAN | 17.11 ยท CVPR'18 | 753 | end-to-end LSTM (EQA seed) | โ |
| IQA / HIMN | 17.12 ยท CVPR'18 | 426 | interactive VQA | โ |
| OpenEQA (baselines) | 24.04 ยท CVPR'24 | 312 | FM-era EM-EQA + LLM-Match judge | โ shipped (ยง1) |
| ESC | 23.01 ยท ICML'23 | 222 | zero-shot frontier exploration | โ |
| NMC | 18.10 ยท CoRL'18 | 145 | hierarchical modular control | โ |
| MT-EQA | 19.04 ยท CVPR'19 | 131 | multi-target modular EQA | โ |
| Explore-EQA | 24.03 ยท RSS'24 | 79 | FM-era active exploration (confidence) | โ shipped (ยง1) |
| K-EQA | 21.09 ยท TPAMI'23 | 45 | knowledge + 3D scene graph | โ |
| GraphEQA | 24.12 ยท CoRL'25 | 28 | Hydra 3D scene-graph, real-time | ๐ ผ planned (ยง8) |
| Fine-EQA / EXPRESS-Bench | 25.03 ยท ICCV'25 | 20 | dual-policy active EQA + EAC metric | ๐ ผ planned (ยง8) |
9.2 Frontier (2024โ2026)
| Method | Time | Cites | Type | Ours |
|---|---|---|---|---|
| Mind Palace | 25.07 ยท preprint | 11 | long-term active EQA (LA-EQA) | โ |
| MemoryEQA | 25.05 ยท preprint | 9 | memory-centric EQA | โ |
| CoV | 26.01 ยท preprint | 4 | chain-of-view EM-EQA reasoner | โ |
| Multi-LLM EQA | 24.06 ยท preprint | 3 | multi-agent LLM EQA | โ |
| GraphPad | 25.06 ยท preprint | 2 | inference-time mutable 3D scene graph | ๐ ผ planned (ยง8) |
| ToolEQA | 25.10 ยท ICLR'26 (review) | 1 | tool-call ReAct EQA | ๐ in-progress (ยง1) |
| FAST-EQA | 26.02 ยท WACV'26 | 0 | global + local region relevancy | โ |
| DIVRR | 26.03 ยท preprint | 0 | dynamic human-in-loop view refinement | โ |
| ConEQsA | 25.09 ยท preprint | 0 | concurrent / async EQ scheduling | โ |
| HIMM | 26.02 ยท preprint | 0 | human-inspired long-term memory | โ |
| GSMem | 26.03 ยท preprint | 0 | 3D-Gaussian-splat persistent memory | โ |
Our supported set spans the field's two live archetypes: EM-EQA reasoners (OpenEQA baselines โ episodic-memory VLM judging) and active exploration (Explore-EQA), with tool-call (ToolEQA) in progress and the scene-graph line (GraphEQA / GraphPad) planned (ยง8). The 2025โ26 frontier is dominated by memory-centric and Gaussian-splat spatial-memory variants โ none ported yet.