[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
Features: - VLN evaluation pipeline: VlnVlmLocomotionPolicy (VLM + RSL-RL composite) - NaVilaServerPolicy with configurable history padding, frame cap, token limit - Matterport collision support: ground plane, collision overlay, mesh colliders - Collision proxy tools: USD-to-OBJ export and OBJ-to-USDA conversion - User-configurable sensors: head/follow camera position, depth, height scanner - STOP diagnostic flags: --ignore_vlm_stop, --min_vlm_stop_distance - Updated pre-trained H1 locomotion checkpoint (rough-terrain) - Comprehensive user-facing README with CLI reference and training guide Cleanup: - Remove unused VLN bridge code (rslrl_loader, vln_env_wrapper, vln_client_side_policy) - Remove dead --ll_* CLI parameters from vln_environment - Fix configclass default_factory handling in combine_configclass_instances - Fix policy_runner startup: skip global asset registry for dotted policy paths - Lazy imports in policy/__init__ to avoid remote asset timeout during training Made-with: Cursor
3da5b1c to
5dad0b0
Compare
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