Add task_instruction.json files + dataset card
Browse files- README.md +99 -0
- hide_blocks_with_bowl/task_instruction.json +35 -0
- hide_blocks_with_cup/task_instruction.json +36 -0
- put_blocks_down/task_instruction.json +36 -0
- put_blocks_in_plate/task_instruction.json +36 -0
- put_blocks_on_cup/task_instruction.json +35 -0
- remove_blocks_from_plate/task_instruction.json +36 -0
- remove_blocks_under_bowl/task_instruction.json +34 -0
README.md
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
tags:
|
| 6 |
+
- real-robot
|
| 7 |
+
- manipulation
|
| 8 |
+
- ur5e
|
| 9 |
+
- imitation-learning
|
| 10 |
+
size_categories:
|
| 11 |
+
- 100K<n<1M
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Real Robot Manipulation Dataset
|
| 15 |
+
|
| 16 |
+
7 tabletop manipulation tasks recorded on a **UR5e** with a **Robotiq 2F-140**
|
| 17 |
+
gripper and two **Intel RealSense** cameras (one fixed base, one wrist-mounted).
|
| 18 |
+
**100 episodes per task**, **700 episodes total**, recorded at **20 Hz**.
|
| 19 |
+
|
| 20 |
+
## Tasks
|
| 21 |
+
|
| 22 |
+
| Folder | Instruction |
|
| 23 |
+
|---|---|
|
| 24 |
+
| `put_blocks_in_plate` | Pick two blocks from the table and place them on the plate. |
|
| 25 |
+
| `remove_blocks_from_plate` | Pick two blocks off the plate and place them on the table. |
|
| 26 |
+
| `hide_blocks_with_bowl` | Pair the two blocks together and cover them with the bowl. |
|
| 27 |
+
| `remove_blocks_under_bowl` | Uncover the hidden blocks and spread the three objects out. |
|
| 28 |
+
| `hide_blocks_with_cup` | Cover each block with an upside-down cup. |
|
| 29 |
+
| `put_blocks_on_cup` | Lift each cup off a block and stack the block on top of the cup. |
|
| 30 |
+
| `put_blocks_down` | Take the blocks off the cups and place them on the table. |
|
| 31 |
+
|
| 32 |
+
Each task folder includes a `task_instruction.json` with the full task spec
|
| 33 |
+
(objects, pick/place strategies, gripper modes, workspace bounds).
|
| 34 |
+
|
| 35 |
+
## Layout
|
| 36 |
+
|
| 37 |
+
```
|
| 38 |
+
<task>/
|
| 39 |
+
1.hdf5 ... 100.hdf5 # per-episode trajectories (images + state)
|
| 40 |
+
meta/
|
| 41 |
+
1/meta.json ... 100/meta.json # per-episode ground truth
|
| 42 |
+
task_instruction.json # task spec
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
## HDF5 schema (per episode)
|
| 46 |
+
|
| 47 |
+
```
|
| 48 |
+
/timestamps (T,) float64
|
| 49 |
+
/observations/
|
| 50 |
+
images/
|
| 51 |
+
camera1 (T,H,W,3) uint8 # base, 640x480 RGB
|
| 52 |
+
camera2 (T,H,W,3) uint8 # wrist, 640x480 RGB
|
| 53 |
+
qpos (T,7) float32 # 6 joints + gripper (norm)
|
| 54 |
+
state (T,14) float32 # tcp_pos(3)+tcp_quat(4)+joints(6)+gripper(1)
|
| 55 |
+
tcp_pos, tcp_quat, joints, gripper_pos
|
| 56 |
+
```
|
| 57 |
+
|
| 58 |
+
## meta.json schema (per episode)
|
| 59 |
+
|
| 60 |
+
For all tasks the meta contains the per-episode ground-truth object positions:
|
| 61 |
+
|
| 62 |
+
```json
|
| 63 |
+
{
|
| 64 |
+
"task": "<task name>",
|
| 65 |
+
"episode": <int>,
|
| 66 |
+
"start": {<objects>: <(x,y)>, ...},
|
| 67 |
+
"end": {<objects>: <(x,y)>, ...},
|
| 68 |
+
"init_pose": [x, y, z]
|
| 69 |
+
}
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
Task-specific keys are additionally recorded (e.g. `perm` and `cup_order` for
|
| 73 |
+
the cup tasks, `sign` and `active`/`passive` for the bowl hide task,
|
| 74 |
+
`block_order` for the bowl/cup remove tasks).
|
| 75 |
+
|
| 76 |
+
## Robot setup
|
| 77 |
+
|
| 78 |
+
- **Robot**: UR5e via RTDE
|
| 79 |
+
- **Gripper**: Robotiq 2F-140 (auto-calibrated)
|
| 80 |
+
- **TCP orientation**: pointing straight down (axis-angle `[π, 0, 0]`)
|
| 81 |
+
- **Cameras**: 2× Intel RealSense, 640×480 @ 20 Hz
|
| 82 |
+
- **Workspace**: trapezoid with `y ∈ [0.50, 0.80]` and `x` half-width
|
| 83 |
+
`0.10 → 0.18` (linearly with y)
|
| 84 |
+
|
| 85 |
+
## Per-task episode counts
|
| 86 |
+
|
| 87 |
+
| Task | Episodes | Frames (~) | Wall-clock (~) |
|
| 88 |
+
|---|---|---|---|
|
| 89 |
+
| put_blocks_in_plate | 100 | 45,576 | 38 min |
|
| 90 |
+
| remove_blocks_from_plate | 100 | 45,929 | 38 min |
|
| 91 |
+
| hide_blocks_with_bowl | 100 | 43,881 | 37 min |
|
| 92 |
+
| remove_blocks_under_bowl | 100 | 66,090 | 55 min |
|
| 93 |
+
| hide_blocks_with_cup | 100 | (~varies) | ~40 min |
|
| 94 |
+
| put_blocks_on_cup | 100 | (~varies) | ~50 min |
|
| 95 |
+
| put_blocks_down | 100 | (~varies) | ~30 min |
|
| 96 |
+
|
| 97 |
+
## License
|
| 98 |
+
|
| 99 |
+
Apache 2.0.
|
hide_blocks_with_bowl/task_instruction.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"robot": "UR5e + Robotiq 2F-140 gripper",
|
| 3 |
+
"cameras": {
|
| 4 |
+
"camera1": "fixed base RealSense (table-facing)",
|
| 5 |
+
"camera2": "wrist-mounted RealSense"
|
| 6 |
+
},
|
| 7 |
+
"camera_resolution": [
|
| 8 |
+
640,
|
| 9 |
+
480
|
| 10 |
+
],
|
| 11 |
+
"control_hz": 20,
|
| 12 |
+
"tcp_orientation_axis_angle": [
|
| 13 |
+
3.14159,
|
| 14 |
+
0.0,
|
| 15 |
+
0.0
|
| 16 |
+
],
|
| 17 |
+
"workspace_trapezoid": {
|
| 18 |
+
"y_range": [
|
| 19 |
+
0.5,
|
| 20 |
+
0.8
|
| 21 |
+
],
|
| 22 |
+
"x_halfwidth_at_y_min": 0.1,
|
| 23 |
+
"x_halfwidth_at_y_max": 0.18
|
| 24 |
+
},
|
| 25 |
+
"episodes": 100,
|
| 26 |
+
"task": "hide_blocks_with_bowl",
|
| 27 |
+
"instruction": "Pair the two blocks together and cover them with the bowl.",
|
| 28 |
+
"description": "Two blocks and one bowl (upside down, rim on table) start at random well-separated positions. The robot picks one of the two blocks (random choice each episode) and places it 5.5 cm next to the other block along the y axis (direction chosen so the placement stays in the trapezoid and clear of the bowl). Then picks the bowl and places it over the midpoint of the pair so the rim contacts the table around both blocks, hiding them.",
|
| 29 |
+
"objects": [
|
| 30 |
+
"block_a",
|
| 31 |
+
"block_b",
|
| 32 |
+
"bowl (R=5.5cm, upside down)"
|
| 33 |
+
],
|
| 34 |
+
"gripper_modes": "block-pick narrows to 50% open; bowl-pick fully open"
|
| 35 |
+
}
|
hide_blocks_with_cup/task_instruction.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"robot": "UR5e + Robotiq 2F-140 gripper",
|
| 3 |
+
"cameras": {
|
| 4 |
+
"camera1": "fixed base RealSense (table-facing)",
|
| 5 |
+
"camera2": "wrist-mounted RealSense"
|
| 6 |
+
},
|
| 7 |
+
"camera_resolution": [
|
| 8 |
+
640,
|
| 9 |
+
480
|
| 10 |
+
],
|
| 11 |
+
"control_hz": 20,
|
| 12 |
+
"tcp_orientation_axis_angle": [
|
| 13 |
+
3.14159,
|
| 14 |
+
0.0,
|
| 15 |
+
0.0
|
| 16 |
+
],
|
| 17 |
+
"workspace_trapezoid": {
|
| 18 |
+
"y_range": [
|
| 19 |
+
0.5,
|
| 20 |
+
0.8
|
| 21 |
+
],
|
| 22 |
+
"x_halfwidth_at_y_min": 0.1,
|
| 23 |
+
"x_halfwidth_at_y_max": 0.18
|
| 24 |
+
},
|
| 25 |
+
"episodes": 100,
|
| 26 |
+
"task": "hide_blocks_with_cup",
|
| 27 |
+
"instruction": "Cover each block with an upside-down cup.",
|
| 28 |
+
"description": "Two cups (upside down, rim on table) and two blocks start at random well-separated positions (>= 18 cm cup-cup, >= 15 cm cup-block, >= 18 cm block-block). The robot picks each cup in random order and places it on top of a block (random pairing per episode, encoded in meta as `perm`). Cup rim contacts the table around the block, enveloping it.",
|
| 29 |
+
"objects": [
|
| 30 |
+
"cup_0 (R=8cm, h=8.5cm)",
|
| 31 |
+
"cup_1",
|
| 32 |
+
"block_0",
|
| 33 |
+
"block_1"
|
| 34 |
+
],
|
| 35 |
+
"gripper_modes": "block-pick narrows to 50% open; cup-pick fully open"
|
| 36 |
+
}
|
put_blocks_down/task_instruction.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"robot": "UR5e + Robotiq 2F-140 gripper",
|
| 3 |
+
"cameras": {
|
| 4 |
+
"camera1": "fixed base RealSense (table-facing)",
|
| 5 |
+
"camera2": "wrist-mounted RealSense"
|
| 6 |
+
},
|
| 7 |
+
"camera_resolution": [
|
| 8 |
+
640,
|
| 9 |
+
480
|
| 10 |
+
],
|
| 11 |
+
"control_hz": 20,
|
| 12 |
+
"tcp_orientation_axis_angle": [
|
| 13 |
+
3.14159,
|
| 14 |
+
0.0,
|
| 15 |
+
0.0
|
| 16 |
+
],
|
| 17 |
+
"workspace_trapezoid": {
|
| 18 |
+
"y_range": [
|
| 19 |
+
0.5,
|
| 20 |
+
0.8
|
| 21 |
+
],
|
| 22 |
+
"x_halfwidth_at_y_min": 0.1,
|
| 23 |
+
"x_halfwidth_at_y_max": 0.18
|
| 24 |
+
},
|
| 25 |
+
"episodes": 100,
|
| 26 |
+
"task": "put_blocks_down",
|
| 27 |
+
"instruction": "Take the blocks off the cups and place them on the table.",
|
| 28 |
+
"description": "Start state: two stacks of block-on-cup (cups upside down, blocks on top). For each block in random order: pick it from on top of its cup (pick z is 0.215 m = pick_z_table + cup_height), place it at a new random position on the table. Cups stay where they are.",
|
| 29 |
+
"objects": [
|
| 30 |
+
"cup_0",
|
| 31 |
+
"cup_1",
|
| 32 |
+
"block_0",
|
| 33 |
+
"block_1"
|
| 34 |
+
],
|
| 35 |
+
"pick_z_for_block_on_cup": 0.215
|
| 36 |
+
}
|
put_blocks_in_plate/task_instruction.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"robot": "UR5e + Robotiq 2F-140 gripper",
|
| 3 |
+
"cameras": {
|
| 4 |
+
"camera1": "fixed base RealSense (table-facing)",
|
| 5 |
+
"camera2": "wrist-mounted RealSense"
|
| 6 |
+
},
|
| 7 |
+
"camera_resolution": [
|
| 8 |
+
640,
|
| 9 |
+
480
|
| 10 |
+
],
|
| 11 |
+
"control_hz": 20,
|
| 12 |
+
"tcp_orientation_axis_angle": [
|
| 13 |
+
3.14159,
|
| 14 |
+
0.0,
|
| 15 |
+
0.0
|
| 16 |
+
],
|
| 17 |
+
"workspace_trapezoid": {
|
| 18 |
+
"y_range": [
|
| 19 |
+
0.5,
|
| 20 |
+
0.8
|
| 21 |
+
],
|
| 22 |
+
"x_halfwidth_at_y_min": 0.1,
|
| 23 |
+
"x_halfwidth_at_y_max": 0.18
|
| 24 |
+
},
|
| 25 |
+
"episodes": 100,
|
| 26 |
+
"task": "put_blocks_in_plate",
|
| 27 |
+
"instruction": "Pick two blocks from the table and place them on the plate.",
|
| 28 |
+
"description": "Two blocks start at random positions on the table; a plate sits at a fixed pre-set position. The robot picks block A and places it on the plate at the front-of-plate position, then picks block B and places it at the back-of-plate position. Plate position is one of five preset locations (A, B, C, D, E) \u2014 20 episodes per location.",
|
| 29 |
+
"objects": [
|
| 30 |
+
"block_a",
|
| 31 |
+
"block_b",
|
| 32 |
+
"plate"
|
| 33 |
+
],
|
| 34 |
+
"pick_strategy": "moveL down to pick_z=0.130, grip-pos=200 (close on block)",
|
| 35 |
+
"place_strategy": "moveUntilContact (rim/block bottom hits surface)"
|
| 36 |
+
}
|
put_blocks_on_cup/task_instruction.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"robot": "UR5e + Robotiq 2F-140 gripper",
|
| 3 |
+
"cameras": {
|
| 4 |
+
"camera1": "fixed base RealSense (table-facing)",
|
| 5 |
+
"camera2": "wrist-mounted RealSense"
|
| 6 |
+
},
|
| 7 |
+
"camera_resolution": [
|
| 8 |
+
640,
|
| 9 |
+
480
|
| 10 |
+
],
|
| 11 |
+
"control_hz": 20,
|
| 12 |
+
"tcp_orientation_axis_angle": [
|
| 13 |
+
3.14159,
|
| 14 |
+
0.0,
|
| 15 |
+
0.0
|
| 16 |
+
],
|
| 17 |
+
"workspace_trapezoid": {
|
| 18 |
+
"y_range": [
|
| 19 |
+
0.5,
|
| 20 |
+
0.8
|
| 21 |
+
],
|
| 22 |
+
"x_halfwidth_at_y_min": 0.1,
|
| 23 |
+
"x_halfwidth_at_y_max": 0.18
|
| 24 |
+
},
|
| 25 |
+
"episodes": 100,
|
| 26 |
+
"task": "put_blocks_on_cup",
|
| 27 |
+
"instruction": "Lift each cup off a block and stack the block on top of the cup.",
|
| 28 |
+
"description": "Start state: two hidden stacks (cup over block, cup over block). For each pair (random order): lift the cup, place it at a new random table position, pick the now-exposed block, place it on top of the (upside-down) cup. End state: two stacks of block-on-cup.",
|
| 29 |
+
"objects": [
|
| 30 |
+
"cup_0",
|
| 31 |
+
"cup_1",
|
| 32 |
+
"block_0",
|
| 33 |
+
"block_1"
|
| 34 |
+
]
|
| 35 |
+
}
|
remove_blocks_from_plate/task_instruction.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"robot": "UR5e + Robotiq 2F-140 gripper",
|
| 3 |
+
"cameras": {
|
| 4 |
+
"camera1": "fixed base RealSense (table-facing)",
|
| 5 |
+
"camera2": "wrist-mounted RealSense"
|
| 6 |
+
},
|
| 7 |
+
"camera_resolution": [
|
| 8 |
+
640,
|
| 9 |
+
480
|
| 10 |
+
],
|
| 11 |
+
"control_hz": 20,
|
| 12 |
+
"tcp_orientation_axis_angle": [
|
| 13 |
+
3.14159,
|
| 14 |
+
0.0,
|
| 15 |
+
0.0
|
| 16 |
+
],
|
| 17 |
+
"workspace_trapezoid": {
|
| 18 |
+
"y_range": [
|
| 19 |
+
0.5,
|
| 20 |
+
0.8
|
| 21 |
+
],
|
| 22 |
+
"x_halfwidth_at_y_min": 0.1,
|
| 23 |
+
"x_halfwidth_at_y_max": 0.18
|
| 24 |
+
},
|
| 25 |
+
"episodes": 100,
|
| 26 |
+
"task": "remove_blocks_from_plate",
|
| 27 |
+
"instruction": "Pick two blocks off the plate and place them on the table.",
|
| 28 |
+
"description": "Two blocks start on a plate (front and back positions). The robot picks the front block off the plate and places it at a random position on the table, then picks the back block and places it at another random position. Same 5-position plate variation as put_blocks_in_plate.",
|
| 29 |
+
"objects": [
|
| 30 |
+
"block_a",
|
| 31 |
+
"block_b",
|
| 32 |
+
"plate"
|
| 33 |
+
],
|
| 34 |
+
"pick_strategy": "moveL down to pick_z=0.130, grip-pos=200 (close on block)",
|
| 35 |
+
"place_strategy": "moveUntilContact"
|
| 36 |
+
}
|
remove_blocks_under_bowl/task_instruction.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"robot": "UR5e + Robotiq 2F-140 gripper",
|
| 3 |
+
"cameras": {
|
| 4 |
+
"camera1": "fixed base RealSense (table-facing)",
|
| 5 |
+
"camera2": "wrist-mounted RealSense"
|
| 6 |
+
},
|
| 7 |
+
"camera_resolution": [
|
| 8 |
+
640,
|
| 9 |
+
480
|
| 10 |
+
],
|
| 11 |
+
"control_hz": 20,
|
| 12 |
+
"tcp_orientation_axis_angle": [
|
| 13 |
+
3.14159,
|
| 14 |
+
0.0,
|
| 15 |
+
0.0
|
| 16 |
+
],
|
| 17 |
+
"workspace_trapezoid": {
|
| 18 |
+
"y_range": [
|
| 19 |
+
0.5,
|
| 20 |
+
0.8
|
| 21 |
+
],
|
| 22 |
+
"x_halfwidth_at_y_min": 0.1,
|
| 23 |
+
"x_halfwidth_at_y_max": 0.18
|
| 24 |
+
},
|
| 25 |
+
"episodes": 100,
|
| 26 |
+
"task": "remove_blocks_under_bowl",
|
| 27 |
+
"instruction": "Uncover the hidden blocks and spread the three objects out.",
|
| 28 |
+
"description": "Starts in the hidden state: bowl on top of a paired set of two blocks. The robot picks the bowl off the pair and places it at a new random position on the table. Then picks each block in random order and places them at new random positions, well-separated from each other and the bowl.",
|
| 29 |
+
"objects": [
|
| 30 |
+
"block_a",
|
| 31 |
+
"block_b",
|
| 32 |
+
"bowl"
|
| 33 |
+
]
|
| 34 |
+
}
|