OpenDriveLab-org commited on
Commit
c26057d
·
verified ·
1 Parent(s): 25a8d55

Update dataset card and overview image

Browse files
Files changed (1) hide show
  1. README.md +45 -11
README.md CHANGED
@@ -27,6 +27,8 @@ configs:
27
 
28
  # SparseVideoNav Datasets
29
 
 
 
30
  This repository contains the real-world navigation datasets released with [OpenDriveLab/SparseVideoNav](https://github.com/OpenDriveLab/SparseVideoNav):
31
 
32
  - **BVN**: Beyond-the-View Navigation.
@@ -42,10 +44,15 @@ Project links:
42
 
43
  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.
44
 
45
- | Subset | Episodes | RGB frames | Task |
46
- | --- | ---: | ---: | --- |
47
- | `bvn` | 5,417 | 695,373 | Beyond-the-View Navigation |
48
- | `ifn` | 5,625 | 712,290 | Instruction-Following Navigation |
 
 
 
 
 
49
 
50
  ## Repository Structure
51
 
@@ -54,6 +61,8 @@ Images are stored in compressed tar shards to avoid hundreds of thousands of sma
54
  ```text
55
  .
56
  ├── README.md
 
 
57
  ├── bvn/
58
  │ ├── annotations.json
59
  │ ├── data.jsonl
@@ -72,13 +81,36 @@ Images are stored in compressed tar shards to avoid hundreds of thousands of sma
72
  └── ...
73
  ```
74
 
75
- Each line in `bvn/data.jsonl` or `ifn/data.jsonl` is an episode-level JSON object. Important fields:
76
-
77
- - `episode_id`: episode identifier.
78
- - `instruction` / `instructions`: natural-language navigation instruction.
79
- - `actions`: per-frame low-level action sequence with `dx`, `dy`, and `dyaw`.
80
- - `frame_files`: RGB frame paths inside the shard after extraction.
81
- - `shard`: shard file containing the episode frames.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
 
83
  Example:
84
 
@@ -95,6 +127,8 @@ Example:
95
  }
96
  ```
97
 
 
 
98
  ## Usage
99
 
100
  Load episode metadata with Hugging Face Datasets:
 
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.
 
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
 
 
61
  ```text
62
  .
63
  ├── README.md
64
+ ├── assets/
65
+ │ └── dataset_mosaic.png
66
  ├── bvn/
67
  │ ├── annotations.json
68
  │ ├── data.jsonl
 
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
 
 
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: