Ofiroz91 commited on
Commit
d5ed6c7
·
verified ·
1 Parent(s): 1d41c97

Upload README.md with huggingface_hub

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