jackschenkman commited on
Commit
d0148ac
Β·
verified Β·
1 Parent(s): e826985

Upload trimmed towel folding dataset

Browse files
README.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - SO-100
8
+ - robotics
9
+ - towel-folding
10
+ - imitation-learning
11
+ size_categories:
12
+ - n<1K
13
+ ---
14
+
15
+ # Trimmed Towel Folding Dataset
16
+
17
+ This dataset contains towel folding demonstrations trimmed to the first fold.
18
+
19
+ ## Dataset Details
20
+
21
+ - **Original Dataset**: [arsenxeno/record-test](https://huggingface.co/datasets/arsenxeno/record-test)
22
+ - **Task**: Towel folding (first fold only)
23
+ - **Robot**: SO-100 with teleoperation
24
+ - **Episodes**: 4
25
+ - **Detection Method**: CLIP-based similarity to reference fold image
26
+
27
+ ## Statistics
28
+
29
+ | Metric | Value |
30
+ |--------|-------|
31
+ | Total Episodes | 4 |
32
+ | Average Original Length | 839 frames |
33
+ | Average Trimmed Length | 438 frames |
34
+ | Average Fold Time | 29.1 seconds |
35
+ | Average Fold Similarity | 0.982 |
36
+
37
+ ## File Structure
38
+
39
+ ```
40
+ videos/
41
+ β”œβ”€β”€ observation.images.front/
42
+ β”‚ β”œβ”€β”€ episode_000000.mp4
43
+ β”‚ β”œβ”€β”€ episode_000001.mp4
44
+ β”‚ └── ...
45
+ ```
46
+
47
+ ## Usage
48
+
49
+ ### Load with Python
50
+
51
+ ```python
52
+ import cv2
53
+ from pathlib import Path
54
+
55
+ # Download dataset
56
+ dataset_path = "path/to/dataset"
57
+
58
+ # Load video
59
+ video_path = Path(dataset_path) / "videos/observation.images.front/episode_000000.mp4"
60
+ cap = cv2.VideoCapture(str(video_path))
61
+ ```
62
+
63
+ ### With LeRobot (if compatible)
64
+
65
+ ```python
66
+ from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
67
+ dataset = LeRobotDataset(repo_id="xenorobotics/towel-fold-trimmed-v17")
68
+ ```
69
+
70
+ ## License
71
+
72
+ MIT License - Same as original dataset
episodes.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "episode_id": "episode_000000",
4
+ "episode_index": 0,
5
+ "original_frames": 900,
6
+ "trimmed_frames": 313,
7
+ "fold_time": 20.8,
8
+ "fold_similarity": 0.97314453125
9
+ },
10
+ {
11
+ "episode_id": "episode_000001",
12
+ "episode_index": 1,
13
+ "original_frames": 771,
14
+ "trimmed_frames": 465,
15
+ "fold_time": 30.933333333333334,
16
+ "fold_similarity": 0.9873046875
17
+ },
18
+ {
19
+ "episode_id": "episode_000002",
20
+ "episode_index": 2,
21
+ "original_frames": 794,
22
+ "trimmed_frames": 513,
23
+ "fold_time": 34.13333333333333,
24
+ "fold_similarity": 0.9814453125
25
+ },
26
+ {
27
+ "episode_id": "episode_000003",
28
+ "episode_index": 3,
29
+ "original_frames": 891,
30
+ "trimmed_frames": 461,
31
+ "fold_time": 30.666666666666668,
32
+ "fold_similarity": 0.98486328125
33
+ }
34
+ ]
videos/chunk-000/observation.images.front/episode_000000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e401c11e8fb151898825c001dbfd2390e7672c1495ed147bc100f9ee141294c0
3
+ size 9499545
videos/chunk-000/observation.images.front/episode_000001.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0de49e344b1119e82b103ba1d82a1d5d9181c5d67b92f3cf233f1fca9a8ec739
3
+ size 13725943
videos/chunk-000/observation.images.front/episode_000002.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b40d1ddf06d0d4893ac2fdf02461b4ce7679fb623441561dd2b180fb0b9c44c
3
+ size 14413512
videos/chunk-000/observation.images.front/episode_000003.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:daaf8abd4b865831080a902aad275d5e0bbee6b6db47bf3c97da4d5174b29d96
3
+ size 13043857