[WIP] VLN Benchmark: H1 Navigation in Matterport 3D with NaVILA VLM#446
Open
kanghui0204 wants to merge 1 commit intomainfrom
Open
[WIP] VLN Benchmark: H1 Navigation in Matterport 3D with NaVILA VLM#446kanghui0204 wants to merge 1 commit intomainfrom
kanghui0204 wants to merge 1 commit intomainfrom
Conversation
Two-level hierarchical policy for Vision-Language Navigation: - High-level: NaVILA VLM generates velocity commands from RGB images - Low-level: RSL-RL locomotion policy converts to joint actions Code organization follows Arena patterns: - isaaclab_arena/embodiments/h1/ Standard H1 + VLN extension - isaaclab_arena/tasks/ VlnR2rMatterportTask - isaaclab_arena/metrics/ SPL, Success, PathLength, DTG (XY) - isaaclab_arena/assets/ MatterportBackground with lighting - isaaclab_arena/policy/vln/ VlnVlmLocomotionPolicy (client) - isaaclab_arena_navila/ NaVilaServerPolicy (server) - isaaclab_arena_environments/ h1_vln_matterport environment Key features: - Auto scene-episode matching via scene_filter - Full image history + uniform sampling for VLM stop detection - Configurable head + follow cameras - Docker VLM server (docker/Dockerfile.vln_server) - VLN-CE R2R dataset support (11 Matterport scenes, 1077 episodes) Verified: success=1.0, SPL=0.77 on zsNo4HB9uLZ scene
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
[WIP] VLN Benchmark: H1 Navigation in Matterport 3D with NaVILA VLM
Summary
Add Vision-Language Navigation (VLN) benchmark support to IsaacLab Arena, enabling H1 humanoid navigation in Matterport 3D indoor scenes using the NaVILA VLM.
This is a draft PR for early review and feedback. The core pipeline is functional and tested, but some areas may need refinement before merging.
Architecture
Two-level hierarchical policy:
Communication between Isaac Sim (client) and NaVILA (server) uses Arena's ZeroMQ remote-policy framework (merged in #394).
What's Included
isaaclab_arena/embodiments/h1/isaaclab_arena/tasks/vln_r2r_matterport_task.pyisaaclab_arena/metrics/vln_metrics.pyisaaclab_arena/assets/matterport_background.pyisaaclab_arena/policy/vln/isaaclab_arena_navila/isaaclab_arena_environments/vln_environment.pyh1_vln_matterportenvironment registrationdocker/Dockerfile.vln_server,docker/run_vln_server.shisaaclab_arena/policy/vln/pretrained/Key Design Decisions
--episode_start/endrefers to indices within the filtered set.isaaclab_arena_navila/), following theisaaclab_arena_gr00tpattern. Other VLMs can be added without changing client code.Test Results
VLM correctly outputs "stop" when task is complete (e.g., "I think I should stop because I have finished the instruction.").
Known Limitations
num_envsmust be 1 (multi-env VLM instruction tracking not yet implemented)How to Test
See
isaaclab_arena_navila/README.mdfor full setup instructions (English + Chinese).Client (inside Isaac Sim container)
Checklist