Add dataset card and metadata
#2
by nielsr HF Staff - opened
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 |
+
```
|