robox-tech commited on
Commit
821dda4
·
verified ·
1 Parent(s): 22cf571

Add example clips and replace em dashes

Browse files
Files changed (1) hide show
  1. README.md +84 -72
README.md CHANGED
@@ -12,6 +12,18 @@ tags:
12
 
13
  A premium egocentric dataset of real-world hand and object task demonstrations, recorded in first person through RoboX. This release bundles 17 task clips drawn from 5 full recordings (about 6 minutes of footage), each pairing clean RGB video with synchronized, robotics ready annotations: MediaPipe hand keypoints (21 joints, 2D and 3D), 6DoF camera pose, IMU, depth metadata, body pose, person segmentation, and per frame trajectory and billing signals. It is built for embodied AI and egocentric robotics research, with predefined train, validation and test splits and a motion quality score on every clip.
14
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  ## Dataset Summary
16
 
17
  | Property | Value |
@@ -44,14 +56,14 @@ Depending on campaign type and device capability, recordings include:
44
 
45
  Two tier axes live on every clip:
46
 
47
- 1. **`dataset_tier`** the **bundle-level buyer tier** the export was packaged at (`base` / `pro` / `premium` / `custom`). Same value on every clip in this bundle (see `manifest.json::dataset_tier`). Drives which annotation streams the runner emits.
48
- 2. **`buyer_tier_eligible`** the **highest tier the clip's source data supports**, computed from `source_modalities_available`. Independent of `dataset_tier` a Premium bundle can contain clips that only justify Pro or Base, and a Base bundle still surfaces eligibility so consumers can spot data that *could* be re-bundled at a higher tier.
49
 
50
  Buyer tiers map to source modalities as follows:
51
 
52
- - **`base`** video asset plus any AI-derived labels (object detections, scene / activity tags). No structured robotics sensor data.
53
- - **`pro`** `base` plus the motion stack: 6DoF camera pose, camera intrinsics, IMU, hand keypoints when captured, and depth (LiDAR / TrueDepth) when available.
54
- - **`premium`** `pro` plus body pose (19-joint skeleton with stable `person_id`) and / or person segmentation (instance bbox per frame with the same `person_id` pool).
55
 
56
  Tier distribution for this bundle (counts the clips' `buyer_tier_eligible`):
57
 
@@ -65,32 +77,32 @@ A finer-grained **`sensor_tier`** label (`rgbd_navigation` / `rgbd_full` / `full
65
 
66
  Every clip carries lightweight bimanual aggregates derived from per-frame hand state (`annotations/hand_state/`):
67
 
68
- - `is_bimanual_active` `true` when both hands were jointly active for ≥ 10% of clip frames
69
- - `bimanual_active_percent` fraction of frames where both hands were active (0–100)
70
- - `bimanual_active_duration_sec` estimated seconds where both hands were active
71
- - `hand_state_distribution` per-state frame counts: `no_hand_visible` / `left_only` / `right_only` / `both_visible` / `both_active`
72
- - `labels.bimanual` any of `bimanual_grasp` (both hands closed-grip with object contact for ≥ 20% of frames), `handoff` (`in_hand` side flips within 1.5 s), `coordinated_action` (sustained two-handed activity, ≥ 40% of frames, that did not qualify as `bimanual_grasp`)
73
 
74
  A "hand is active" when it is visible AND either (a) holds a closed grip (`power_grip` / `pinch` / `precision_grip`), (b) overlaps any tracked object's bbox, or (c) reports a small thumb–index pinch distance.
75
 
76
  ## Dataset Profiles
77
 
78
- When this bundle was exported with a named **dataset profile**, the resolved recipe is recorded in `manifest.json::profile`. Profiles pin the bundle to a single campaign and apply extra clip-level filters on top of the chosen tier for example, `egograsp_bimanual_v1` keeps only EgoGrasp Premium clips with `bimanual_active_percent ≥ 50`.
79
 
80
  ## Motion Quality Scoring
81
 
82
  Every clip carries a `motion_quality_score` (0–100) derived from device telemetry the runner already extracts. Buyers can sort/filter low-quality clips without opening any MP4:
83
 
84
- - `clips.jsonl::motion_quality_score` composite score, 0–100
85
- - `clips.jsonl::quality_tier` one of `excellent` (≥ 85), `good` (≥ 65), `usable` (≥ 40), `reject` (< 40)
86
- - `clips.jsonl::motion_quality.*` component metrics that fed the score:
87
- - `motion_smoothness` inverse of mean angular-velocity jerk (handheld shakiness)
88
- - `activity_density_percent` fraction of frames with any signal (hands / objects / non-trivial camera motion)
89
- - `active_frame_percent` fraction of frames where a hand is actively engaged
90
- - `tracking_quality_percent` fraction with ARKit `tracking_state == "normal"`
91
- - `low_light_percent` fraction with ambient lumens below 100 lm
92
- - `motion_blur_risk_percent` fraction with linear OR angular velocity above the motion-blur thresholds
93
- - `frame_jitter` `{mean_interval_ms, std_interval_ms, max_deviation_ms, jitter_score}` from frame timing
94
 
95
  `manifest.json::quality` carries the dataset-wide tier distribution and mean score so consumers see overall bundle quality before drilling into clips. Missing telemetry (e.g. no light estimate on a legacy device) defaults to a neutral 50 contribution to the composite so older bundles are not penalised relative to fully-equipped captures.
96
 
@@ -98,18 +110,18 @@ Every clip carries a `motion_quality_score` (0–100) derived from device teleme
98
 
99
  The raw video duration in the summary above counts *every* recorded second, including idle reaches, transit footage, and frames where the hand leaves the field of view. Buyers paying per second usually want the **ML-useful** subset:
100
 
101
- - `clips.jsonl::billable_frame_count`, `billable_duration_sec`, `billable_percent` per-clip chargeable subset.
102
- - `clips.jsonl::billing_rule` slug of the campaign rule that produced the verdict (full rule lives in `manifest.json::billing.rules_by_data_type`).
103
- - `clips.jsonl::per_frame_billing_aggregate` counts of the four per-frame metrics (`hands_visible`, `hands_active`, `object_visible`, `interaction_active`) over the clip.
104
- - `manifest.json::billing.total_billable_duration_sec` vs `stats.total_duration_sec` dataset-wide chargeable vs raw timeline.
105
 
106
  Each campaign defines its own billing rule:
107
 
108
- - **EgoGrasp / EgoDaily** `interaction_active` (hand + tracked object) billable when a hand is actively grasping or interacting with an object.
109
- - **EgoNav** `always_billable` every recorded frame counts; locomotion data is per-frame useful regardless of hand visibility.
110
- - **EgoDepth / EgoScene** `always_billable` the sensor capture is the product, not hand activity.
111
- - **EgoSocial** `hands_or_object_visible` proxy for social engagement; pure transit footage between encounters is excluded.
112
- - **EgoHub** `always_billable` AI metadata bundle is the product, no per-frame device data is collected.
113
 
114
  Raw frame data is preserved in `annotations/billing/<clip>.jsonl` so buyers can re-derive any custom billable predicate (e.g. their own ML-quality filter) without re-running the export.
115
 
@@ -119,15 +131,15 @@ In addition to the **campaign-specific** action segments under `annotations/acti
119
 
120
  Three states (priority order: `interaction` > `locomotion` > `idle`):
121
 
122
- - **`interaction`** a hand is actively engaged with an object (reuses the Phase 4 billing predicates: `hands_active` or `interaction_active`). Walking-while-holding counts as `interaction`, not `locomotion`.
123
- - **`locomotion`** the body / camera is translating through space. Triggered by linear velocity ≥ 0.2 m/s, sustained IMU user-acceleration ≥ 0.15 m/s², or Core Motion `walking`/`running`/`cycling`/`automotive` activity at non-low confidence.
124
- - **`idle`** neither of the above. Hand visible but inactive, body stationary.
125
 
126
  Per-clip surface on `clips.jsonl::trajectory`:
127
 
128
- - `state_distribution` / `state_percent` / `state_duration_sec` per-state frame counts, fraction, and seconds
129
- - `dominant_state` most-common state (ties broken by priority order)
130
- - `segments[]` merged timeline spans `{state, start_sec, end_sec, start_frame, end_frame, frame_count}` (segments shorter than 0.3 s are absorbed into their predecessor to suppress tracker hiccups)
131
  - `segment_count` / `frame_count`
132
 
133
  A flat `clips.jsonl::dominant_trajectory_state` field is duplicated alongside `dominant_state` so consumers can `WHERE dominant_trajectory_state = 'locomotion'` without unpacking the nested block.
@@ -189,43 +201,43 @@ This dataset is intended for embodied AI and egocentric robotics research.
189
 
190
  ## Structure
191
 
192
- - `recordings/` Clean RGB full recordings (training-safe; no baked hand overlays).
193
- - `clips/` Clean RGB task/action clips derived from recordings.
194
- - `overlays/` Optional QA/debug preview videos with rendered hand landmarks (see `manifest.json::video_assets` and per-row `video` blocks in `metadata/recordings.jsonl` / `metadata/clips.jsonl`). Left hand `#4A90E2`, right hand `#FF8C42` when MediaPipe overlays are included.
195
- - `metadata/recordings.jsonl` Recording-level index
196
- - `metadata/clips.jsonl` Clip-level index (dataset index)
197
- - `metadata/contributors.jsonl` Anonymized contributor info
198
- - `metadata/splits.jsonl` Contributor-aware train/val/test split assignment
199
- - `taxonomy.json` Object/domain mapping derived from clip labels
200
- - `VALIDATION_REPORT.json` Bundle integrity and consistency checks
201
- - `SANITIZATION_REPORT.json` Buyer-facing privacy and sensitive-content scan summary
202
- - `USAGE_TERMS.md` Human-readable summary of license, commercial-use, exclusivity and buyer-assignment metadata (see also `manifest.json::release`)
203
- - `showcase/best_clips.json` Auto-selected best representative clips per campaign
204
- - `notebooks/explore_dataset.ipynb` Interactive exploration notebook (run in Jupyter)
205
- - `annotations/actions/` Temporal action segments per clip
206
- - `annotations/hand_keypoints/` Per-frame hand pose (21 joints). **As of schema v1.5** this stream is sourced from MediaPipe HandLandmarker running in the export backend see `manifest.json::mediapipe_hands` and `clips.jsonl::hand_detection_source` for provenance. The on-device iOS Vision hands are still captured by the app but are no longer the canonical source in the export bundle; this guarantees left/right chirality is consistent across all annotation streams.
207
- - `annotations/hand_landmarks_mediapipe/` Per-**video**-frame raw MediaPipe stream (one entry per frame at video fps, including frames where no hand was detected). Finer rate than `hand_keypoints` (which samples at iOS metadata rate, ~10 Hz). Same field shape as `hand_keypoints` entries.
208
- - `annotations/hand_state/` Per-frame bimanual state (left/right visible + active flags, per-hand grip, per-hand `in_hand`). Always rides along with `hand_keypoints`.
209
- - `annotations/billing/` Per-frame billing metrics (`hands_visible`, `hands_active`, `object_visible`, `interaction_active`) plus the campaign rule's `billable` verdict. Emitted for every clip with per-frame data.
210
- - `annotations/trajectory/` Per-frame **universal** robotics trajectory state (`idle` / `locomotion` / `interaction`) plus the raw signals that produced it (linear velocity, IMU acceleration, Core Motion activity). Campaign-agnostic and orthogonal to the campaign-specific actions stored in `annotations/actions/`.
211
- - `annotations/object_tracks/` Per-frame object bounding boxes
212
- - `annotations/sensors/` IMU, 6DoF camera pose, intrinsics, plus a per-frame `depth` block (`available`, `resolution`, `stats`, `intrinsics`) full LiDAR/TrueDepth metadata when the device captured it (Pro+ tier)
213
- - `annotations/body_pose/` Per-frame body skeleton (19 joints) with stable `person_id` (Premium tier only)
214
- - `annotations/segmentation/` Per-frame person-segmentation bboxes with stable `person_id` and frame-level coverage ratio (Premium tier only)
215
- - `annotations/environment/` Scene and environment labels per clip
216
- - `annotations/people/` Clip-level people visibility and count derived from AI enrichment
217
 
218
  ## Sensor Data Description
219
 
220
- - `annotations/sensors/` stores aligned per-frame measurements for IMU, camera pose, intrinsics, exposure, light estimate and a `depth` block (`available`, `resolution`, `stats`, `intrinsics` LiDAR/TrueDepth metadata; the dense pixel map is not persisted). Recording- and clip-level rollups (`depth_stats`, `depth_summary`, `lidar`) are surfaced in `metadata/recordings.jsonl` and `metadata/clips.jsonl`
221
  - `annotations/hand_keypoints/` stores per-frame hand observations including grip type and 2D/3D joint data when available
222
  - `annotations/body_pose/` stores per-frame body skeletons with a stable `person_id` (IoU-tracked across frames), `bbox_normalized`, per-joint 2D coordinates and confidence, and an optional `body_pose_summary` rollup
223
- - `annotations/segmentation/` stores per-frame person-segmentation results one `persons[]` entry per detected human (bbox + stable `person_id`, IoU-tracked across frames; the same identity is shared with `annotations/body_pose/` when both signals fire on the same human), plus the device-reported `coverage_ratio`, `covered_pixel_count` and frame dimensions
224
  - `annotations/actions/` stores temporal clip-level action segments
225
 
226
  ## Limitations
227
 
228
- - Clean RGB videos in `recordings/` and `clips/` are the primary training source. Overlay videos under `overlays/`, when present, are rendered visualization assets for QA, debugging, and demo review only do not treat them as raw sensor video.
229
  - object tracks are only present when source frames include object detections
230
  - this export is optimized for structured ML ingestion rather than human-readable storytelling
231
 
@@ -258,7 +270,7 @@ print(clips[0]["clip_id"], clips[0]["labels"])
258
 
259
  CC-BY-NC-4.0
260
 
261
- Commercial use: ⛔ Not allowed research and non-commercial use only
262
 
263
  For commercial licensing inquiries: contact@robox.to
264
 
@@ -266,12 +278,12 @@ For commercial licensing inquiries: contact@robox.to
266
 
267
  `manifest.json::release` is the canonical machine-readable contract attached to this bundle and `USAGE_TERMS.md` is the buyer-readable summary of the same data. Fields:
268
 
269
- - `license_id` short license slug (e.g. `CC-BY-NC-4.0` / `CC-BY-4.0` / `ROBOX-COMMERCIAL-1.0`).
270
- - `license_url` link to the full license text. The full text also ships in this bundle's `LICENSE` file.
271
- - `commercial_use_allowed` boolean derived from the license.
272
- - `exclusive` when `true`, RoboX has agreed not to license the same underlying data to other parties for the duration of the exclusivity window.
273
- - `exclusive_until` ISO 8601 expiry of the exclusivity arrangement (`null` for non-exclusive or perpetual-exclusive bundles).
274
- - `buyer_id` / `buyer_alias` opaque buyer identifier + buyer-facing display string when the bundle was prepared for a specific buyer; both `null` otherwise.
275
- - `warnings` informational slugs (e.g. `exclusive_without_buyer`) attached when the input combination is suspicious. The bundle still ships; operations reconciles these against the underlying contract.
276
 
277
  Conservative defaults apply when the export request omits a field, so a buyer or tester never receives a permissive license / exclusivity flag by accident: `CC-BY-NC-4.0`, `commercial_use_allowed=false`, `exclusive=false`, `buyer_id=null`.
 
12
 
13
  A premium egocentric dataset of real-world hand and object task demonstrations, recorded in first person through RoboX. This release bundles 17 task clips drawn from 5 full recordings (about 6 minutes of footage), each pairing clean RGB video with synchronized, robotics ready annotations: MediaPipe hand keypoints (21 joints, 2D and 3D), 6DoF camera pose, IMU, depth metadata, body pose, person segmentation, and per frame trajectory and billing signals. It is built for embodied AI and egocentric robotics research, with predefined train, validation and test splits and a motion quality score on every clip.
14
 
15
+ ## Examples
16
+
17
+ Two representative clips. The first is clean RGB exactly as shipped for training. The second is the optional QA overlay, with MediaPipe hand landmarks rendered on top (left hand blue, right hand orange).
18
+
19
+ Picking a GoPro box off a shelf (clean RGB, object transfer task):
20
+
21
+ <video controls width="480" src="https://huggingface.co/datasets/RoboXTechnologies/RoboX-EgoTask/resolve/main/clips/rec_egotask_0171251f_clip_0001.mp4"></video>
22
+
23
+ Spraying cleaning product on a sink, hand landmarks rendered (QA overlay):
24
+
25
+ <video controls width="480" src="https://huggingface.co/datasets/RoboXTechnologies/RoboX-EgoTask/resolve/main/overlays/clips/rec_egotask_19091acd_clip_0001_overlay.mp4"></video>
26
+
27
  ## Dataset Summary
28
 
29
  | Property | Value |
 
56
 
57
  Two tier axes live on every clip:
58
 
59
+ 1. **`dataset_tier`**: the **bundle-level buyer tier** the export was packaged at (`base` / `pro` / `premium` / `custom`). Same value on every clip in this bundle (see `manifest.json::dataset_tier`). Drives which annotation streams the runner emits.
60
+ 2. **`buyer_tier_eligible`**: the **highest tier the clip's source data supports**, computed from `source_modalities_available`. Independent of `dataset_tier`, a Premium bundle can contain clips that only justify Pro or Base, and a Base bundle still surfaces eligibility so consumers can spot data that *could* be re-bundled at a higher tier.
61
 
62
  Buyer tiers map to source modalities as follows:
63
 
64
+ - **`base`**: video asset plus any AI-derived labels (object detections, scene / activity tags). No structured robotics sensor data.
65
+ - **`pro`**: `base` plus the motion stack: 6DoF camera pose, camera intrinsics, IMU, hand keypoints when captured, and depth (LiDAR / TrueDepth) when available.
66
+ - **`premium`**: `pro` plus body pose (19-joint skeleton with stable `person_id`) and / or person segmentation (instance bbox per frame with the same `person_id` pool).
67
 
68
  Tier distribution for this bundle (counts the clips' `buyer_tier_eligible`):
69
 
 
77
 
78
  Every clip carries lightweight bimanual aggregates derived from per-frame hand state (`annotations/hand_state/`):
79
 
80
+ - `is_bimanual_active`: `true` when both hands were jointly active for ≥ 10% of clip frames
81
+ - `bimanual_active_percent`: fraction of frames where both hands were active (0–100)
82
+ - `bimanual_active_duration_sec`: estimated seconds where both hands were active
83
+ - `hand_state_distribution`: per-state frame counts: `no_hand_visible` / `left_only` / `right_only` / `both_visible` / `both_active`
84
+ - `labels.bimanual`: any of `bimanual_grasp` (both hands closed-grip with object contact for ≥ 20% of frames), `handoff` (`in_hand` side flips within 1.5 s), `coordinated_action` (sustained two-handed activity, ≥ 40% of frames, that did not qualify as `bimanual_grasp`)
85
 
86
  A "hand is active" when it is visible AND either (a) holds a closed grip (`power_grip` / `pinch` / `precision_grip`), (b) overlaps any tracked object's bbox, or (c) reports a small thumb–index pinch distance.
87
 
88
  ## Dataset Profiles
89
 
90
+ When this bundle was exported with a named **dataset profile**, the resolved recipe is recorded in `manifest.json::profile`. Profiles pin the bundle to a single campaign and apply extra clip-level filters on top of the chosen tier, for example, `egograsp_bimanual_v1` keeps only EgoGrasp Premium clips with `bimanual_active_percent ≥ 50`.
91
 
92
  ## Motion Quality Scoring
93
 
94
  Every clip carries a `motion_quality_score` (0–100) derived from device telemetry the runner already extracts. Buyers can sort/filter low-quality clips without opening any MP4:
95
 
96
+ - `clips.jsonl::motion_quality_score`: composite score, 0–100
97
+ - `clips.jsonl::quality_tier`: one of `excellent` (≥ 85), `good` (≥ 65), `usable` (≥ 40), `reject` (< 40)
98
+ - `clips.jsonl::motion_quality.*`: component metrics that fed the score:
99
+ - `motion_smoothness`: inverse of mean angular-velocity jerk (handheld shakiness)
100
+ - `activity_density_percent`: fraction of frames with any signal (hands / objects / non-trivial camera motion)
101
+ - `active_frame_percent`: fraction of frames where a hand is actively engaged
102
+ - `tracking_quality_percent`: fraction with ARKit `tracking_state == "normal"`
103
+ - `low_light_percent`: fraction with ambient lumens below 100 lm
104
+ - `motion_blur_risk_percent`: fraction with linear OR angular velocity above the motion-blur thresholds
105
+ - `frame_jitter`: `{mean_interval_ms, std_interval_ms, max_deviation_ms, jitter_score}` from frame timing
106
 
107
  `manifest.json::quality` carries the dataset-wide tier distribution and mean score so consumers see overall bundle quality before drilling into clips. Missing telemetry (e.g. no light estimate on a legacy device) defaults to a neutral 50 contribution to the composite so older bundles are not penalised relative to fully-equipped captures.
108
 
 
110
 
111
  The raw video duration in the summary above counts *every* recorded second, including idle reaches, transit footage, and frames where the hand leaves the field of view. Buyers paying per second usually want the **ML-useful** subset:
112
 
113
+ - `clips.jsonl::billable_frame_count`, `billable_duration_sec`, `billable_percent`: per-clip chargeable subset.
114
+ - `clips.jsonl::billing_rule`: slug of the campaign rule that produced the verdict (full rule lives in `manifest.json::billing.rules_by_data_type`).
115
+ - `clips.jsonl::per_frame_billing_aggregate`: counts of the four per-frame metrics (`hands_visible`, `hands_active`, `object_visible`, `interaction_active`) over the clip.
116
+ - `manifest.json::billing.total_billable_duration_sec` vs `stats.total_duration_sec`: dataset-wide chargeable vs raw timeline.
117
 
118
  Each campaign defines its own billing rule:
119
 
120
+ - **EgoGrasp / EgoDaily**: `interaction_active` (hand + tracked object), billable when a hand is actively grasping or interacting with an object.
121
+ - **EgoNav**: `always_billable`, every recorded frame counts; locomotion data is per-frame useful regardless of hand visibility.
122
+ - **EgoDepth / EgoScene**: `always_billable`, the sensor capture is the product, not hand activity.
123
+ - **EgoSocial**: `hands_or_object_visible`, proxy for social engagement; pure transit footage between encounters is excluded.
124
+ - **EgoHub**: `always_billable`, AI metadata bundle is the product, no per-frame device data is collected.
125
 
126
  Raw frame data is preserved in `annotations/billing/<clip>.jsonl` so buyers can re-derive any custom billable predicate (e.g. their own ML-quality filter) without re-running the export.
127
 
 
131
 
132
  Three states (priority order: `interaction` > `locomotion` > `idle`):
133
 
134
+ - **`interaction`**: a hand is actively engaged with an object (reuses the Phase 4 billing predicates: `hands_active` or `interaction_active`). Walking-while-holding counts as `interaction`, not `locomotion`.
135
+ - **`locomotion`**: the body / camera is translating through space. Triggered by linear velocity ≥ 0.2 m/s, sustained IMU user-acceleration ≥ 0.15 m/s², or Core Motion `walking`/`running`/`cycling`/`automotive` activity at non-low confidence.
136
+ - **`idle`**: neither of the above. Hand visible but inactive, body stationary.
137
 
138
  Per-clip surface on `clips.jsonl::trajectory`:
139
 
140
+ - `state_distribution` / `state_percent` / `state_duration_sec`: per-state frame counts, fraction, and seconds
141
+ - `dominant_state`: most-common state (ties broken by priority order)
142
+ - `segments[]`: merged timeline spans `{state, start_sec, end_sec, start_frame, end_frame, frame_count}` (segments shorter than 0.3 s are absorbed into their predecessor to suppress tracker hiccups)
143
  - `segment_count` / `frame_count`
144
 
145
  A flat `clips.jsonl::dominant_trajectory_state` field is duplicated alongside `dominant_state` so consumers can `WHERE dominant_trajectory_state = 'locomotion'` without unpacking the nested block.
 
201
 
202
  ## Structure
203
 
204
+ - `recordings/`: Clean RGB full recordings (training-safe; no baked hand overlays).
205
+ - `clips/`: Clean RGB task/action clips derived from recordings.
206
+ - `overlays/`: Optional QA/debug preview videos with rendered hand landmarks (see `manifest.json::video_assets` and per-row `video` blocks in `metadata/recordings.jsonl` / `metadata/clips.jsonl`). Left hand `#4A90E2`, right hand `#FF8C42` when MediaPipe overlays are included.
207
+ - `metadata/recordings.jsonl`: Recording-level index
208
+ - `metadata/clips.jsonl`: Clip-level index (dataset index)
209
+ - `metadata/contributors.jsonl`: Anonymized contributor info
210
+ - `metadata/splits.jsonl`: Contributor-aware train/val/test split assignment
211
+ - `taxonomy.json`: Object/domain mapping derived from clip labels
212
+ - `VALIDATION_REPORT.json`: Bundle integrity and consistency checks
213
+ - `SANITIZATION_REPORT.json`: Buyer-facing privacy and sensitive-content scan summary
214
+ - `USAGE_TERMS.md`: Human-readable summary of license, commercial-use, exclusivity and buyer-assignment metadata (see also `manifest.json::release`)
215
+ - `showcase/best_clips.json`: Auto-selected best representative clips per campaign
216
+ - `notebooks/explore_dataset.ipynb`: Interactive exploration notebook (run in Jupyter)
217
+ - `annotations/actions/`: Temporal action segments per clip
218
+ - `annotations/hand_keypoints/`: Per-frame hand pose (21 joints). **As of schema v1.5** this stream is sourced from MediaPipe HandLandmarker running in the export backend, see `manifest.json::mediapipe_hands` and `clips.jsonl::hand_detection_source` for provenance. The on-device iOS Vision hands are still captured by the app but are no longer the canonical source in the export bundle; this guarantees left/right chirality is consistent across all annotation streams.
219
+ - `annotations/hand_landmarks_mediapipe/`: Per-**video**-frame raw MediaPipe stream (one entry per frame at video fps, including frames where no hand was detected). Finer rate than `hand_keypoints` (which samples at iOS metadata rate, ~10 Hz). Same field shape as `hand_keypoints` entries.
220
+ - `annotations/hand_state/`: Per-frame bimanual state (left/right visible + active flags, per-hand grip, per-hand `in_hand`). Always rides along with `hand_keypoints`.
221
+ - `annotations/billing/`: Per-frame billing metrics (`hands_visible`, `hands_active`, `object_visible`, `interaction_active`) plus the campaign rule's `billable` verdict. Emitted for every clip with per-frame data.
222
+ - `annotations/trajectory/`: Per-frame **universal** robotics trajectory state (`idle` / `locomotion` / `interaction`) plus the raw signals that produced it (linear velocity, IMU acceleration, Core Motion activity). Campaign-agnostic and orthogonal to the campaign-specific actions stored in `annotations/actions/`.
223
+ - `annotations/object_tracks/`: Per-frame object bounding boxes
224
+ - `annotations/sensors/`: IMU, 6DoF camera pose, intrinsics, plus a per-frame `depth` block (`available`, `resolution`, `stats`, `intrinsics`), full LiDAR/TrueDepth metadata when the device captured it (Pro+ tier)
225
+ - `annotations/body_pose/`: Per-frame body skeleton (19 joints) with stable `person_id` (Premium tier only)
226
+ - `annotations/segmentation/`: Per-frame person-segmentation bboxes with stable `person_id` and frame-level coverage ratio (Premium tier only)
227
+ - `annotations/environment/`: Scene and environment labels per clip
228
+ - `annotations/people/`: Clip-level people visibility and count derived from AI enrichment
229
 
230
  ## Sensor Data Description
231
 
232
+ - `annotations/sensors/` stores aligned per-frame measurements for IMU, camera pose, intrinsics, exposure, light estimate and a `depth` block (`available`, `resolution`, `stats`, `intrinsics`, LiDAR/TrueDepth metadata; the dense pixel map is not persisted). Recording- and clip-level rollups (`depth_stats`, `depth_summary`, `lidar`) are surfaced in `metadata/recordings.jsonl` and `metadata/clips.jsonl`
233
  - `annotations/hand_keypoints/` stores per-frame hand observations including grip type and 2D/3D joint data when available
234
  - `annotations/body_pose/` stores per-frame body skeletons with a stable `person_id` (IoU-tracked across frames), `bbox_normalized`, per-joint 2D coordinates and confidence, and an optional `body_pose_summary` rollup
235
+ - `annotations/segmentation/` stores per-frame person-segmentation results, one `persons[]` entry per detected human (bbox + stable `person_id`, IoU-tracked across frames; the same identity is shared with `annotations/body_pose/` when both signals fire on the same human), plus the device-reported `coverage_ratio`, `covered_pixel_count` and frame dimensions
236
  - `annotations/actions/` stores temporal clip-level action segments
237
 
238
  ## Limitations
239
 
240
+ - Clean RGB videos in `recordings/` and `clips/` are the primary training source. Overlay videos under `overlays/`, when present, are rendered visualization assets for QA, debugging, and demo review only, do not treat them as raw sensor video.
241
  - object tracks are only present when source frames include object detections
242
  - this export is optimized for structured ML ingestion rather than human-readable storytelling
243
 
 
270
 
271
  CC-BY-NC-4.0
272
 
273
+ Commercial use: ⛔ Not allowed, research and non-commercial use only
274
 
275
  For commercial licensing inquiries: contact@robox.to
276
 
 
278
 
279
  `manifest.json::release` is the canonical machine-readable contract attached to this bundle and `USAGE_TERMS.md` is the buyer-readable summary of the same data. Fields:
280
 
281
+ - `license_id`: short license slug (e.g. `CC-BY-NC-4.0` / `CC-BY-4.0` / `ROBOX-COMMERCIAL-1.0`).
282
+ - `license_url`: link to the full license text. The full text also ships in this bundle's `LICENSE` file.
283
+ - `commercial_use_allowed`: boolean derived from the license.
284
+ - `exclusive`: when `true`, RoboX has agreed not to license the same underlying data to other parties for the duration of the exclusivity window.
285
+ - `exclusive_until`: ISO 8601 expiry of the exclusivity arrangement (`null` for non-exclusive or perpetual-exclusive bundles).
286
+ - `buyer_id` / `buyer_alias`: opaque buyer identifier + buyer-facing display string when the bundle was prepared for a specific buyer; both `null` otherwise.
287
+ - `warnings`: informational slugs (e.g. `exclusive_without_buyer`) attached when the input combination is suspicious. The bundle still ships; operations reconciles these against the underlying contract.
288
 
289
  Conservative defaults apply when the export request omits a field, so a buyer or tester never receives a permissive license / exclusivity flag by accident: `CC-BY-NC-4.0`, `commercial_use_allowed=false`, `exclusive=false`, `buyer_id=null`.