OpenDriveLab-org commited on
Commit
d0eaeee
·
verified ·
1 Parent(s): 74db2b0

Update README.md from 140h_data

Browse files
Files changed (1) hide show
  1. README.md +21 -129
README.md CHANGED
@@ -27,143 +27,35 @@ configs:
27
 
28
  # SparseVideoNav Datasets
29
 
30
- ![SparseVideoNav dataset overview](assets/dataset_mosaic.png)
 
31
 
32
- This repository contains the real-world navigation datasets released with [OpenDriveLab/SparseVideoNav](https://github.com/OpenDriveLab/SparseVideoNav):
33
-
34
- - **BVN**: Beyond-the-View Navigation.
35
- - **IFN**: Instruction-Following Navigation.
36
-
37
- Project links:
38
-
39
- - Project page: https://opendrivelab.com/SparseVideoNav
40
- - GitHub: https://github.com/OpenDriveLab/SparseVideoNav
41
- - Paper: https://arxiv.org/abs/2602.05827
42
-
43
- ## Dataset Summary
44
-
45
- SparseVideoNav studies real-world vision-language navigation with sparse future video generation. The datasets contain language instructions, RGB frame sequences, and low-level navigation actions. The number of actions matches the number of RGB frames for every released episode.
46
-
47
- Due to policy restrictions, this public release contains the policy-compliant subset of the collected real-world data. At the released sampling rate of **4 fps**, the open-sourced subset contains **about 98 hours** of navigation data.
48
 
49
  | Subset | Episodes | RGB frames | Duration @ 4 fps | Task |
50
  | --- | ---: | ---: | ---: | --- |
51
- | `bvn` | 5,417 | 695,373 | 48.29 h | Beyond-the-View Navigation |
52
- | `ifn` | 5,625 | 712,290 | 49.46 h | Instruction-Following Navigation |
53
- | **Total** | **11,042** | **1,407,663** | **97.75 h** | - |
54
 
55
  Duration is computed as `num_frames / 4 / 3600`.
56
 
57
- ## Repository Structure
58
-
59
- Images are stored in compressed tar shards to avoid hundreds of thousands of small files in the Hugging Face repository. Each shard preserves the original relative paths.
60
-
61
- ```text
62
- .
63
- ├── README.md
64
- ├── assets/
65
- │ └── dataset_mosaic.png
66
- ├── bvn/
67
- │ ├── annotations.json
68
- │ ├── data.jsonl
69
- │ ├── merge_info.json
70
- │ ├── shard_manifest.jsonl
71
- │ └── shards/
72
- │ ├── bvn-00000.tar.zst
73
- │ └── ...
74
- └── ifn/
75
- ├── annotations.json
76
- ├── data.jsonl
77
- ├── merge_info.json
78
- ├── shard_manifest.jsonl
79
- └── shards/
80
- ├── ifn-00000.tar.zst
81
- └── ...
82
- ```
83
-
84
- ## Data Format
85
-
86
- Each line in `bvn/data.jsonl` or `ifn/data.jsonl` is an episode-level JSON object.
87
-
88
- | Field | Type | Description |
89
- | --- | --- | --- |
90
- | `dataset` | string | Dataset subset name, either `bvn` or `ifn`. |
91
- | `subset` | string | Release subset marker. The current public release uses `main`. |
92
- | `episode_id` | string | Unique episode identifier. |
93
- | `instruction` | string | Primary natural-language navigation instruction. |
94
- | `instructions` | list[string] | Instruction list. Current records contain one instruction. |
95
- | `task_type` | string | Task label, e.g. `beyond_the_view_navigation` or `instruction_following_navigation`. |
96
- | `split` | string | Dataset split. Current release uses `train`. |
97
- | `image_dir` | string | Original relative episode image directory before sharding. |
98
- | `rgb_dir` | string | Original relative RGB frame directory. |
99
- | `num_frames` | integer | Number of RGB frames in the episode. |
100
- | `num_actions` | integer | Number of low-level actions. This matches `num_frames`. |
101
- | `actions` | list[object] | Per-frame low-level navigation actions. Each action has `dx`, `dy`, and `dyaw`. |
102
- | `annotation_file` | string | Annotation file path in this repository. |
103
- | `frame_files` | list[string] | RGB frame paths inside the shard after extraction. |
104
- | `asset_dirs` | list[string] | Original episode asset directories included in the shard. |
105
- | `shard` | string | Tar shard containing the episode frames. |
106
-
107
- Each action object contains:
108
-
109
- | Field | Type | Description |
110
- | --- | --- | --- |
111
- | `dx` | float | Relative forward/backward displacement for the corresponding step. |
112
- | `dy` | float | Relative lateral displacement for the corresponding step. |
113
- | `dyaw` | float | Relative yaw change for the corresponding step. |
114
-
115
- Example:
116
-
117
- ```json
118
- {
119
- "dataset": "ifn",
120
- "episode_id": "36e980e5a1ff4817",
121
- "instruction": "please go along with the rail until you are near by a red cone.",
122
- "num_frames": 177,
123
- "num_actions": 177,
124
- "rgb_dir": "images/0e0ec1bdcc61a4ef/rgb",
125
- "frame_files": ["images/0e0ec1bdcc61a4ef/rgb/001.jpg"],
126
- "shard": "ifn/shards/ifn-00000.tar.zst"
127
- }
128
- ```
129
-
130
- `annotations.json` stores the original annotation records with the core fields `id`, `video`, `actions`, and `instructions`. `shard_manifest.jsonl` stores shard-level metadata, including the shard path, episode ids, raw byte size, compressed byte size, frame count, and file count.
131
-
132
- ## Usage
133
-
134
- Load episode metadata with Hugging Face Datasets:
135
-
136
- ```python
137
- from datasets import load_dataset
138
-
139
- bvn = load_dataset("OpenDriveLab/SparseVideoNav", "bvn")
140
- ifn = load_dataset("OpenDriveLab/SparseVideoNav", "ifn")
141
- ```
142
-
143
- Download and inspect shards:
144
-
145
- ```bash
146
- tar -I zstd -tf ifn/shards/ifn-00000.tar.zst | head
147
- tar -I zstd -xf ifn/shards/ifn-00000.tar.zst
148
- ```
149
-
150
- After extraction, `frame_files` resolve to paths such as:
151
 
152
  ```text
153
- images/<episode_dir>/rgb/001.jpg
 
 
 
 
 
 
 
 
 
 
 
154
  ```
155
 
156
- ## License
157
-
158
- The dataset is released under CC BY-NC-SA 4.0.
159
-
160
- ## Citation
161
-
162
- ```bibtex
163
- @article{zhang2026sparse,
164
- title={Sparse Video Generation Propels Real-World Beyond-the-View Vision-Language Navigation},
165
- author={Zhang, Hai and Liang, Siqi and Chen, Li and Li, Yuxian and Xu, Yukuan and Zhong, Yichao and Zhang, Fu and Li, Hongyang},
166
- journal={arXiv preprint arXiv:2602.05827},
167
- year={2026}
168
- }
169
- ```
 
27
 
28
  # SparseVideoNav Datasets
29
 
30
+ This private repository contains the processed SparseVideoNav IFN and BVN datasets.
31
+ Images are stored in compressed tar.zst shards. Each shard preserves relative paths such as `images/<sequence>/rgb/000.jpg`.
32
 
33
+ The released annotations keep `id`, `video`, `actions`, and `instructions`; `data.jsonl` additionally repeats useful indexing metadata for loading.
34
+ All images in this version have been processed by EgoBlur for face and license-plate blurring.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
  | Subset | Episodes | RGB frames | Duration @ 4 fps | Task |
37
  | --- | ---: | ---: | ---: | --- |
38
+ | `bvn` | 5,433 | 825,786 | 57.35 h | Beyond-the-View Navigation |
39
+ | `ifn` | 6,260 | 927,268 | 64.39 h | Instruction-Following Navigation |
40
+ | **Total** | **11,693** | **1,753,054** | **121.74 h** | - |
41
 
42
  Duration is computed as `num_frames / 4 / 3600`.
43
 
44
+ ## Structure
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
  ```text
47
+ bvn/
48
+ annotations.json
49
+ data.jsonl
50
+ merge_info.json
51
+ shard_manifest.jsonl
52
+ shards/bvn-00000.tar.zst
53
+ ifn/
54
+ annotations.json
55
+ data.jsonl
56
+ merge_info.json
57
+ shard_manifest.jsonl
58
+ shards/ifn-00000.tar.zst
59
  ```
60
 
61
+ Generated at `2026-07-06 14:23:43` from `/mnt/HDD-raid/siqiteam/140h_data`.