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.12/site-packages/datasets/packaged_modules/json/json.py", line 257, in _generate_tables
pa_table = paj.read_json(
^^^^^^^^^^^^^^
File "pyarrow/_json.pyx", line 342, in pyarrow._json.read_json
File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
pyarrow.lib.ArrowInvalid: JSON parse error: Column() changed from object to number in row 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 99, in _split_generators
pa_table = next(iter(self._generate_tables(**splits[0].gen_kwargs, allow_full_read=False)))[1]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 271, in _generate_tables
batch = json_encode_fields_in_json_lines(original_batch, json_field_paths)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/utils/json.py", line 111, in json_encode_fields_in_json_lines
examples = [ujson_loads(line) for line in original_batch.splitlines()]
^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/utils/json.py", line 20, in ujson_loads
return pd.io.json.ujson_loads(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: Expected object or value
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(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/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.
World Model Robot Manipulation Dataset
A dataset of real-robot tabletop manipulation trajectories collected for world model training and imitation learning research. The setup follows DROID Dataset. Each trajectory pairs multi-camera video, proprioceptive state/action sequences, natural language task descriptions, and dense reward annotations with pre-extracted visual latents.
Dataset Summary
| Split | Trajectories | Success Rate | Avg. Length |
|---|---|---|---|
| Train | 250 | 44.8% | 118 frames |
| Val | 100 | 44.0% | 106 frames |
| Total | 350 | 44.6% | 115 frames |
Five tabletop manipulation tasks, 50 train / 20 val trajectories per task.
Tasks
| Task ID | Description | Train SR | Val SR |
|---|---|---|---|
bag_our |
Pick up a bag of chips and place it on a green plate | 54% | 60% |
marker_our |
Pick up a marker and place it in a cup/mug | 36% | 30% |
pour_our |
Pick up a cup of beans and place them in a bowl | 34% | 30% |
stack_our |
Pick up a bowl and stack it on top of another bowl | 60% | 60% |
towel_our |
Pick up a towel and place it in a basket | 40% | 40% |
Each task has multiple natural-language paraphrases (e.g. "put the marker in the cup", "put the marker in the mug", "pick up the marker and place it in the cup").
Data Structure
world_model_data_our_50/
βββ annotations/
β βββ train/ {0..249}.json
β βββ val/ {0..99}.json
βββ annotation_rewards/
β βββ train/ {0..249}.json # same schema as annotations, includes reward fields
β βββ val/ {0..99}.json
βββ latents/
β βββ train/ {0..249}_sd3.npz
β βββ val/ {0..99}_sd3.npz
βββ videos/
β βββ train/ {0..249}.mp4
β βββ val/ {0..99}.mp4
βββ norm_stats_recorded.json
βββ norm_stats_relabel.json
Annotation JSON Schema
Each .json file contains one trajectory with the following fields:
| Field | Type | Description |
|---|---|---|
episode_id |
int | Sequential trajectory index within the split |
episode_id_orig |
str | Original episode identifier (e.g. bag_our_003) |
texts |
list[str] | Natural language task descriptions |
text_features |
float[768] | Pre-computed text embedding |
success |
int | Binary success label (1 = task completed) |
video_length |
int | Number of frames in the trajectory (32β334) |
video_path |
str | Relative path to the .mp4 file |
latent_path |
str | Relative path to the latent .npz file |
num_cameras |
int | Always 3 |
states |
float[T][7] | Raw proprioceptive state per frame |
observation.state.cartesian_position |
float[T][6] | End-effector Cartesian pose (x, y, z, rx, ry, rz) |
observation.state.joint_position |
float[T][7] | 7-DOF joint positions |
observation.state.gripper_position |
float[T][1] | Gripper opening |
action.cartesian_position |
float[T][6] | Cartesian position action |
action.joint_position |
float[T][7] | Joint position action |
action.joint_velocity |
float[T][7] | Joint velocity action |
action.gripper_position |
float[T][1] | Gripper action |
reward_progress |
float[T] | Dense progress reward |
reward_success |
float[T] | Success-shaped reward |
reward_binary |
float[T] | Binary reward signal |
Video Format
- Resolution: 960 Γ 192 (three 320 Γ 192 camera views (left, right, wrist) concatenated horizontally)
- Codec: H.264
- Frame rate: 5 fps
- Length: 32β334 frames per trajectory
Visual Latents
Pre-extracted with Stable Diffusion 3 (SD3). Stored as float16 NumPy arrays.
latents.npz β key: "latents"
shape: (3, T, 60, 256)
β β β ββ channel dim
β β ββ spatial tokens
β ββ frames
ββ cameras
Normalization Statistics
norm_stats_recorded.json and norm_stats_relabel.json provide mean/std statistics for the state and actions modalities, suitable for normalizing inputs during training.
Robot Setup
- Robot: Franka Emika Robot arm with parallel-jaw gripper (Robotiq Gripper)
- Cameras: 3 fixed cameras providing left, right, and wrist views
- Control frequency: 5 Hz (matches video frame rate)
Usage Example
import json
import numpy as np
# Load a trajectory
with open("annotations/train/0.json") as f:
traj = json.load(f)
print(traj["texts"]) # ['pick up the bag of chips and place it on the green plate']
print(traj["success"]) # 1
print(traj["video_length"]) # e.g. 112
# Joint positions: shape (T, 7)
joint_pos = np.array(traj["observation.state.joint_position"])
# Actions: shape (T, 7)
actions = np.array(traj["action.joint_position"])
# Visual latents: shape (3, T, 60, 256)
lat = np.load(traj["latent_path"].replace("latents/", "latents/"))["latents"]
# Rewards: shape (T,)
rewards = np.array(traj["reward_progress"])
- Downloads last month
- 1,107