hrhraj commited on
Commit
8a22a37
·
verified ·
1 Parent(s): c7c86a6

Upload README.md with huggingface_hub

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