Datasets:
Worldscape-MoE Dataset
This repository provides a 20,000-sample subset for unified embodied world-model training: 5,000 samples each for camera control, dual-arm control, dense hand/action-map control, and LIBERO single-arm control.
This release is a subset of the full Worldscape-MoE training collection.
- Project: https://worldscape-moe.com/
- Code: https://github.com/EmbodiedCity/Worldscape-MoE.code
- Model: https://huggingface.co/EmbodiedCity/Worldscape-MoE
- Paper: https://arxiv.org/abs/2607.03964
Download
hf download EmbodiedCity/Worldscape-MoE-Dataset \
--repo-type dataset \
--local-dir datasets/Worldscape-MoE-Dataset
The four modality directories are distributed as compressed archives. Extract them from the dataset root before training or inference:
cd datasets/Worldscape-MoE-Dataset
for archive in archives/*.tar.zst; do
tar --zstd -xf "$archive"
done
This restores data/camera, data/arm, data/action_map, and data/libero
without changing the paths referenced by the metadata files.
Contents
.
βββ README.md
βββ LICENSE
βββ DATASET_SOURCES.md
βββ dataset_info.json
βββ metadata/
β βββ camera.json
β βββ arm.json
β βββ action_map.json
β βββ libero.json
β βββ train_3modal.json
β βββ train_4modal_libero.json
βββ archives/
β βββ worldscape-moe-camera.tar.zst
β βββ worldscape-moe-arm.tar.zst
β βββ worldscape-moe-action-map.tar.zst
β βββ worldscape-moe-libero.tar.zst
βββ stats/{dual_arm_action_stats.json,libero_action_stats.json}
βββ config/wan_civitai_5b.yaml
After extraction, the dataset also contains
data/{camera,arm,action_map,libero}/{media,controls}/. All paths are relative
to the dataset root. train_3modal.json contains 15,000 cases and
train_4modal_libero.json contains all 20,000 cases.
The released camera subset contains 5,000 RealEstate10K (RE10K) samples paired with processed camera trajectories.
LIBERO cases are deterministic 17-frame windows. Multiple windows can share an episode video, so physical media files are deduplicated.
Metadata schema
Every row contains type, file_path, text, and control_type.
- Camera rows use
control_file_pathfor camera poses. - Action-map rows use
action_map_pathfor the dense control video. - Dual-arm and LIBERO rows use
ann_fileandarm_action_key. - Windowed rows can include
start_frame,window_size,video_sample_stride, andvideo_sample_n_frames.
{
"type": "video",
"file_path": "data/libero/media/example.mp4",
"ann_file": "data/libero/controls/example.json",
"text": "put the object in the drawer",
"control_type": "libero",
"arm_action_key": "state",
"start_frame": 12,
"window_size": 17
}
Dual-arm annotations contain 14D joint_action values. LIBERO annotations
contain 7D state values. Their percentile statistics are stored separately.
LIBERO values are normalized before padding to the model's 14D action input.
Use with Worldscape-MoE
DATA_ROOT=datasets/OpenSource_MOE \
bash scripts/wan2.2_fun/train_worldscape_moe_4modal_libero_5b_8gpu.sh
The manifests are training-oriented JSON arrays and the Dataset Viewer is disabled. Load them directly with the Worldscape-MoE data loader.
Reproducibility and validation
The release uses deterministic sampling with seed 42. Exact sample,
unique-file, and byte counts are recorded in dataset_info.json.
python tools/validate_opensource_dataset.py \
datasets/OpenSource_MOE \
--decode-samples-per-modality 8
The validator checks manifest membership, paths, action values and dimensions, camera poses, percentile statistics, action windows, and sampled video decoding.
Sources and license
Collection-level provenance and attribution are listed in
DATASET_SOURCES.md. The dataset is released under the Creative Commons
Attribution 4.0 International license; see LICENSE.
When redistributing or adapting the dataset, cite Worldscape-MoE, retain this
dataset card, and preserve the upstream attributions listed in
DATASET_SOURCES.md.
- Downloads last month
- 12