Skip to content

Issue: Inconsistencies between image input selection and action representation #11

@LKlkun

Description

@LKlkun

First, thank you for releasing Nav-R1 and making both the code and models publicly available — this is a very exciting and valuable project.I have two questions that I’d appreciate some clarification on:

Question 1 — Image Input Logic:

In the paper, it is stated that the model receives five past egocentric observations (Images 1–5) and one current egocentric observation (Image 6).

However, in the current implementation of build_cot.py, the following code is used:

selected_images = images[:max_images] if max_images else images

This simply slices the list of skybox images without distinguishing between past and current viewpoints.
Question: How should we correctly provide the “current timestep” image (Image 6) to match the setup described in the paper?

Question 2 — Action Format

The current CoT output represents continuous 3D navigation actions with coordinates and yaw angles, for example:

{"action": "MOVE", "from": [...], "to": [...], "heading_yaw_deg": -56.03}

Meanwhile, the paper describes discrete symbolic actions, such as:

Move forward 25 cm, Turn left 30°, or Stop.

Question: Should the CoT generator (build_cot.py) quantize these continuous movements into discrete symbolic tokens before saving, or are the continuous values intentionally used for both training and evaluation?

Thank you for your time and for this excellent work. I look forward to your clarification.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions