hrhraj commited on
Commit
3cfdafe
·
verified ·
1 Parent(s): 0868818

Upload README.md with huggingface_hub

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