RaspberryVitriol commited on
Commit
b94f903
·
verified ·
1 Parent(s): 16d7d50

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +185 -0
README.md ADDED
@@ -0,0 +1,185 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "so101_follower",
29
+ "total_episodes": 50,
30
+ "total_frames": 22449,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:50"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "action": {
43
+ "dtype": "float32",
44
+ "names": [
45
+ "shoulder_pan.pos",
46
+ "shoulder_lift.pos",
47
+ "elbow_flex.pos",
48
+ "wrist_flex.pos",
49
+ "wrist_roll.pos",
50
+ "gripper.pos"
51
+ ],
52
+ "shape": [
53
+ 6
54
+ ]
55
+ },
56
+ "observation.state": {
57
+ "dtype": "float32",
58
+ "names": [
59
+ "shoulder_pan.pos",
60
+ "shoulder_lift.pos",
61
+ "elbow_flex.pos",
62
+ "wrist_flex.pos",
63
+ "wrist_roll.pos",
64
+ "gripper.pos"
65
+ ],
66
+ "shape": [
67
+ 6
68
+ ]
69
+ },
70
+ "observation.images.top_phone": {
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
+ "timestamp": {
94
+ "dtype": "float32",
95
+ "shape": [
96
+ 1
97
+ ],
98
+ "names": null
99
+ },
100
+ "frame_index": {
101
+ "dtype": "int64",
102
+ "shape": [
103
+ 1
104
+ ],
105
+ "names": null
106
+ },
107
+ "episode_index": {
108
+ "dtype": "int64",
109
+ "shape": [
110
+ 1
111
+ ],
112
+ "names": null
113
+ },
114
+ "index": {
115
+ "dtype": "int64",
116
+ "shape": [
117
+ 1
118
+ ],
119
+ "names": null
120
+ },
121
+ "task_index": {
122
+ "dtype": "int64",
123
+ "shape": [
124
+ 1
125
+ ],
126
+ "names": null
127
+ },
128
+ "observation.images.i_mask": {
129
+ "dtype": "video",
130
+ "shape": [
131
+ 3,
132
+ 480,
133
+ 640
134
+ ],
135
+ "names": [
136
+ "channel",
137
+ "height",
138
+ "width"
139
+ ],
140
+ "info": {
141
+ "video.height": 480,
142
+ "video.width": 640,
143
+ "video.codec": "av1",
144
+ "video.pix_fmt": "yuv420p",
145
+ "video.is_depth_map": false,
146
+ "video.fps": 30,
147
+ "video.channels": 3,
148
+ "has_audio": false
149
+ }
150
+ },
151
+ "observation.images.f_mask": {
152
+ "dtype": "video",
153
+ "shape": [
154
+ 3,
155
+ 480,
156
+ 640
157
+ ],
158
+ "names": [
159
+ "channel",
160
+ "height",
161
+ "width"
162
+ ],
163
+ "info": {
164
+ "video.height": 480,
165
+ "video.width": 640,
166
+ "video.codec": "av1",
167
+ "video.pix_fmt": "yuv420p",
168
+ "video.is_depth_map": false,
169
+ "video.fps": 30,
170
+ "video.channels": 3,
171
+ "has_audio": false
172
+ }
173
+ }
174
+ }
175
+ }
176
+ ```
177
+
178
+
179
+ ## Citation
180
+
181
+ **BibTeX:**
182
+
183
+ ```bibtex
184
+ [More Information Needed]
185
+ ```