Image2Sim Trains Nav on 20K Neural Scenes, Transfers to Habitat
TL;DR
- A feed-forward Gaussian scene builder plus a one-step pixel-flow renderer converts video/RGB-D collections into roughly 20K interactive scenes and over 10 million navigation samples.
- Navigation models trained only in Image2Sim scored 66.8% success and 62.4% SPL on R2R-CE zero-shot in the Habitat simulator, per Table 2 of the paper.
- Scaling to 10M samples lifted R2R-CE success from 46.1% to 66.3%, and physical Hello Robot Stretch 3 trials improved path-following from 40% to 55%.
The interesting result in the Image2Sim paper posted to Hugging Face is not that another vision-language navigation model set a new state of the art. It is that a navigation model trained entirely inside a neural simulator, with zero exposure to the target environment, transferred zero-shot to Habitat and scored 66.8% success with 62.4% SPL on R2R-CE, according to Table 2 of the paper by Zihan Wang, Seungjun Lee, Yinghao Xu, and Gim Hee Lee at NUS and HKUST.
The mechanics are worth pulling apart. Image2Sim decouples two jobs that most 3D scene systems bundle together: a feed-forward feature-Gaussian model lifts posed RGB-D observations into a 3D scene representation, and a separate geometry-aware one-step pixel-flow renderer turns those sparse projections into 512×1024 panoramic RGB-D at roughly 40 FPS on a single RTX 4090. Feed that pipeline video and image data from Matterport3D, HM3D, ScanNet, Gibson, ARKitScenes, Structured3D, and RealSee3D and it produces around 20K interactive scenes and over 10 million navigation training samples, with actions and natural-language instructions generated automatically (the instruction step uses Qwen3-VL-32B-Instruct).
Why this matters if you are not training your own navigation stack: the ceiling on embodied AI has been scene supply, not model design. Hand-built simulators like Habitat and Isaac are excellent but expensive to scale in scene count, and that expense favors the incumbents. A pipeline that produces 20K plausible interactive scenes from existing RGB-D dumps changes the cost curve for anyone whose bottleneck was not GPUs but environments to explore. The scaling table in the paper reinforces the point, with R2R-CE success rising from 46.1% at the low end to 66.3% at 10M samples along a log-linear trend the authors describe as unsaturated.
The honest caveats. Real-world evaluation is limited: 20 trials per scenario on a Hello Robot Stretch 3, where Image2Nav lifted path-following from 40% to 55% and goal-oriented from 25% to 45% over the baseline. Encouraging, but a long way from statistically robust. The authors themselves flag three limitations: renderer capacity traded for speed, no contact dynamics or movable objects, and VLM-driven annotation that may bake linguistic bias into every downstream policy. What the paper does not tell you is compute cost per sample versus a Habitat pipeline, or how any of this holds up outdoors, since every source dataset is indoor.
The direction is the part worth watching. If procedural neural simulators keep closing the sim-to-real gap this quickly, the strategic question for robotics teams shifts from which simulator to invest in toward which data engine to run against the video and RGB-D data they already own.
Originally reported by huggingface.co
Read the original article →Original headline: Image2Sim Paper: NUS/HKUST Neural Simulator Trains Embodied Navigation Purely on Generated Data, Hits 66.3% Success on R2R-CE Zero-Shot Transfer to Habitat