--- license: cc-by-4.0 task_categories: - visual-question-answering - robotics tags: - spatial-reasoning - navigation - vision-language-models - benchmark - cognitive-graph size_categories: - 10K **Code**: [https://anonymous.4open.science/r/paper-code-submission-2026-5FF4](https://anonymous.4open.science/r/paper-code-submission-2026-5FF4) The codebase is organized as: - `toolKit_core.py` / `toolKit_core_forward.py` — shared utilities: maze environment, navigation graph, image indexing, episode execution, metrics - `maze_NUM_*.py` — C4 (numeric 1-2-3) agent and prompt - `maze_LFR_*.py` — C3 (letter L-F-R) agent and prompt - `maze_Arrow_*.py` — C2 (arrow ←↑→) agent and prompt - `maze_noLabel_*.py` — C1 (unlabeled) agent and prompt Quick start: ```python import toolKit_core as core # Configure variant (num / lfr / arrow / nolabel) core.configure("num") # Load maze environment env = core.MazeEnv("Maze_5x5_D0_T4_J2+0") # Load episodes episodes = core.load_episodes_for_maze("Maze_5x5_D0_T4_J2+0", core.PRECOMPUTED_EPISODES_ROOT) ``` See the code repository README for detailed setup instructions, API configuration, and full reproduction steps. ### 4. Navigation Loop At each step, the VLM agent receives a multimodal prompt containing: 1. **Task instructions** — navigation goal description 2. **Few-shot examples** — wall vs. path image examples 3. **Exploration experience** — sequence of triple-perspective images with action labels from the learned path 4. **History** — images and actions taken so far in the current trip 5. **Destination** — overview image of the goal node 6. **Current observation** — triple-perspective stitched image at the current position The agent outputs a single action token (`1`/`2`/`3` for C4, `L`/`F`/`R` for C3, `←`/`↑`/`→` for C2, or `left`/`front`/`right` for C1), which is mapped to a relative direction and executed in the maze environment. Invalid actions trigger a retry with explicit feedback. ### 5. Metrics | Metric | Task | Description | |--------|------|-------------| | **SR** (Success Rate) | All | Fraction of episodes where the agent reaches the goal within the step budget | | **PFS** (Path Fidelity Score) | Repeated Nav., Reversed Nav. | Overlap of directed edges between actual and ideal paths, normalized by actual path length; 0 if goal not reached | | **SPL** (Success weighted by Path Length) | Shortcut Discovery | Ratio of ideal to actual path length, scaled by success indicator | | **DPS** (Directional Progress Score) | Shortcut Discovery | Average cosine similarity between movement vectors and goal vectors across all steps | ## License This dataset is released under the [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) license.