license: mit | |
task_categories: | |
- robotics | |
tags: | |
- LeRobot | |
- SO-100 | |
- robotics | |
- towel-folding | |
# Trimmed Towel Folding Dataset | |
This dataset contains towel folding demonstrations trimmed to the first fold. | |
## Dataset Details | |
- **Original Dataset**: [arsenxeno/augmented-setup](https://huggingface.co/datasets/arsenxeno/augmented-setup) | |
- **Task**: Towel folding (first fold only) | |
- **Episodes**: 1 | |
- **Video Feeds**: 3 | |
- **Codebase Version**: v2.0 | |
- **Robot Type**: SO-100 | |
## Statistics | |
| Metric | Value | | |
|--------|-------| | |
| Total Episodes | 1 | | |
| Total Video Feeds | 3 | | |
| Average Original Length | 709 frames | | |
| Average Trimmed Length | 338 frames | | |
| Average Fold Time | 22.5 seconds | | |
## Usage with LeRobot | |
```python | |
from lerobot.datasets import make_dataset | |
# Load the dataset | |
dataset = make_dataset("xenorobotics/augmented-1") | |
# Access different video streams | |
front_videos = dataset["observation.images.front"] | |
# If available: left_videos = dataset["observation.images.left"] | |
``` | |
## Dataset Structure | |
``` | |
. | |
βββ data/ | |
β βββ chunk-000/ | |
β βββ episode_000000.parquet | |
β βββ episode_000001.parquet | |
β βββ ... | |
βββ videos/ | |
β βββ chunk-000/ | |
β βββ observation.images.front/ | |
β β βββ episode_000000.mp4 | |
β β βββ ... | |
β βββ [other video feeds]/ | |
βββ meta/ | |
β βββ info.json | |
β βββ episodes.jsonl | |
β βββ tasks.jsonl | |
β βββ stats.json | |
βββ README.md | |
``` | |