andreaskoepf commited on
Commit
06b0fd4
·
verified ·
1 Parent(s): 3b75d2f

Upload RoboTwin stack_blocks_three 1000 episodes (RGB fixed): README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - RoboTwin
8
+ - bimanual
9
+ - simulation
10
+ configs:
11
+ - config_name: default
12
+ data_files: data/*/*.parquet
13
+ ---
14
+
15
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
16
+
17
+ <a href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=andreaskoepf/robotwin_dk1_realcam_stack_blocks_three_1000">
18
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
19
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
20
+ </a>
21
+
22
+ ## Dataset Description
23
+
24
+ Bimanual manipulation demonstrations for the **Stack Blocks Three** task, generated in the [RoboTwin](https://github.com/TianxingChen/RoboTwin) simulator with domain randomization.
25
+
26
+ - **Robot:** TRLC DK1 bimanual (`bi_dk1_follower`) - 2x 6-DOF arms with parallel grippers
27
+ - **Task:** Stack Blocks Three
28
+ - **Episodes:** 1000
29
+ - **Total frames:** 323,557 (317.2 min @ 17 fps)
30
+ - **Avg episode length:** 19.0s
31
+
32
+ ### Cameras
33
+
34
+ | Camera | Resolution | Codec | FPS |
35
+ |---|---|---|---|
36
+ | `observation.images.head` | 640x360 | h264 | 17 |
37
+ | `observation.images.left_wrist` | 640x360 | h264 | 17 |
38
+ | `observation.images.right_wrist` | 640x360 | h264 | 17 |
39
+
40
+ ### Action & State Space
41
+
42
+ - **`action`**: float32[14] - joint position targets (6 joints + 1 gripper per arm)
43
+ - **`observation.state`**: float32[14] - current joint positions + gripper state
44
+
45
+ ### Task Descriptions
46
+
47
+ - "Use the right arm, the left arm, and the left arm to move red block, green block, and blue block to the center, then stack blue block on green block and green block on red block."
48
+ - "Bring red block, green block, and blue block to the table's center and arrange them by stacking blue block over green block and green block over red block."
49
+ - "Centralize red block, green block, and blue block before stacking blue block on green block and green block on red block."
50
+ - "Use the right arm, the left arm, and the right arm to move red block, green block, and blue block to the center and stack them."
51
+ - "Relocate red block, green block, and blue block to the table's center, stacking blue block over green block and green block over red block."
52
+
53
+ ## Loading the Dataset
54
+
55
+ ```python
56
+ from lerobot.datasets.lerobot_dataset import LeRobotDataset
57
+
58
+ dataset = LeRobotDataset("andreaskoepf/robotwin_dk1_realcam_stack_blocks_three_1000")
59
+ frame = dataset[0]
60
+ print(frame["observation.state"].shape) # torch.Size([14])
61
+ print(frame["action"].shape) # torch.Size([14])
62
+ ```
63
+
64
+ ## Citation
65
+
66
+ ```bibtex
67
+ @misc{robotwin2025,
68
+ title = {RoboTwin: Dual-Arm Robot Benchmark with Generative Digital Twins},
69
+ author = {Chen, Yao Mu et al.},
70
+ year = {2025},
71
+ url = {https://github.com/TianxingChen/RoboTwin}
72
+ }
73
+ ```