Create READ_ME.md

#1
by JackYFL233 - opened

EgoSPT

EgoSPT is an egocentric manipulation trajectory dataset collected for
vision-conditioned trajectory prediction. Each episode contains an RGB video,
time-aligned end-effector poses, gripper widths, and valid-frame masks.

Dataset Summary

  • Scenes: scene1, scene2, scene3
  • Tasks: 112 task folders
  • Episodes: 11,515 processed episode folders
  • Size: about 37 GB
  • Main modality: egocentric RGB video
  • Action target: future end-effector trajectory with gripper width

Directory Structure

EgoSPT/
β”œβ”€β”€ scene1/
β”œβ”€β”€ scene2/
└── scene3/
    └── <task_name>/
        └── recording_output_processed/
            └── episode_<id>/
                β”œβ”€β”€ camera_1.mp4
                β”œβ”€β”€ pose_interp
                β”œβ”€β”€ gripper_widths
                └── valid_indices

Each task name follows the pattern:

put_fork<id>_to_<target><id>

where targets include bowls, cups, and plates.

Episode Contents

Each processed episode contains:

File Description
camera_1.mp4 egocentric RGB video
pose_interp time-aligned end-effector pose sequence, stored as zarr array
gripper_widths gripper width sequence, stored as zarr array
valid_indices boolean valid-frame mask, stored as zarr array

The pose trajectory is represented as homogeneous SE(3) transforms. Downstream
code converts these poses into relative actions:

[dx, dy, dz, rot6d_0..5, gripper_width]

Usage With umi_day.vision_traj

Place the dataset under:

umi_day/EgoSPT

Then train with:

python -m umi_day.vision_traj.train \
  data.root=umi_day/EgoSPT \
  data.annotations_json=annotations_merged.json

The vision_traj loader expects an annotation JSON that provides object and
target bounding boxes on the first frame of each episode.

Notes

  • This dataset is intended for robotics research on egocentric perception,
    object-conditioned manipulation, and trajectory prediction.
  • The processed episode folders are directly readable by
    umi_day/vision_traj/dataset.py.
  • See umi_day/vision_traj/README.md for model training and evaluation
    commands.
JackYFL233 changed pull request status to merged

Sign up or log in to comment