chocolat-nya/yaskawa-untangle-20260309-144410
Robotics β’ 51.7M β’ Updated β’ 1
Error code: TooBigContentError
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.
This dataset contains 50 episodes of a Yaskawa 7-axis robot performing cable untangling tasks. The data is collected using direct teaching and formatted for LeRobot v3.0.
axis_0 to axis_6: Joint angles in degreesAll images are 640x480 pixels, H.264 encoded.
The actions represent the target joint angles for the next timestep:
action_0 to action_6: Target joint angles in degreeschocolat-nya/yaskawa-untangle-20260309-144410/
βββ data/
β βββ chunk-000/
β βββ file-000.parquet # All episode data (248,420 frames)
βββ meta/
β βββ info.json # Dataset metadata
β βββ stats.json # Statistical information
β βββ tasks.parquet # Task definitions
β βββ episodes/
β βββ chunk-000/
β βββ file-000.parquet # Episode metadata
βββ videos/
βββ observation.images.realsense/
β βββ chunk-000/
β βββ file-000.mp4 # Episode 1
β βββ file-001.mp4 # Episode 2
β βββ ... # Episodes 3-50
βββ observation.images.fixed_cam1/
β βββ chunk-000/
β βββ ... # 50 episodes
βββ observation.images.fixed_cam2/
βββ chunk-000/
βββ ... # 50 episodes
from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
# Load the dataset from Hugging Face Hub
dataset = LeRobotDataset("chocolat-nya/yaskawa-untangle-20260309-144410")
print(f"Total episodes: {dataset.num_episodes}") # 50
print(f"Total frames: {len(dataset)}") # 248,420
# Access a specific episode
episode_0 = dataset.episode(0)
# Get a single frame
frame = dataset[0]
print(frame.keys()) # ['action', 'observation.state', 'observation.images.realsense', ...]
Train an ACT (Action Chunking Transformer) policy:
lerobot-train \
--dataset.repo_id=chocolat-nya/yaskawa-untangle-20260309-144410 \
--policy.type=act \
--output_dir=outputs/train/yaskawa-untangle \
--job_name=yaskawa-untangle \
--policy.device=cuda \
--wandb.enable=true
This dataset is tagged with v3.0 (LeRobot codebase version). The tag was created using:
from huggingface_hub import HfApi
hub_api = HfApi()
hub_api.create_tag(
"chocolat-nya/yaskawa-untangle-20260309-144410",
tag="v3.0",
repo_type="dataset"
)
/dev/video6/dev/video8/dev/video12If you use this dataset in your research, please cite:
@dataset{yaskawa_untangle_2026,
title={Yaskawa Cable Untangling Dataset},
author={chocolat-nya},
year={2026},
publisher={Hugging Face},
howpublished={\url{https://huggingface.co/datasets/chocolat-nya/yaskawa-untangle-20260309-144410}}
}
MIT License
For questions or issues, please open an issue on the Hugging Face dataset page.