Ahi-Yu commited on
Commit
c2c812f
·
verified ·
1 Parent(s): abd6051

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +168 -164
README.md CHANGED
@@ -1,165 +1,169 @@
1
- ---
2
- license: apache-2.0
3
- task_categories:
4
- - robotics
5
- tags:
6
- - LeRobot
7
- - so100
8
- - pengrip
9
- - pi0
10
- configs:
11
- - config_name: default
12
- data_files: data/*/*.parquet
13
- ---
14
-
15
- This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
16
-
17
- ## Dataset Description
18
-
19
-
20
-
21
- - **Homepage:** [More Information Needed]
22
- - **Paper:** [More Information Needed]
23
- - **License:** apache-2.0
24
-
25
- ## Dataset Structure
26
-
27
- [meta/info.json](meta/info.json):
28
- ```json
29
- {
30
- "codebase_version": "v2.1",
31
- "robot_type": "so100",
32
- "total_episodes": 50,
33
- "total_frames": 14694,
34
- "total_tasks": 1,
35
- "total_videos": 100,
36
- "total_chunks": 1,
37
- "chunks_size": 1000,
38
- "fps": 30,
39
- "splits": {
40
- "train": "0:50"
41
- },
42
- "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
43
- "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
44
- "features": {
45
- "action": {
46
- "dtype": "float32",
47
- "shape": [
48
- 6
49
- ],
50
- "names": [
51
- "main_shoulder_pan",
52
- "main_shoulder_lift",
53
- "main_elbow_flex",
54
- "main_wrist_flex",
55
- "main_wrist_roll",
56
- "main_gripper"
57
- ]
58
- },
59
- "observation.state": {
60
- "dtype": "float32",
61
- "shape": [
62
- 6
63
- ],
64
- "names": [
65
- "main_shoulder_pan",
66
- "main_shoulder_lift",
67
- "main_elbow_flex",
68
- "main_wrist_flex",
69
- "main_wrist_roll",
70
- "main_gripper"
71
- ]
72
- },
73
- "observation.images.front": {
74
- "dtype": "video",
75
- "shape": [
76
- 480,
77
- 640,
78
- 3
79
- ],
80
- "names": [
81
- "height",
82
- "width",
83
- "channels"
84
- ],
85
- "info": {
86
- "video.height": 480,
87
- "video.width": 640,
88
- "video.codec": "av1",
89
- "video.pix_fmt": "yuv420p",
90
- "video.is_depth_map": false,
91
- "video.fps": 30,
92
- "video.channels": 3,
93
- "has_audio": false
94
- }
95
- },
96
- "observation.images.wrist": {
97
- "dtype": "video",
98
- "shape": [
99
- 480,
100
- 640,
101
- 3
102
- ],
103
- "names": [
104
- "height",
105
- "width",
106
- "channels"
107
- ],
108
- "info": {
109
- "video.height": 480,
110
- "video.width": 640,
111
- "video.codec": "av1",
112
- "video.pix_fmt": "yuv420p",
113
- "video.is_depth_map": false,
114
- "video.fps": 30,
115
- "video.channels": 3,
116
- "has_audio": false
117
- }
118
- },
119
- "timestamp": {
120
- "dtype": "float32",
121
- "shape": [
122
- 1
123
- ],
124
- "names": null
125
- },
126
- "frame_index": {
127
- "dtype": "int64",
128
- "shape": [
129
- 1
130
- ],
131
- "names": null
132
- },
133
- "episode_index": {
134
- "dtype": "int64",
135
- "shape": [
136
- 1
137
- ],
138
- "names": null
139
- },
140
- "index": {
141
- "dtype": "int64",
142
- "shape": [
143
- 1
144
- ],
145
- "names": null
146
- },
147
- "task_index": {
148
- "dtype": "int64",
149
- "shape": [
150
- 1
151
- ],
152
- "names": null
153
- }
154
- }
155
- }
156
- ```
157
-
158
-
159
- ## Citation
160
-
161
- **BibTeX:**
162
-
163
- ```bibtex
164
- [More Information Needed]
 
 
 
 
165
  ```
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ configs:
8
+ - config_name: default
9
+ data_files: data/*/*.parquet
10
+ ---
11
+
12
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
13
+
14
+ ## Dataset Description
15
+
16
+
17
+
18
+ - **Homepage:** [More Information Needed]
19
+ - **Paper:** [More Information Needed]
20
+ - **License:** apache-2.0
21
+
22
+ ## Dataset Structure
23
+
24
+ [meta/info.json](meta/info.json):
25
+ ```json
26
+ {
27
+ "codebase_version": "v3.0",
28
+ "robot_type": "so100",
29
+ "total_episodes": 50,
30
+ "total_frames": 14694,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "fps": 30,
34
+ "splits": {
35
+ "train": "0:50"
36
+ },
37
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
38
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
39
+ "features": {
40
+ "action": {
41
+ "dtype": "float32",
42
+ "shape": [
43
+ 6
44
+ ],
45
+ "names": [
46
+ "main_shoulder_pan",
47
+ "main_shoulder_lift",
48
+ "main_elbow_flex",
49
+ "main_wrist_flex",
50
+ "main_wrist_roll",
51
+ "main_gripper"
52
+ ],
53
+ "fps": 30
54
+ },
55
+ "observation.state": {
56
+ "dtype": "float32",
57
+ "shape": [
58
+ 6
59
+ ],
60
+ "names": [
61
+ "main_shoulder_pan",
62
+ "main_shoulder_lift",
63
+ "main_elbow_flex",
64
+ "main_wrist_flex",
65
+ "main_wrist_roll",
66
+ "main_gripper"
67
+ ],
68
+ "fps": 30
69
+ },
70
+ "observation.images.front": {
71
+ "dtype": "video",
72
+ "shape": [
73
+ 480,
74
+ 640,
75
+ 3
76
+ ],
77
+ "names": [
78
+ "height",
79
+ "width",
80
+ "channels"
81
+ ],
82
+ "info": {
83
+ "video.height": 480,
84
+ "video.width": 640,
85
+ "video.codec": "av1",
86
+ "video.pix_fmt": "yuv420p",
87
+ "video.is_depth_map": false,
88
+ "video.fps": 30,
89
+ "video.channels": 3,
90
+ "has_audio": false
91
+ }
92
+ },
93
+ "observation.images.wrist": {
94
+ "dtype": "video",
95
+ "shape": [
96
+ 480,
97
+ 640,
98
+ 3
99
+ ],
100
+ "names": [
101
+ "height",
102
+ "width",
103
+ "channels"
104
+ ],
105
+ "info": {
106
+ "video.height": 480,
107
+ "video.width": 640,
108
+ "video.codec": "av1",
109
+ "video.pix_fmt": "yuv420p",
110
+ "video.is_depth_map": false,
111
+ "video.fps": 30,
112
+ "video.channels": 3,
113
+ "has_audio": false
114
+ }
115
+ },
116
+ "timestamp": {
117
+ "dtype": "float32",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": null,
122
+ "fps": 30
123
+ },
124
+ "frame_index": {
125
+ "dtype": "int64",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null,
130
+ "fps": 30
131
+ },
132
+ "episode_index": {
133
+ "dtype": "int64",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null,
138
+ "fps": 30
139
+ },
140
+ "index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null,
146
+ "fps": 30
147
+ },
148
+ "task_index": {
149
+ "dtype": "int64",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "names": null,
154
+ "fps": 30
155
+ }
156
+ },
157
+ "data_files_size_in_mb": 100,
158
+ "video_files_size_in_mb": 200
159
+ }
160
+ ```
161
+
162
+
163
+ ## Citation
164
+
165
+ **BibTeX:**
166
+
167
+ ```bibtex
168
+ [More Information Needed]
169
  ```