Improve dataset card: add metadata, links and documentation

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +69 -26
README.md CHANGED
@@ -1,26 +1,69 @@
1
- ---
2
- license: apache-2.0
3
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: train
7
- path: data/train-*
8
- dataset_info:
9
- features:
10
- - name: camera_images
11
- list: image
12
- - name: depth_images
13
- list: image
14
- - name: normal_images
15
- list: image
16
- - name: frame_id
17
- dtype: int32
18
- - name: scene_id
19
- dtype: string
20
- splits:
21
- - name: train
22
- num_bytes: 3671744232.849
23
- num_examples: 1473
24
- download_size: 3336228908
25
- dataset_size: 3671744232.849
26
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ configs:
6
+ - config_name: default
7
+ data_files:
8
+ - split: train
9
+ path: data/train-*
10
+ dataset_info:
11
+ features:
12
+ - name: camera_images
13
+ list: image
14
+ - name: depth_images
15
+ list: image
16
+ - name: normal_images
17
+ list: image
18
+ - name: frame_id
19
+ dtype: int32
20
+ - name: scene_id
21
+ dtype: string
22
+ splits:
23
+ - name: train
24
+ num_bytes: 3671744232.849
25
+ num_examples: 1473
26
+ download_size: 3336228908
27
+ dataset_size: 3671744232.849
28
+ ---
29
+
30
+ # RoboTransfer-RealData
31
+
32
+ [**Project Page**](https://horizonrobotics.github.io/robot_lab/robotransfer) | [**Paper**](https://huggingface.co/papers/2505.23171) | [**GitHub**](https://github.com/HorizonRobotics/RoboTransfer)
33
+
34
+ RoboTransfer-RealData is a real-world robotic manipulation dataset collected using the ALOHA-AgileX robot system. It was introduced as part of the paper **"RoboTransfer: Controllable Geometry-Consistent Video Diffusion for Manipulation Policy Transfer"**.
35
+
36
+ The dataset contains real-world trajectories used to evaluate policy transfer from synthetic data generated by RoboTransfer, a diffusion-based framework designed for geometry-consistent robotic data synthesis.
37
+
38
+ ## Dataset Description
39
+
40
+ The dataset includes multi-modal visual data for robotic tasks:
41
+ - `camera_images`: RGB frames captured from the robot's camera system.
42
+ - `depth_images`: Corresponding depth maps for geometric conditioning.
43
+ - `normal_images`: Estimated surface normal maps.
44
+ - `frame_id`: The sequential index of the frame.
45
+ - `scene_id`: Identifier for specific recorded scenes.
46
+
47
+ ## Usage
48
+
49
+ As specified in the [RoboTransfer GitHub repository](https://github.com/HorizonRobotics/RoboTransfer), you can process raw RGB images from this dataset into the RoboTransfer format with geometric conditioning using the following script:
50
+
51
+ ```bash
52
+ script/process_real.sh
53
+ ```
54
+
55
+ ## Citation
56
+
57
+ If you use this dataset or the RoboTransfer framework in your research, please cite:
58
+
59
+ ```bibtex
60
+ @misc{liu2025robotransfergeometryconsistentvideodiffusion,
61
+ title={RoboTransfer: Geometry-Consistent Video Diffusion for Robotic Visual Policy Transfer},
62
+ author={Liu Liu and Xiaofeng Wang and Guosheng Zhao and Keyu Li and Wenkang Qin and Jiaxiong Qiu and Zheng Zhu and Guan Huang and Zhizhong Su},
63
+ year={2025},
64
+ eprint={2505.23171},
65
+ archivePrefix={arXiv},
66
+ primaryClass={cs.CV},
67
+ url={https://arxiv.org/abs/2505.23171},
68
+ }
69
+ ```