Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,7 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# BridgeData V2 Image Triplets Dataset
|
| 2 |
|
| 3 |
This dataset contains image triplets from BridgeData V2 trajectories in ImageFolder format.
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
## Dataset Structure
|
| 6 |
|
| 7 |
- **initial_images/**: Contains first frame images (initial state)
|
|
@@ -42,4 +55,17 @@ final_image = example["frame_43_image_file_name"] # PIL Image - frame 43 (in fi
|
|
| 42 |
metadata = {k: v for k, v in example.items() if not k.endswith("_file_name") and k != "intermediate_image_file_name"}
|
| 43 |
```
|
| 44 |
|
| 45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-to-image
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
size_categories:
|
| 8 |
+
- 1K<n<10K
|
| 9 |
+
---
|
| 10 |
# BridgeData V2 Image Triplets Dataset
|
| 11 |
|
| 12 |
This dataset contains image triplets from BridgeData V2 trajectories in ImageFolder format.
|
| 13 |
|
| 14 |
+
## Derived From
|
| 15 |
+
|
| 16 |
+
This dataset is a derivative of the 30 GB scripted subset of [BridgeData V2 from RAIL-Berkeley](https://rail-berkeley.github.io/bridgedata/). All rights and original licensing apply.
|
| 17 |
+
|
| 18 |
## Dataset Structure
|
| 19 |
|
| 20 |
- **initial_images/**: Contains first frame images (initial state)
|
|
|
|
| 55 |
metadata = {k: v for k, v in example.items() if not k.endswith("_file_name") and k != "intermediate_image_file_name"}
|
| 56 |
```
|
| 57 |
|
| 58 |
+
## Citation
|
| 59 |
+
|
| 60 |
+
If you use this dataset, please cite the original BridgeData V2 paper:
|
| 61 |
+
|
| 62 |
+
```bibtex
|
| 63 |
+
@inproceedings{walke2023bridgedata,
|
| 64 |
+
title={BridgeData V2: A Dataset for Robot Learning at Scale},
|
| 65 |
+
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},
|
| 66 |
+
booktitle={Conference on Robot Learning (CoRL)},
|
| 67 |
+
year={2023}
|
| 68 |
+
}
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
Generated on: 2025-09-07
|