robox-tech commited on
Commit
ce3e597
·
verified ·
1 Parent(s): a3cacfc

Rewrite dataset card title and description

Browse files
Files changed (1) hide show
  1. README.md +6 -6
README.md CHANGED
@@ -8,9 +8,9 @@ tags:
8
  - robox
9
  ---
10
 
11
- # RoboX-EgoTask-v1.7
12
 
13
- 17 clips from 5 recordings, collected via the RoboX.
14
 
15
  ## Dataset Summary
16
 
@@ -236,7 +236,7 @@ This dataset is intended for embodied AI and egocentric robotics research.
236
  import json
237
  from pathlib import Path
238
 
239
- root = Path("RoboX-EgoTask-v1.7")
240
  clips = [json.loads(line) for line in (root / "metadata" / "clips.jsonl").read_text().splitlines()]
241
  # Filter clips that have hand keypoints in this export tier
242
  hand_clips = [c for c in clips if (c.get("exported_modalities") or {}).get("hand_keypoints_2d")]
@@ -246,11 +246,11 @@ print(clips[0]["clip_id"], clips[0]["labels"])
246
  ## Citation
247
 
248
  ```bibtex
249
- @dataset{robox_RoboX-EgoTask-v1.7_2026,
250
- title={RoboX-EgoTask-v1.7: Egocentric EgoTask Dataset},
251
  author={RoboX Team},
252
  year={2026},
253
- url={https://huggingface.co/datasets/robox-data/RoboX-EgoTask-v1.7},
254
  license={CC-BY-NC-4.0}
255
  }
256
  ```
 
8
  - robox
9
  ---
10
 
11
+ # RoboX-EgoTask
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 contributor aware train, validation and test splits and a motion quality score on every clip.
14
 
15
  ## Dataset Summary
16
 
 
236
  import json
237
  from pathlib import Path
238
 
239
+ root = Path("RoboX-EgoTask")
240
  clips = [json.loads(line) for line in (root / "metadata" / "clips.jsonl").read_text().splitlines()]
241
  # Filter clips that have hand keypoints in this export tier
242
  hand_clips = [c for c in clips if (c.get("exported_modalities") or {}).get("hand_keypoints_2d")]
 
246
  ## Citation
247
 
248
  ```bibtex
249
+ @dataset{robox_egotask_2026,
250
+ title={RoboX-EgoTask: An Egocentric Hand-Object Task Dataset},
251
  author={RoboX Team},
252
  year={2026},
253
+ url={https://huggingface.co/datasets/RoboXTechnologies/RoboX-EgoTask},
254
  license={CC-BY-NC-4.0}
255
  }
256
  ```