harrim-nv commited on
Commit
c2d089e
·
verified ·
1 Parent(s): b887e19

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +191 -0
README.md ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Bridge LeRobot v3
3
+ library_name: lerobot
4
+ tags:
5
+ - robotics
6
+ - robot-learning
7
+ - vision-language-action
8
+ - bridgedata
9
+ - bridge
10
+ - lerobot
11
+ - LeRobotDataset-v3
12
+ license: openmdw-1.0
13
+ ---
14
+
15
+ # Bridge LeRobot v3
16
+
17
+ ## Dataset Summary
18
+
19
+ `nvidia/bridge_lerobot_v3` is a LeRobotDataset v3.0 conversion of the BridgeDataset / BridgeData V2 robot manipulation dataset. BridgeData V2 is a large-scale real-world robotics dataset collected to support scalable robot learning, including imitation learning, offline reinforcement learning, and open-vocabulary multi-task policies conditioned on goal images or natural-language instructions.
20
+
21
+ This repository packages Bridge trajectories in the LeRobot v3 layout with Parquet state/action data, MP4 video observations, and structured LeRobot metadata. The converted repository's `meta/info.json` reports 50,415 episodes, 1,801,090 frames, 22,199 task IDs, and a 5 Hz sampling rate.
22
+
23
+ ## Dataset Details
24
+
25
+ ### Dataset Description
26
+
27
+ BridgeData V2 contains robot manipulation behaviors collected across varied tabletop and toy-kitchen environments. The upstream dataset was designed to study generalization across tasks, objects, environments, institutions, and conditioning modes such as language instructions and goal images.
28
+
29
+ This LeRobot v3 conversion preserves the dataset for workflows that use the LeRobot data loader and Hugging Face Hub-native robotics dataset conventions. The conversion changes the storage layout: frame-level tabular data is stored in Apache Parquet shards, visual observations are stored as MP4 videos, and metadata records the schema, feature statistics, task IDs, episode boundaries, and path templates.
30
+
31
+ ### Dataset Sources
32
+
33
+ - Repository: https://huggingface.co/datasets/nvidia/bridge_lerobot_v3
34
+ - BridgeData V2 project page: https://rail-berkeley.github.io/bridgedata/
35
+ - BridgeData V2 paper: https://arxiv.org/abs/2308.12952
36
+ - LeRobotDataset v3.0 documentation: https://huggingface.co/docs/lerobot/lerobot-dataset-v3
37
+
38
+ ## Uses
39
+
40
+ ### Direct Use
41
+
42
+ This dataset is intended for research and development in:
43
+
44
+ - robot imitation learning
45
+ - offline reinforcement learning
46
+ - vision-language-action model training
47
+ - goal-conditioned and language-conditioned robot policy learning
48
+ - multi-camera visuomotor policy learning
49
+ - evaluation of LeRobot-compatible training, streaming, and data-loading workflows
50
+
51
+ ### Out-of-Scope Use
52
+
53
+ This dataset is not intended to be used as the sole validation source for safety-critical robot deployment. Policies trained on this data should be evaluated in the target environment, with appropriate robot safety controls, before any physical deployment.
54
+
55
+ ## Dataset Structure
56
+
57
+ The repository follows the LeRobotDataset v3.0 layout:
58
+
59
+ ```text
60
+ .
61
+ +-- data/
62
+ | `-- chunk-000/
63
+ | `-- file-*.parquet
64
+ +-- meta/
65
+ | +-- info.json
66
+ | +-- stats.json
67
+ | +-- tasks.parquet
68
+ | `-- episodes/
69
+ | `-- chunk-000/
70
+ | `-- file-*.parquet
71
+ `-- videos/
72
+ `-- observation.images.<camera_key>/
73
+ `-- chunk-000/
74
+ `-- file-*.mp4
75
+ ```
76
+
77
+ ### Repository Metadata
78
+
79
+ The following values are taken from the repository's `meta/info.json`.
80
+
81
+ | Field | Value |
82
+ |---|---:|
83
+ | LeRobot codebase version | `v3.0` |
84
+ | Episodes | 50,415 |
85
+ | Frames | 1,801,090 |
86
+ | Task IDs | 22,199 |
87
+ | Split | `train: 0:50415` |
88
+ | FPS | 5 |
89
+ | Average episode length | 35.7 frames, about 7.1 seconds |
90
+ | Robot type in metadata | `null` |
91
+
92
+ The upstream BridgeData V2 project describes the source data as collected on a WidowX 250 6DOF robot arm at 5 Hz. The converted repository does not populate `robot_type` in `meta/info.json`.
93
+
94
+ ### Features
95
+
96
+ The following feature schema is declared in `meta/info.json`.
97
+
98
+ | Feature | Type | Shape / Details |
99
+ |---|---|---|
100
+ | `observation.images.image_0` | video | RGB, 480 x 640, AV1 MP4, 5 FPS, no audio |
101
+ | `observation.images.image_1` | video | RGB, 480 x 640, AV1 MP4, 5 FPS, no audio |
102
+ | `observation.images.image_2` | video | RGB, 480 x 640, AV1 MP4, 5 FPS, no audio |
103
+ | `observation.images.image_3` | video | RGB, 480 x 640, AV1 MP4, 5 FPS, no audio |
104
+ | `observation.state` | `float32` | 7-dimensional robot state |
105
+ | `action` | `float32` | 7-dimensional robot action |
106
+ | `timestamp` | `float32` | Frame timestamp |
107
+ | `frame_index` | `int64` | Frame index within episode |
108
+ | `episode_index` | `int64` | Episode index |
109
+ | `task_index` | `int64` | Task ID |
110
+ | `index` | `int64` | Global frame index |
111
+
112
+ ### File Format
113
+
114
+ - Frame-level state/action data: Apache Parquet under `data/`.
115
+ - Episode metadata: chunked Parquet under `meta/episodes/`.
116
+ - Task metadata: `meta/tasks.parquet`.
117
+ - Dataset schema and statistics: `meta/info.json` and `meta/stats.json`.
118
+ - Video observations: AV1-encoded MP4 files under `videos/`.
119
+
120
+ ## Loading
121
+
122
+ Authenticate with Hugging Face if required, then download or stream the dataset using LeRobot-compatible tooling.
123
+
124
+ ```python
125
+ from huggingface_hub import snapshot_download
126
+
127
+ repo_dir = snapshot_download(
128
+ repo_id="nvidia/bridge_lerobot_v3",
129
+ repo_type="dataset",
130
+ token=True,
131
+ )
132
+
133
+ print(repo_dir)
134
+ ```
135
+
136
+ Example LeRobot usage:
137
+
138
+ ```python
139
+ from lerobot.datasets.lerobot_dataset import LeRobotDataset
140
+
141
+ dataset = LeRobotDataset("nvidia/bridge_lerobot_v3")
142
+ print(dataset.num_episodes)
143
+ print(dataset.meta.info["features"].keys())
144
+ ```
145
+
146
+ ## Dataset Creation
147
+
148
+ ### Source Data
149
+
150
+ The source dataset is BridgeData V2, a real-world robot manipulation dataset with diverse tasks, objects, camera poses, and environments. The BridgeData V2 project page reports 60,096 trajectories across 24 environments and 13 skills, including teleoperated demonstrations and scripted pick-and-place rollouts.
151
+
152
+ This converted repository reports 50,415 episodes in `meta/info.json`; users should treat the repository metadata as authoritative for this LeRobot package and consult upstream BridgeData V2 documentation for the full source dataset description.
153
+
154
+ ### Conversion
155
+
156
+ This repository converts Bridge data into LeRobotDataset v3.0. In v3, multiple episodes can be concatenated into larger Parquet and MP4 shard files, while metadata is used to recover per-episode boundaries and feature statistics. This layout reduces file-system pressure and supports Hub-native loading and streaming workflows.
157
+
158
+ ## Bias, Risks, and Limitations
159
+
160
+ - The dataset reflects the embodiment, control frequency, camera setup, task distribution, and environments of the source BridgeData V2 collection.
161
+ - The upstream data is concentrated around tabletop and toy-kitchen manipulation tasks; policies trained only on this dataset may not generalize to other robots, objects, lighting, homes, labs, or industrial settings.
162
+ - Natural-language task annotations are inherited from the source/conversion pipeline and should be inspected before task-specific filtering or evaluation.
163
+ - The repository metadata reports a converted package with fewer episodes than the full upstream BridgeData V2 trajectory count.
164
+ - This dataset should not be used as the sole basis for validating safe real-world robot behavior.
165
+
166
+ ## Personal and Sensitive Information
167
+
168
+ BridgeData V2 is robot manipulation data collected in controlled robotics environments. It is not intended to contain personal or sensitive information. Because the source uses real camera imagery, users should still inspect samples for their own release, redistribution, or downstream demo requirements.
169
+
170
+ ## Citation
171
+
172
+ If you use this dataset, please cite the original BridgeData V2 paper:
173
+
174
+ ```bibtex
175
+ @inproceedings{walke2023bridgedata,
176
+ title={BridgeData V2: A Dataset for Robot Learning at Scale},
177
+ author={Walke, Homer and Black, Kevin and Lee, Abraham and Kim, Moo Jin and Du, Max and Zheng, Chongyi and Zhao, Tony and Hansen-Estruch, Philippe and Vuong, Quan and He, Andre and Myers, Vivek and Fang, Kuan and Finn, Chelsea and Levine, Sergey},
178
+ booktitle={Conference on Robot Learning (CoRL)},
179
+ year={2023}
180
+ }
181
+ ```
182
+
183
+ Please also cite or reference LeRobot if you use LeRobot tooling, dataset loaders, or streaming interfaces.
184
+
185
+ ## References
186
+
187
+ - BridgeData V2 project page: https://rail-berkeley.github.io/bridgedata/
188
+ - BridgeData V2 arXiv paper: https://arxiv.org/abs/2308.12952
189
+ - BridgeData V2 Hugging Face paper page: https://huggingface.co/papers/2308.12952
190
+ - LeRobotDataset v3.0 blog: https://huggingface.co/blog/lerobot-datasets-v3
191
+ - LeRobotDataset v3.0 documentation: https://huggingface.co/docs/lerobot/lerobot-dataset-v3