OpenDriveLab Data Bot commited on
Commit
2c9d769
·
1 Parent(s): 4d1a2bc

Restore dataset card README with updated statistics

Browse files
Files changed (1) hide show
  1. README.md +128 -18
README.md CHANGED
@@ -27,11 +27,24 @@ configs:
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
  | --- | ---: | ---: | ---: | --- |
@@ -41,21 +54,118 @@ All images in this version have been processed by EgoBlur for face and license-p
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`.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ This repository version contains the processed IFN and BVN subsets. All RGB frames have been processed with EgoBlur for face and license-plate blurring. At the released sampling rate of **4 fps**, the current IFN+BVN release contains **121.74 hours** of navigation data.
48
 
49
  | Subset | Episodes | RGB frames | Duration @ 4 fps | Task |
50
  | --- | ---: | ---: | ---: | --- |
 
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
+ Current shard counts:
85
+
86
+ | Subset | Shards | Compressed shard bytes |
87
+ | --- | ---: | ---: |
88
+ | `bvn` | 8 | 14,597,684,355 |
89
+ | `ifn` | 9 | 16,623,840,035 |
90
+
91
+ ## Data Format
92
+
93
+ Each line in `bvn/data.jsonl` or `ifn/data.jsonl` is an episode-level JSON object.
94
+
95
+ | Field | Type | Description |
96
+ | --- | --- | --- |
97
+ | `dataset` | string | Dataset subset name, either `bvn` or `ifn`. |
98
+ | `subset` | string | Release subset marker. The current release uses `main`. |
99
+ | `episode_id` | string | Unique episode identifier. This matches the `id` field in `annotations.json`. |
100
+ | `instruction` | string | Primary natural-language navigation instruction. |
101
+ | `instructions` | list[string] | Instruction list. Current records contain one instruction. |
102
+ | `task_type` | string | Task label, e.g. `beyond_the_view_navigation` or `instruction_following_navigation`. |
103
+ | `split` | string | Dataset split. Current release uses `train`. |
104
+ | `image_dir` | string | Relative episode image directory after extraction. |
105
+ | `rgb_dir` | string | Relative RGB frame directory after extraction. |
106
+ | `num_frames` | integer | Number of RGB frames in the episode. |
107
+ | `num_actions` | integer | Number of low-level actions. This matches `num_frames`. |
108
+ | `actions` | list[object] | Per-frame low-level navigation actions. Each action has `dx`, `dy`, and `dyaw`. |
109
+
110
+ Each action object contains:
111
+
112
+ | Field | Type | Description |
113
+ | --- | --- | --- |
114
+ | `dx` | float | Relative forward/backward displacement for the corresponding step. |
115
+ | `dy` | float | Relative lateral displacement for the corresponding step. |
116
+ | `dyaw` | float | Relative yaw change for the corresponding step. |
117
+
118
+ Example:
119
+
120
+ ```json
121
+ {
122
+ "dataset": "ifn",
123
+ "episode_id": "<episode_id>",
124
+ "instruction": "please go along with the rail until you are near by a red cone.",
125
+ "num_frames": 177,
126
+ "num_actions": 177,
127
+ "rgb_dir": "images/<episode_dir>/rgb",
128
+ "actions": [{"dx": 0.0429, "dy": -0.0311, "dyaw": 0.0271}]
129
+ }
130
+ ```
131
+
132
+ `annotations.json` stores the 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, and frame count.
133
+
134
+ ## Usage
135
+
136
+ Load episode metadata with Hugging Face Datasets:
137
+
138
+ ```python
139
+ from datasets import load_dataset
140
+
141
+ bvn = load_dataset("OpenDriveLab/SparseVideoNav", "bvn")
142
+ ifn = load_dataset("OpenDriveLab/SparseVideoNav", "ifn")
143
+ ```
144
+
145
+ Download and inspect shards:
146
+
147
+ ```bash
148
+ tar -I zstd -tf ifn/shards/ifn-00000.tar.zst | head
149
+ tar -I zstd -xf ifn/shards/ifn-00000.tar.zst
150
+ ```
151
+
152
+ After extraction, image paths resolve to paths such as:
153
 
154
  ```text
155
+ images/<episode_dir>/rgb/000.jpg
 
 
 
 
 
 
 
 
 
 
 
156
  ```
157
 
158
+ ## License
159
+
160
+ The dataset is released under CC BY-NC-SA 4.0.
161
+
162
+ ## Citation
163
+
164
+ ```bibtex
165
+ @article{zhang2026sparse,
166
+ title={Sparse Video Generation Propels Real-World Beyond-the-View Vision-Language Navigation},
167
+ author={Zhang, Hai and Liang, Siqi and Chen, Li and Li, Yuxian and Xu, Yukuan and Zhong, Yichao and Zhang, Fu and Li, Hongyang},
168
+ journal={arXiv preprint arXiv:2602.05827},
169
+ year={2026}
170
+ }
171
+ ```