File size: 749 Bytes
a8032eb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Trimmed Towel Folding Dataset

This dataset contains trimmed versions of towel folding episodes, cut at the first fold detection.

## Source
- Original dataset: arsenxeno/record-test
- Trimming method: CLIP-based fold detection

## Statistics
- Total episodes: 0
- Average trim point: Frame nan (nan seconds)
- Average detection confidence: nan

## Structure
```
videos/
  └── trimmed episode videos (.mp4)
data/
  └── episode_data.parquet (robot state data)
metadata.json (trimming information)
stats.json (dataset statistics)
```

## Usage with LeRobot

```python
from lerobot.common.datasets.lerobot_dataset import LeRobotDataset

dataset = LeRobotDataset(
    repo_id="xenorobotics/new-7",
    root="data",
    split="train"
)
```