The dataset viewer is not available for this dataset.
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.
ManiSoft
ManiSoft is a soft-robot manipulation dataset and benchmark for vision-language-action learning. It contains expert demonstrations for four manipulation tasks:
COLL: CollectionALN: AlignmentARR: ArrangementSTK: Stacking
This upload directory currently provides:
assets.tar: simulator assets required for replay and trainingclean/: task data packaged as.tarshards for efficient download and uploaddata_extract.sh: a utility script for recursively extracting all dataset shards
Task Layout in This Repository
The files hosted in the dataset repository are organized as tar shards rather than already-extracted case folders.
.
βββ assets.tar
βββ clean
β βββ ALN
β β βββ train_bottle_0_9.tar
β β βββ train_bottle_10_19.tar
β β βββ eval_bottle_0_9.tar
β β βββ ...
β βββ ARR
β β βββ eval_bottle_0_9.tar
β β βββ ...
β βββ COLL
β β βββ train_pencup_0_9.tar
β β βββ eval_boxdrink_0_9.tar
β β βββ ...
β βββ STK
β βββ train_default_0_9.tar
β βββ eval_default_0_9.tar
β βββ ...
βββ data_extract.sh
For ALN, ARR, and COLL, shard names follow:
<split>_<object_category>_<start_case_id>_<end_case_id>.tar
For STK, shard names follow:
<split>_default_<start_case_id>_<end_case_id>.tar
Extracted Dataset Format
After extraction, each shard restores the original directory structure. A typical case directory looks like this:
clean/
βββ ALN/
βββ train/
β βββ bottle/
β βββ 0/
β βββ environment.yaml
β βββ instructions.txt
β βββ trajectory.pkl
β βββ visual/
βββ eval/
βββ bottle/
βββ 0/
βββ environment.yaml
βββ instructions.txt
βββ trajectory.pkl
βββ visual/
Each case is typically organized by:
<setting>/<task>/<split>/<object_category>/<case_id>/
Common files inside one case:
instructions.txt: language instructions for the manipulation caseenvironment.yaml: scene and task configurationtrajectory.pkl: expert trajectory stored as a time-indexed dictionaryvisual/: visualization assets such as rendered frames or videos
Quick Download Example
If you use the Hugging Face CLI, you can download the dataset to a local directory like this:
hf download JobsWei/ManiSoft --local-dir ./ManiSoft --repo-type dataset
If you only need the benchmark data without simulator assets:
hf download JobsWei/ManiSoft --local-dir ./ManiSoft --repo-type dataset --exclude "assets.tar"
If you only need evaluation shards:
hf download JobsWei/ManiSoft --local-dir ./ManiSoft --repo-type dataset --include "**/eval/**"
data_extract.sh Usage
The repository includes data_extract.sh for recursively finding and extracting all .tar files under a root directory with parallel workers.
Command
bash data_extract.sh <tar_root_dir> <max_processes> <delete_tar_file>
Arguments
tar_root_dir: root directory to recursively search for.tarfilesmax_processes: number of parallel extraction processes, must be a positive integerdelete_tar_file: whether to delete each.tarafter successful extraction0: keep tar files1: delete tar files
Typical Examples
Extract all dataset shards under the downloaded directory and keep the original tar files:
bash data_extract.sh ./ManiSoft 8 0
Extract all dataset shards and delete each tar file after successful extraction:
bash data_extract.sh ./ManiSoft 8 1
Extract only the clean subset:
bash data_extract.sh ./ManiSoft/clean 8 1
What the Script Does
- recursively finds all
.tarfiles undertar_root_dir - extracts them in parallel
- restores files into the original relative paths stored in each tar shard
- optionally removes the source tar files after successful extraction
Recommended Workflow
hf download JobsWei/ManiSoft --local-dir ./ManiSoft --repo-type dataset --exclude "assets.tar"
cp /path/to/data_extract.sh ./ManiSoft/
cd ./ManiSoft
bash data_extract.sh ./clean 8 1
If you also need simulator assets:
tar -xvf assets.tar
Notes
- The extraction script requires a Unix-like shell environment with
bash,find,tar, and standard job control support. - Different shards may expand into the same
train/oreval/directory tree. This is expected. trajectory.pklis the main expert trajectory file used for imitation learning and replay.
- Downloads last month
- 34