Expand dataset README with schema details
Browse files
README.md
CHANGED
|
@@ -30,6 +30,20 @@ The dataset contains ten LIBERO spatial tasks. Each task file contains the
|
|
| 30 |
first ten source demonstrations rendered under all six visual conditions, for
|
| 31 |
60 trajectories per task and 600 trajectories total.
|
| 32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
Each episode stores explicit metadata:
|
| 34 |
|
| 35 |
- `task_name`, `task_index`, `language_instruction`
|
|
@@ -38,6 +52,23 @@ Each episode stores explicit metadata:
|
|
| 38 |
- `camera_calibration` group with per-camera intrinsics, per-frame extrinsics,
|
| 39 |
and per-frame world-to-pixel projection matrices
|
| 40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
Camera calibration is stored at:
|
| 42 |
|
| 43 |
```text
|
|
@@ -45,3 +76,20 @@ data/demo_*/camera_calibration/<camera_name>/intrinsic_matrix
|
|
| 45 |
data/demo_*/camera_calibration/<camera_name>/extrinsic_matrices
|
| 46 |
data/demo_*/camera_calibration/<camera_name>/world_to_pixel_matrices
|
| 47 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
first ten source demonstrations rendered under all six visual conditions, for
|
| 31 |
60 trajectories per task and 600 trajectories total.
|
| 32 |
|
| 33 |
+
Within every task HDF5, the trajectory blocks are ordered as:
|
| 34 |
+
|
| 35 |
+
```text
|
| 36 |
+
demo_0..demo_9 original
|
| 37 |
+
demo_10..demo_19 nordic-sage
|
| 38 |
+
demo_20..demo_29 midnight-fjord
|
| 39 |
+
demo_30..demo_39 terracotta-pop
|
| 40 |
+
demo_40..demo_49 alpine-oak
|
| 41 |
+
demo_50..demo_59 graphite-gallery
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
Prefer reading `visual_condition_key` and `source_demo_index` from each
|
| 45 |
+
episode's attributes instead of relying only on this index convention.
|
| 46 |
+
|
| 47 |
Each episode stores explicit metadata:
|
| 48 |
|
| 49 |
- `task_name`, `task_index`, `language_instruction`
|
|
|
|
| 52 |
- `camera_calibration` group with per-camera intrinsics, per-frame extrinsics,
|
| 53 |
and per-frame world-to-pixel projection matrices
|
| 54 |
|
| 55 |
+
Common trajectory and observation keys follow the usual LIBERO HDF5 layout:
|
| 56 |
+
|
| 57 |
+
```text
|
| 58 |
+
data/demo_*/actions
|
| 59 |
+
data/demo_*/states
|
| 60 |
+
data/demo_*/robot_states
|
| 61 |
+
data/demo_*/rewards
|
| 62 |
+
data/demo_*/dones
|
| 63 |
+
data/demo_*/obs/agentview_rgb
|
| 64 |
+
data/demo_*/obs/eye_in_hand_rgb
|
| 65 |
+
data/demo_*/obs/joint_states
|
| 66 |
+
data/demo_*/obs/gripper_states
|
| 67 |
+
data/demo_*/obs/ee_pos
|
| 68 |
+
data/demo_*/obs/ee_ori
|
| 69 |
+
data/demo_*/obs/ee_states
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
Camera calibration is stored at:
|
| 73 |
|
| 74 |
```text
|
|
|
|
| 76 |
data/demo_*/camera_calibration/<camera_name>/extrinsic_matrices
|
| 77 |
data/demo_*/camera_calibration/<camera_name>/world_to_pixel_matrices
|
| 78 |
```
|
| 79 |
+
|
| 80 |
+
Calibration is available for both `agentview` and `robot0_eye_in_hand`.
|
| 81 |
+
The array shapes are:
|
| 82 |
+
|
| 83 |
+
```text
|
| 84 |
+
intrinsic_matrix (3, 3)
|
| 85 |
+
extrinsic_matrices (T, 4, 4)
|
| 86 |
+
world_to_pixel_matrices (T, 4, 4)
|
| 87 |
+
```
|
| 88 |
+
|
| 89 |
+
The uploaded dataset was re-downloaded from Hugging Face and validated for:
|
| 90 |
+
|
| 91 |
+
- 10 task files
|
| 92 |
+
- 600 total trajectories
|
| 93 |
+
- expected visual-condition blocks
|
| 94 |
+
- expected RGB observation shapes `(T, 128, 128, 3)`
|
| 95 |
+
- expected camera calibration groups and matrix shapes
|