furkanbsk commited on
Commit
6c4ceec
·
verified ·
1 Parent(s): 9096cc3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +187 -0
README.md ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - robotics
8
+ - manipulation
9
+ - pick-and-place
10
+ - so101
11
+ - revel-hackathlon
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": "so101_follower",
34
+ "total_episodes": 2,
35
+ "total_frames": 3561,
36
+ "total_tasks": 1,
37
+ "total_videos": 4,
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
+ "shoulder_pan.pos",
54
+ "shoulder_lift.pos",
55
+ "elbow_flex.pos",
56
+ "wrist_flex.pos",
57
+ "wrist_roll.pos",
58
+ "gripper.pos"
59
+ ]
60
+ },
61
+ "observation.state": {
62
+ "dtype": "float32",
63
+ "shape": [
64
+ 6
65
+ ],
66
+ "names": [
67
+ "shoulder_pan.pos",
68
+ "shoulder_lift.pos",
69
+ "elbow_flex.pos",
70
+ "wrist_flex.pos",
71
+ "wrist_roll.pos",
72
+ "gripper.pos"
73
+ ]
74
+ },
75
+ "observation.images.front": {
76
+ "dtype": "video",
77
+ "shape": [
78
+ 480,
79
+ 640,
80
+ 3
81
+ ],
82
+ "names": [
83
+ "height",
84
+ "width",
85
+ "channels"
86
+ ],
87
+ "video_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.0,
94
+ "video.channels": 3,
95
+ "has_audio": false
96
+ },
97
+ "info": {
98
+ "video.height": 480,
99
+ "video.width": 640,
100
+ "video.codec": "av1",
101
+ "video.pix_fmt": "yuv420p",
102
+ "video.is_depth_map": false,
103
+ "video.fps": 30,
104
+ "video.channels": 3,
105
+ "has_audio": false
106
+ }
107
+ },
108
+ "observation.images.wrist": {
109
+ "dtype": "video",
110
+ "shape": [
111
+ 480,
112
+ 640,
113
+ 3
114
+ ],
115
+ "names": [
116
+ "height",
117
+ "width",
118
+ "channels"
119
+ ],
120
+ "video_info": {
121
+ "video.height": 480,
122
+ "video.width": 640,
123
+ "video.codec": "av1",
124
+ "video.pix_fmt": "yuv420p",
125
+ "video.is_depth_map": false,
126
+ "video.fps": 30.0,
127
+ "video.channels": 3,
128
+ "has_audio": false
129
+ },
130
+ "info": {
131
+ "video.height": 480,
132
+ "video.width": 640,
133
+ "video.codec": "av1",
134
+ "video.pix_fmt": "yuv420p",
135
+ "video.is_depth_map": false,
136
+ "video.fps": 30,
137
+ "video.channels": 3,
138
+ "has_audio": false
139
+ }
140
+ },
141
+ "timestamp": {
142
+ "dtype": "float32",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ },
148
+ "frame_index": {
149
+ "dtype": "int64",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "names": null
154
+ },
155
+ "episode_index": {
156
+ "dtype": "int64",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "names": null
161
+ },
162
+ "index": {
163
+ "dtype": "int64",
164
+ "shape": [
165
+ 1
166
+ ],
167
+ "names": null
168
+ },
169
+ "task_index": {
170
+ "dtype": "int64",
171
+ "shape": [
172
+ 1
173
+ ],
174
+ "names": null
175
+ }
176
+ }
177
+ }
178
+ ```
179
+
180
+
181
+ ## Citation
182
+
183
+ **BibTeX:**
184
+
185
+ ```bibtex
186
+ [More Information Needed]
187
+ ```