skysky0214 commited on
Commit
c82f6cd
·
verified ·
1 Parent(s): ddbda0d

Update dataset README with full docs

Browse files
Files changed (1) hide show
  1. README.md +180 -3
README.md CHANGED
@@ -1,3 +1,180 @@
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
+ - imitation-learning
9
+ - elevator-button-press
10
+ - isaac-sim
11
+ - isaac-lab
12
+ - omy
13
+ pretty_name: ev Button Push (OMY call-button, Isaac Lab)
14
+ size_categories:
15
+ - 10B<n<100B
16
+ ---
17
+
18
+ # evButtonPush
19
+
20
+ Simulated demonstrations of a **ROBOTIS OMY** 6-DoF arm pressing an elevator
21
+ call-button, collected in **NVIDIA Isaac Sim / Isaac Lab** with a scripted
22
+ IK teacher.
23
+
24
+ Two versions are provided:
25
+
26
+ | Folder | Teacher success criterion | Key properties |
27
+ |---|---|---|
28
+ | **`v01/`** | Distance-based (tip within 5 cm of button) | 46 demos; mixed press-target height; no elevator interaction |
29
+ | **`v02/`** | **Physical contact force ≥ 0.5 N** | 45 demos; uniform Z+0.11 m target; elevator door FSM; **`call_button_lit` LED observation** |
30
+
31
+ For imitation learning, **v02 is the recommended training set**. v01 is a
32
+ baseline / ablation reference from the same robot and cameras.
33
+
34
+ ---
35
+
36
+ ## Task
37
+
38
+ - Task ID (Isaac Lab): `RobotisLab-CallButton-Right-OMY-v0`
39
+ - Robot: ROBOTIS **OMY** (6-DoF arm + 2-finger gripper)
40
+ - Pedestal: 0.908 m, gripper always closed (stiffness 2 × 10⁶, effort 5000)
41
+ - Elevator USD: random choice from 100 variants (`elevator_setup_new`)
42
+ - Robot initial pose randomization (per-seed):
43
+ - standoff distance to button: 0.55 ~ 0.65 m
44
+ - lateral offset: −0.05 ~ 0.05 m
45
+ - yaw: 0°
46
+
47
+ ---
48
+
49
+ ## Cameras
50
+
51
+ All three cameras record **RGB, 1920 × 1200, Pinhole**:
52
+ - horizontal aperture 20.955 mm
53
+ - vertical aperture 13.097 mm (derived from 16:10 aspect)
54
+ - clipping (0.01, 100) m
55
+
56
+ | Name | Prim path | Frame | Position (m) | Quat (w, x, y, z) | FOV (H, V, D) | focal |
57
+ |---|---|---|---|---|---|---|
58
+ | `cam_wrist` | `Robot/OMY/link6/cam_wrist` | link6 (local, moves with arm) | (0.000, −0.080, 0.070) | (0.0018, −0.0018, 0.7071, 0.7071) | 83.21° / 58.06° / 92.64° | 11.8 mm |
59
+ | `cam_top` | `Robot/OMY/world/cam_top` | robot base | (0.000233, 0.1499, 0.43953) | (0.5144, 0.4146, −0.5064, −0.5542) | 92.67° / 66.44° / 102.03° | 10.0 mm |
60
+ | `cam_belly` | `Robot/OMY/world/cam_belly` | robot base | (0.08705, 0.1499, 0.1075) | (−0.4901, −0.5097, 0.5097, 0.4901) | 92.67° / 66.44° / 102.03° | 10.0 mm |
61
+
62
+ The `world` prim inside the OMY USD refers to the robot's base frame (link0),
63
+ **not** the simulation world. To obtain world-frame poses at runtime:
64
+
65
+ ```
66
+ world_pose(cam_top) = robot.root_pose_w ⊙ offset_cam_top
67
+ world_pose(cam_wrist) = robot.root_pose_w ⊙ FK(link0→link6) ⊙ offset_cam_wrist
68
+ ```
69
+
70
+ ---
71
+
72
+ ## v02 — `v02/` (recommended)
73
+
74
+ - **45 demos**, seeds `0` – `44`, all pressed = True
75
+ - ~35 s per episode, ~1050 frames at 30 fps
76
+ - Elevator **door FSM** progresses on press:
77
+ `state 0 (idle) → 1 (pressed / LED on) → 2 (door opening, progress 0→1) → 3 (open)`
78
+ - Average peak gripper tip contact force: 60 – 80 N
79
+ - Teacher CLI:
80
+ ```
81
+ --approach-steps 100 --press-steps 400
82
+ --stall-steps 20 --hold-steps 30
83
+ --return-steps 300 --home-idle-steps 150
84
+ --press-depth 0.035 --contact-force-threshold 0.5
85
+ ```
86
+ - Press target Z offset: `+0.11 m` relative to `button_base` (fixed inside teacher).
87
+
88
+ ### HDF5 layout per episode
89
+
90
+ ```
91
+ data/demo_0/
92
+ ├── actions (T, 7) float32 arm 6 + gripper 1
93
+ ├── processed_actions (T, 10) float32 full joint targets
94
+ ├── obs/
95
+ │ ├── cam_wrist (T, 1200, 1920, 3) uint8
96
+ │ ├── cam_top (T, 1200, 1920, 3) uint8
97
+ │ ├── cam_belly (T, 1200, 1920, 3) uint8
98
+ │ ├── joint_pos (T, 10) float32
99
+ │ ├── joint_vel (T, 10) float32
100
+ │ ├── call_button_pos (T, 3) float32 button world pos
101
+ │ ├── rel_ee_call_button_distance (T, 3) float32 tip-button vec
102
+ │ └── call_button_lit (T, 1) bool ⭐ LED on/off
103
+ ├── states/articulation/robot/...
104
+ ├── states/rigid_object/pedestal/...
105
+ └── initial_state/...
106
+ ```
107
+
108
+ `call_button_lit` is specific to v02 and lets a policy learn an explicit
109
+ "button is now pressed → door is opening → retract" cue.
110
+
111
+ ---
112
+
113
+ ## v01 — `v01/`
114
+
115
+ - **46 demos**, seeds span `0`–`60` with gaps (see `v01/metadata.csv`)
116
+ - Older teacher that judged success purely by tip-to-button distance
117
+ (threshold 0.050 m) — no physical contact check
118
+ - **Press-target Z offset is NOT uniform** across demos:
119
+ - `z = 0.00 m`: seeds 0–27 (teacher's default height)
120
+ - `z = +0.01 m`: seeds 50–54
121
+ - `z = +0.04 m`: seeds 55–60
122
+ - `z = +0.11 m`: seeds 23–32 (matched to v02 for a cleaner subset)
123
+ - No `call_button_lit` observation, no elevator door motion.
124
+
125
+ The height heterogeneity is intentional — v01 is useful for studying how a
126
+ student policy reacts to inconsistent teacher behavior, but for a clean
127
+ baseline a user may want to filter to a single `z_offset_m` group
128
+ (metadata is in `v01/metadata.csv`).
129
+
130
+ ---
131
+
132
+ ## Per-version files
133
+
134
+ Each version directory contains:
135
+
136
+ - `demo_XX.hdf5` — one episode per file (see layout above)
137
+ - `demo_XX.log` — scripted-teacher stdout with `[SETUP]`, `[PHASE]`,
138
+ `[APPROACH DONE]`, `[PRESSED]`, `[RESULT]` markers
139
+ - `summary.log` — one line per demo
140
+ - `metadata.csv` — `seed, z_offset_m, size_bytes, pressed, min_distance_m, teacher_version`
141
+ - `README.md` — version-specific notes
142
+
143
+ ---
144
+
145
+ ## Reproducibility
146
+
147
+ - Isaac Sim **5.1**, Isaac Lab (`robotis_lab` package)
148
+ - DataCrunch Cloud, NVIDIA RTX PRO 6000 Blackwell
149
+ - `v02` additionally depends on the `frontier_simulation` package
150
+ (`isaac_sim.assets.elevator.ELEVATOR_CFG`) for the door FSM.
151
+
152
+ Scripted teacher: `diffik_teacher_jointpos.py` (ports an open-loop IK
153
+ press policy into Isaac Lab's env loop and records to HDF5 via
154
+ `ActionStateRecorderManagerCfg`).
155
+
156
+ ---
157
+
158
+ ## Suggested usage
159
+
160
+ Imitation learning (ACT, Diffusion Policy, BC) with `qpos_dim = 8`:
161
+
162
+ ```python
163
+ qpos = concat(joint_pos[:6], gripper_closed_flag, call_button_lit) # 8
164
+ action = [arm_delta[:6], gripper_cmd] # 7
165
+ images = {cam_wrist, cam_top, cam_belly} # 1920×1200 (resize as needed)
166
+ ```
167
+
168
+ For efficiency, training pipelines commonly resize to 240 × 320 before
169
+ consumption. We retain the original 1920 × 1200 to keep the data
170
+ lossless.
171
+
172
+ ---
173
+
174
+ ## Authors / Contact
175
+
176
+ - Collected by: **Hwang Yeeun**
177
+ - Organization: **ROBOTIS** (AI team)
178
+ - Simulator: NVIDIA Isaac Sim 5.1 + Isaac Lab
179
+
180
+ For issues or pull requests, please open them on the dataset repo.