File size: 1,545 Bytes
f95bd4e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
---
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
```
|