Add dataset card and metadata

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - robotics
4
+ license: mit
5
+ tags:
6
+ - vision-and-language-navigation
7
+ - vln
8
+ - embodied-ai
9
+ ---
10
+
11
+ # StereoNav Dataset
12
+
13
+ This repository contains the training and evaluation datasets for **StereoNav**, as presented in the paper [What Limits Vision-and-Language Navigation?](https://huggingface.co/papers/2605.13328).
14
+
15
+ [**Project Page**](https://yunheng-wang.github.io/stereonav-public.github.io/) | [**GitHub Repository**](https://github.com/Yunheng-Wang/StereoNav)
16
+
17
+ ## Dataset Description
18
+
19
+ StereoNav is a robust Vision-Language-Action framework designed to enhance real-world navigation consistency. It addresses gaps between synthetic training and physical execution using Target-Location Priors and stereo vision for enhanced depth awareness. This repository provides the pre-processed data used for the two-stage training pipeline described in the paper.
20
+
21
+ ## Data Structure
22
+
23
+ The pre-processed data should be placed under `data/cache/` following the structure required by the training scripts:
24
+
25
+ ```
26
+ data/cache/
27
+ └── train/
28
+ β”œβ”€β”€ R2R/
29
+ β”‚ β”œβ”€β”€ images/
30
+ β”‚ β”œβ”€β”€ annotations_*.json
31
+ β”‚ β”œβ”€β”€ summary.json
32
+ β”‚ β”œβ”€β”€ baseline.txt
33
+ β”‚ └── intrinsics.txt
34
+ β”œβ”€β”€ RxR/
35
+ β”œβ”€β”€ ScaleVLN/
36
+ └── dagger/
37
+ β”œβ”€β”€ R2R/
38
+ β”œβ”€β”€ RxR/
39
+ β”œβ”€β”€ baseline.txt
40
+ └── intrinsics.txt
41
+ ```
42
+
43
+ ### Components:
44
+ - **Stage 1 Data:** Standard VLN datasets (R2R and RxR).
45
+ - **Stage 2 Data:** Joint training data including ScaleVLN and DAgger-collected trajectories for improved generalization and robustness.
46
+
47
+ ## Citation
48
+
49
+ If you find this dataset or the associated work useful, please consider citing:
50
+
51
+ ```bibtex
52
+ @article{stereonav2026,
53
+ title = {What Limits Vision-and-Language Navigation?},
54
+ author = {Yunheng Wang and Yuetong Fang and Taowen Wang and Lusong Li and Kun Liu and Junzhe Xu and Zizhao Yuan and Yixiao Feng and Jiaxi Zhang and Wei Lu and Zecui Zeng and Renjing Xu},
55
+ journal = {arXiv preprint},
56
+ year = {2026},
57
+ }
58
+ ```