The dataset viewer is not available for this subset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
~~~~~~~~~~~~~~~~~~~~~~~~~^
StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/hdf5/hdf5.py", line 49, in _split_generators
import h5py
ModuleNotFoundError: No module named 'h5py'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
~~~~~~~~~~~~~~~~~~~~~~~^
path=dataset,
^^^^^^^^^^^^^
config_name=config,
^^^^^^^^^^^^^^^^^^^
token=hf_token,
^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
path,
...<6 lines>...
**config_kwargs,
)
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Bimanual-humanid-tasks
Task previews
Cleaning Tools
Sorting Food
Overview
This dataset contains demonstration data for bimanual humanoid manipulation tasks. It includes both raw ROS bag recordings and converted HDF5 episodes prepared for offline learning, training, and analysis.
The current dataset includes task-specific recordings for:
Cleaning_toolsSorting_food
Repository structure
Bimanual-humanid-tasks/
├── assets/
│ ├── cleaning_tools_example.gif
│ └── sorting_food_example.gif
├── raw_bags/
│ ├── Cleaning_tools/
│ │ └── *.bag
│ └── Sorting_food/
│ └── *.bag
├── hdf5/
│ ├── Cleaning_tools/
│ │ └── *.h5
│ └── Sorting_food/
│ └── *.h5
└── README.md
Data modalities
The dataset may include the following modalities depending on the recording:
- bimanual arm joint trajectories
- hand or gripper state / control values
- synchronized RGB images from multiple cameras
- timestamps
- task instruction and metadata
HDF5 structure
Each HDF5 file stores one episode.
Example structure:
/
├── act/
│ ├── action
│ ├── hand_target
│ └── joint_target
├── done
├── images/
│ ├── head
│ ├── left_wrist
│ └── right_wrist
├── meta/
│ ├── act_dim
│ ├── bag_name
│ ├── instruction
│ ├── joint_names
│ ├── obs_dim
│ └── state_definition
├── next_obs/
│ └── state
├── obs/
│ ├── hand_pos
│ ├── joint_pos
│ └── state
├── reward
└── timestamps
HDF5 field description
Observation fields
obs/state— full observation vectorobs/joint_pos— arm joint positionsobs/hand_pos— hand positions
Action fields
act/action— full action vectoract/joint_target— target arm joint valuesact/hand_target— target hand values
Transition fields
next_obs/state— next observation statereward— reward valuesdone— episode termination flagstimestamps— step timestamps
Image fields
images/head— head camera RGB framesimages/left_wrist— left wrist camera RGB framesimages/right_wrist— right wrist camera RGB frames
Metadata
meta/bag_name— source bag file namemeta/instruction— task instruction textmeta/joint_names— ordered list of arm joint namesmeta/state_definition— description of state compositionmeta/obs_dim— observation dimensionmeta/act_dim— action dimension
Current dimensions
In the current version of the dataset:
- arm joint dimension:
14 - hand dimension:
12 - full state/action dimension:
26 - image resolution:
480 x 640 x 3
State definition:
state = [14 arm joints] + [6 left hand] + [6 right hand]
Tasks
Cleaning_tools
Demonstrations related to cleaning tools, object handling, and manipulation sequences.
Sorting_food
Demonstrations related to food sorting and object placement.
Notes
- Each
.bagfile represents one recorded demonstration episode. - Each
.h5file represents one converted episode for easier downstream use. - Raw ROS bags preserve the original recorded streams.
- HDF5 files provide a cleaner format for offline RL, imitation learning, and dataset inspection.
- Task folders are separated to simplify filtering and task-specific experiments.
Citation
If you use this dataset in your work, please cite the dataset repository or reference the associated project.
- Downloads last month
- 20


