wanggxii commited on
Commit
cfe6eb9
·
verified ·
1 Parent(s): 04f86a8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +152 -0
README.md CHANGED
@@ -1,3 +1,155 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - robotics
7
+ - manipulation
8
+ - cobot-magic
9
+ - dual-arm
10
+ - lerobot
11
+ - atombench
12
+ pretty_name: AtomBench CobotMagic
13
+ size_categories:
14
+ - 1K<n<10K
15
  ---
16
+
17
+ # AtomBench CobotMagic Dataset
18
+
19
+ A dual-arm robot manipulation dataset collected on a **Cobot Magic** robot platform, designed for evaluating robotic learning policies. The dataset contains 15 tasks (8 manipulation tasks + 7 instruction-following tasks), each with 100 expert demonstration episodes.
20
+
21
+ ## Dataset Summary
22
+
23
+ | Item | Value |
24
+ |------|-------|
25
+ | Robot | Cobot Magic (Dual-arm) |
26
+ | Total Tasks | 15 |
27
+ | Episodes per Task | 100 |
28
+ | Total Episodes | 1,500 |
29
+ | FPS | 30 |
30
+ | Camera Views | 3 (top, left, right) |
31
+ | Video Resolution | 640×480 |
32
+ | Video Codec | H.264 (libx264) |
33
+ | Data Format | LeRobot v2.1 |
34
+
35
+ ## Tasks
36
+
37
+ ### Manipulation Tasks (dm1–dm8)
38
+
39
+ | ID | Task Prompt |
40
+ |----|-------------|
41
+ | dm1 | Pick up the basket with the left hand and place the cube into the basket with the right hand. |
42
+ | dm2 | Pick up the basket with the left hand and place the ball into the basket with the right hand. |
43
+ | dm3 | Place the bottles upright on the tray. |
44
+ | dm4 | Push the two cubes into the marked area. |
45
+ | dm5 | Pick up the bowl with the left hand and pour the coffee beans from the cup into the bowl with the right hand. |
46
+ | dm6 | Open the drawer with the left hand, place the block into the drawer with the right hand, then close the drawer with the left hand. |
47
+ | dm7 | Pick up one cube with the left hand and another cube with the right hand. First place the cube in the right hand at the target position, then stack the cube in the left hand on top. |
48
+ | dm8 | Open the box lid with the left hand, place the block into the box with the right hand, then close the box lid with the left hand. |
49
+
50
+ ### Instruction-Following Tasks (di1–di7)
51
+
52
+ | ID | Task Prompt |
53
+ |----|-------------|
54
+ | di1 | Pick up the basket with the left hand and place the blue cube into the basket with the right hand. |
55
+ | di2 | Pick up the basket with the left hand and place the triangular block into the basket with the right hand. |
56
+ | di3 | Pick up the basket with the left hand and place the largest block into the basket with the right hand. |
57
+ | di4 | Pick up the basket with the left hand and place the object to the left of the red cylinder into the basket with the right hand. |
58
+ | di5 | Pick up one cube with each hand and place exactly two cubes into the same basket, leaving the remaining cube outside. |
59
+ | di6 | Pick up one cube with the left hand and place it into the upper basket. Pick up one cube with the right hand and place it into the lower basket. |
60
+ | di7 | Place all geometric objects except the red cube into the basket. |
61
+
62
+ ## Dataset Structure
63
+
64
+ ```
65
+ agilex/
66
+ ├── README.md
67
+ ├── {task_name}/
68
+ │ ├── meta/
69
+ │ │ ├── info.json # Dataset metadata
70
+ │ │ ├── episodes.jsonl # Episode metadata
71
+ │ │ └── tasks.jsonl # Task descriptions
72
+ │ ├── data/
73
+ │ │ └── chunk-000/
74
+ │ │ ├── episode_000000.parquet
75
+ │ │ ├── episode_000001.parquet
76
+ │ │ └── ...
77
+ │ └── videos/
78
+ │ └── chunk-000/
79
+ │ ├── image_top/
80
+ │ │ ├── episode_000000.mp4
81
+ │ │ └── ...
82
+ │ ├── image_left/
83
+ │ │ ├── episode_000000.mp4
84
+ │ │ └── ...
85
+ │ └── image_right/
86
+ │ ├── episode_000000.mp4
87
+ │ └── ...
88
+ └── ...
89
+ ```
90
+
91
+ ## Features
92
+
93
+ Each episode frame contains:
94
+
95
+ | Feature | Type | Shape | Description |
96
+ |---------|------|-------|-------------|
97
+ | `action` | float32 | (14,) | Leader joint positions (right arm + left arm) |
98
+ | `observation.state` | float32 | (26,) | Follower joint positions + end-effector poses (both arms) |
99
+ | `observation.images.image_top` | video | (480, 640, 3) | Top camera view |
100
+ | `observation.images.image_left` | video | (480, 640, 3) | Left camera view |
101
+ | `observation.images.image_right` | video | (480, 640, 3) | Right camera view |
102
+ | `timestamp` | float32 | (1,) | Frame timestamp |
103
+ | `frame_index` | int64 | (1,) | Frame index within episode |
104
+ | `episode_index` | int64 | (1,) | Episode index |
105
+ | `index` | int64 | (1,) | Global frame index |
106
+ | `task_index` | int64 | (1,) | Task index |
107
+
108
+ ### Action Space (14-dim)
109
+
110
+ | Dim | Name |
111
+ |-----|------|
112
+ | 0–5 | Right arm joint positions (6 DoF) |
113
+ | 6 | Right gripper position |
114
+ | 7–12 | Left arm joint positions (6 DoF) |
115
+ | 13 | Left gripper position |
116
+
117
+ ### Observation State Space (26-dim)
118
+
119
+ | Dim | Name |
120
+ |-----|------|
121
+ | 0–5 | Right arm joint positions (6 DoF) |
122
+ | 6 | Right gripper position |
123
+ | 7–12 | Right end-effector pose (x, y, z, rx, ry, rz) |
124
+ | 13–18 | Left arm joint positions (6 DoF) |
125
+ | 19 | Left gripper position |
126
+ | 20–25 | Left end-effector pose (x, y, z, rx, ry, rz) |
127
+
128
+ ## Usage
129
+
130
+ ```python
131
+ from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
132
+
133
+ dataset = LeRobotDataset(
134
+ repo_id="AtomBench/CobotMagic",
135
+ root="path/to/local/cobotmagic",
136
+ )
137
+ ```
138
+
139
+ ## Citation
140
+
141
+ If you use this dataset in your research, please cite:
142
+
143
+ ```bibtex
144
+ @misc{atombench,
145
+ author = {AtomBench Team},
146
+ title = {AtomBench CobotMagic: A Dual-Arm Robot Manipulation Dataset},
147
+ year = {2026},
148
+ publisher = {Hugging Face},
149
+ howpublished = {\url{https://huggingface.co/AtomBench}}
150
+ }
151
+ ```
152
+
153
+ ## License
154
+
155
+ This dataset is released under the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0).