Upload trimmed towel folding dataset (first fold only) with LeRobot v2.0 compatibility
193305c
verified
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/record-test](https://huggingface.co/datasets/arsenxeno/record-test) | |
- **Task**: Towel folding (first fold only) | |
- **Robot**: SO-100 | |
- **Episodes**: 4 | |
- **Codebase Version**: v2.0 | |
## Statistics | |
| Metric | Value | | |
|--------|-------| | |
| Total Episodes | 4 | | |
| Average Original Length | 839 frames | | |
| Average Trimmed Length | 438 frames | | |
| Average Fold Time | 29.1 seconds | | |
## Usage with LeRobot | |
```python | |
from lerobot.datasets import make_dataset | |
# Load the dataset | |
dataset = make_dataset("xenorobotics/subroutine_1_7") | |
# Use in training | |
# ... your training code here | |
``` | |
## File Structure | |
``` | |
trimmed_dataset/ | |
βββ meta/ | |
β βββ info.json # Dataset metadata | |
β βββ tasks.jsonl # Task definitions | |
β βββ episodes.jsonl # Episode information | |
β βββ stats.json # Data statistics (includes image stats) | |
βββ data/ | |
β βββ chunk-000/ | |
β βββ episode_000000.parquet | |
β βββ episode_000001.parquet | |
β βββ ... | |
βββ videos/ | |
βββ chunk-000/ | |
βββ observation.images.front/ | |
βββ episode_000000.mp4 | |
βββ episode_000001.mp4 | |
βββ ... | |
``` | |