UniHand Human Data Preview (Customized LeRobot v3 Format)
This is a preview of the human data of UniHand in the customized LeRobot v3 format.
We customized the LeRobot v3 format to better fit the structure of our human data and to facilitate downstream usage. The dataset layout and file formats are designed to be intuitive and efficient for common use cases.
1. Dataset Layout
{dataset_root}/
data/
chunk-000/file-000000.parquet
chunk-000/file-000001.parquet
...
videos/
ego-view/
chunk-000/file-000000.mp4
chunk-000/file-000001.mp4
...
meta/
info.json
tasks_instruction.jsonl
tasks_description.jsonl
episodes/
instruction/
chunk-000/file-000000.parquet
...
description/
chunk-000/file-000000.parquet
...
2. meta/info.json
meta/info.json stores dataset-level metadata.
Example:
{
"base_dataset": "arctic",
"dataset_variants": ["arctic", "arctic_aug", "arctic_aug2"],
"fps": 30.0,
"action_stride": 1,
"robot_type": "human hand",
"layout": "file-centric-split-mirror-v4",
"mirror_video_transform": "horizontal_flip",
"mirror_text_transform_version": "left-right-clockwise-v1",
"num_files": 1641,
"num_episodes": 229814
}
Common keys:
base_datasetdataset_variantsfpsaction_striderobot_typelayoutmirror_video_transformmirror_text_transform_versionnum_filesnum_episodes
How to use it:
- read
layoutas the dataset layout identifier - read
action_strideto interpret action horizons - read
fpsas the default frame rate if you need dataset-level timing metadata
3. meta/tasks_instruction.jsonl
This file is the text registry for instruction / prediction samples.
Each line is one JSON object:
{"task_index": 0, "task": "Pick up the object ..."}
Fields:
task_index: integer task idtask: task text
How to use it:
- if you are reading from
meta/episodes/instruction/..., use this file to resolvetask_index task_indexis contiguous and starts from0within this file
4. meta/tasks_description.jsonl
This file is the text registry for description samples.
Each line is one JSON object:
{"task_index": 0, "task": "The hands lift the object ..."}
Fields:
task_index: integer task idtask: text description
How to use it:
- if you are reading from
meta/episodes/description/..., use this file to resolvetask_index task_indexis contiguous and starts from0within this file
5. meta/episodes/instruction/**/*.parquet
These parquet shards store instruction / prediction episode rows.
Each row describes one temporal slice inside one exported file.
Common fields:
file_idstart_timestepend_timestepembodimenttask_indexrow_id
Meaning:
file_id: file-level id used to locate motion parquet and videostart_timestep: inclusive start frameend_timestep: exclusive end frameembodiment: effective embodiment for this rowtask_index: text id inmeta/tasks_instruction.jsonlrow_id: stable row id
How to use it:
- read one row
- resolve text from
meta/tasks_instruction.jsonl - resolve motion/video from
file_id - slice the file timeline with
[start_timestep, end_timestep) - each parquet shard contains many episode rows, and those rows may reference many different
file_idvalues
6. meta/episodes/description/**/*.parquet
These parquet shards store description episode rows.
The row structure is the same as the instruction split:
file_idstart_timestepend_timestepembodimenttask_indexrow_id
How to use it:
- read one row
- resolve text from
meta/tasks_description.jsonl - resolve motion/video from
file_id - slice the file timeline with
[start_timestep, end_timestep) - each parquet shard contains many episode rows, and those rows may reference many different
file_idvalues
7. data/chunk-xxx/file-xxxxxx.parquet
Each motion parquet stores frame-level hand motion for one file_id.
Common per-frame columns:
camera_c2wleft.trans_wleft.rot_axis_angle_wleft.thetaleft.betaright.trans_wright.rot_axis_angle_wright.thetaright.betavalid.left_horizonvalid.right_horizonvalid.joint_horizon
Meaning:
camera_c2w: flattened camera-to-world transformleft/right.trans_w: wrist translation in world frameleft/right.rot_axis_angle_w: wrist rotation in axis-angle formleft/right.theta: MANO pose parametersleft/right.beta: MANO shape parametersvalid.*_horizon: future validity horizon for action extraction
How to use it:
- locate the file from
file_id - load the parquet
- use frame indices in the global file timeline
- if an episode row is
(start_timestep, end_timestep), only use frames in that interval
Path rule:
data/chunk-{file_id // 1000:03d}/file-{file_id:06d}.parquet
8. videos/ego-view/chunk-xxx/file-xxxxxx.mp4
These mp4 files store the ego-view video aligned with the motion parquet.
How to resolve the path:
- Read
file_id. - Use:
videos/ego-view/chunk-{file_id // 1000:03d}/file-{file_id:06d}.mp4
9. How To Read One Sample
Instruction / prediction sample
- Read one row from
meta/episodes/instruction/**/*.parquet. - Use
task_indexto look up text inmeta/tasks_instruction.jsonl. - Use
file_idto locate the motion parquet indata/.... - Use
file_idto locate the ego-view video invideos/ego-view/.... - Restrict the valid episode range to
start_timestep <= t < end_timestep. - Read the frame(s) you need from the motion parquet.
- Read the aligned video frame(s) using the same file-global frame index.
Description sample
- Read one row from
meta/episodes/description/**/*.parquet. - Use
task_indexto look up text inmeta/tasks_description.jsonl. - Use
file_idto locate the motion parquet indata/.... - Use
file_idto locate the ego-view video invideos/ego-view/.... - Restrict the valid episode range to
start_timestep <= t < end_timestep. - Read the frame(s) you need from the motion parquet.
- Read the aligned video frame(s) using the same file-global frame index.
10. Valid Horizon
The valid.*_horizon columns are used to check whether a timestep can support future action extraction.
Use:
valid.left_horizonfor left-hand rowsvalid.right_horizonfor right-hand rowsvalid.joint_horizonfor bimanual rows
The horizon is measured in units of meta/info.json["action_stride"].
If your base timestep is t and your future chunk needs K stride-steps, require:
selected_horizon[t] >= K
and also require all sampled future timesteps to stay inside the episode range:
t + K * action_stride < end_timestep