RichardC0216 commited on
Commit
e7ec90a
·
verified ·
1 Parent(s): 0bed164

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +139 -3
README.md CHANGED
@@ -1,3 +1,139 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ ---
4
+
5
+ # CapNav: Capability-Conditioned Indoor Navigation Benchmark
6
+
7
+ CapNav is a benchmark for evaluating **capability-conditioned navigation reasoning** in indoor environments.
8
+ The benchmark focuses on determining whether an embodied agent with specific physical constraints and abilities
9
+ can navigate from a start area to a target area within a complex indoor scene.
10
+
11
+ This repository contains **two complementary datasets**:
12
+ 1. The main **CapNav Benchmark Dataset**, which provides navigation questions paired with scene graph nodes and agent identifiers.
13
+ 2. The **Agent Profiles Dataset**, which defines the physical dimensions and capabilities of each agent type.
14
+
15
+ ---
16
+
17
+ ## Dataset Overview
18
+
19
+ ### 1. CapNav Benchmark Dataset
20
+
21
+ - **File:** `capnav_v0_no_answer.parquet`
22
+ - **Format:** Parquet
23
+ - **Split:** `train`
24
+ - **Rows:** 2,365 (question × agent combinations)
25
+
26
+ This dataset contains natural language navigation questions grounded in indoor scenes.
27
+ Each question is evaluated under a specific agent profile, enabling systematic analysis
28
+ of how agent capabilities affect navigation feasibility.
29
+
30
+ #### Data Fields
31
+
32
+ Below one can find the description of each field in the dataset.
33
+
34
+ - **`question_id` (str)**
35
+ Unique identifier for each question–agent pair.
36
+
37
+ - **`question` (str)**
38
+ Natural language navigation question describing whether an agent can move from a start area to a goal area.
39
+
40
+ - **`scene_id` (str)**
41
+ Identifier of the indoor scene (e.g., `HM3D00000`, `MP3D00027`).
42
+
43
+ - **`scene_type` (str)**
44
+ High-level category of the scene (e.g., `home`).
45
+
46
+ - **`scene_nodes` (list[dict])**
47
+ List of scene graph nodes available in the environment.
48
+ Each node contains:
49
+ - `node_id` (str): Unique identifier of the node
50
+ - `name` (str): Human-readable node name (e.g., room or area label)
51
+
52
+ - **`agent_name` (str)**
53
+ Name of the agent under which the navigation question should be evaluated.
54
+ This field links to an entry in the Agent Profiles Dataset.
55
+
56
+ - **`answer` (optional / null)**
57
+ Ground-truth navigation feasibility label.
58
+ This field is intentionally left empty in the current release and may be populated in future versions.
59
+
60
+ ---
61
+
62
+ ### 2. Agent Profiles Dataset
63
+
64
+ - **File:** `agent_profiles.parquet`
65
+ - **Format:** Parquet
66
+ - **Rows:** One per agent type
67
+
68
+ This dataset defines the physical properties and functional capabilities of each agent
69
+ used in the CapNav benchmark.
70
+
71
+ #### Data Fields
72
+
73
+ - **`agent_name` (str)**
74
+ Unique identifier of the agent (e.g., `HUMAN`, `WHEELCHAIR`, `SWEEPER`).
75
+
76
+ - **`body_shape` (str)**
77
+ Abstract geometric representation of the agent’s body (e.g., `cylinder`, `box`).
78
+
79
+ - **`body_height_m` (float)**
80
+ Agent height in meters.
81
+
82
+ - **`body_width_m` (float)**
83
+ Agent width in meters.
84
+
85
+ - **`body_depth_m` (float, optional)**
86
+ Agent depth in meters.
87
+ May be `null` for rotationally symmetric agents.
88
+
89
+ - **`max_vertical_cross_height_m` (float)**
90
+ Maximum vertical obstacle height the agent can cross.
91
+
92
+ - **`can_go_up_or_down_stairs` (bool)**
93
+ Indicates whether the agent is capable of traversing stairs.
94
+
95
+ - **`can_operate_elevator` (bool)**
96
+ Indicates whether the agent can operate and use elevators.
97
+
98
+ - **`can_open_the_door` (bool)**
99
+ Indicates whether the agent can open doors independently.
100
+
101
+ - **`description` (str)**
102
+ Natural language description summarizing the agent’s physical and functional characteristics.
103
+
104
+ ---
105
+
106
+ ## Relationship Between the Datasets
107
+
108
+ Each row in the CapNav Benchmark Dataset references exactly one agent via `agent_name`.
109
+ The corresponding agent properties should be retrieved from the Agent Profiles Dataset
110
+ before constructing prompts or evaluating navigation feasibility.
111
+
112
+ This separation enables:
113
+ - Modular benchmark design
114
+ - Easy extension with new agent types
115
+ - Stable navigation questions across different embodied agents
116
+
117
+ ---
118
+
119
+ ## Intended Use
120
+
121
+ The CapNav benchmark is intended for:
122
+ - Evaluating multimodal or vision-language models on embodied navigation reasoning
123
+ - Studying how physical capabilities affect navigation feasibility
124
+ - Benchmarking agent-aware reasoning and planning systems
125
+
126
+ The dataset is **not** intended to provide low-level control signals or precise geometric navigation paths.
127
+
128
+ ---
129
+
130
+ ## License
131
+
132
+ - **Dataset:** Creative Commons Attribution 4.0 International (CC BY 4.0)
133
+
134
+ ---
135
+
136
+ ## Citation
137
+
138
+ If you use this dataset in your research, please cite:
139
+