naavox commited on
Commit
69fe98b
·
verified ·
1 Parent(s): 1717709

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
+ - LeRobot
8
+ - robotics
9
+ configs:
10
+ - config_name: default
11
+ data_files: data/*/*.parquet
12
+ ---
13
+
14
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
15
+
16
+ ## Dataset Description
17
+
18
+
19
+
20
+ - **Homepage:** [More Information Needed]
21
+ - **Paper:** [More Information Needed]
22
+ - **License:** apache-2.0
23
+
24
+ ## Dataset Structure
25
+
26
+ [meta/info.json](meta/info.json):
27
+ ```json
28
+ {
29
+ "codebase_version": "v3.0",
30
+ "robot_type": "stringman",
31
+ "total_episodes": 17,
32
+ "total_frames": 10529,
33
+ "total_tasks": 1,
34
+ "chunks_size": 1000,
35
+ "data_files_size_in_mb": 100,
36
+ "video_files_size_in_mb": 500,
37
+ "fps": 30,
38
+ "splits": {
39
+ "train": "0:17"
40
+ },
41
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
42
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
43
+ "features": {
44
+ "action": {
45
+ "dtype": "float32",
46
+ "shape": [
47
+ 5
48
+ ],
49
+ "names": [
50
+ "gantry_pos_x",
51
+ "gantry_pos_y",
52
+ "gantry_pos_z",
53
+ "winch_line_length",
54
+ "finger_angle"
55
+ ]
56
+ },
57
+ "observation.state": {
58
+ "dtype": "float32",
59
+ "shape": [
60
+ 10
61
+ ],
62
+ "names": [
63
+ "gantry_pos_x",
64
+ "gantry_pos_y",
65
+ "gantry_pos_z",
66
+ "winch_line_length",
67
+ "finger_angle",
68
+ "gripper_imu_rot_x",
69
+ "gripper_imu_rot_y",
70
+ "gripper_imu_rot_z",
71
+ "laser_rangefinder",
72
+ "finger_pad_voltage"
73
+ ]
74
+ },
75
+ "observation.images.anchor_camera_0": {
76
+ "dtype": "video",
77
+ "shape": [
78
+ 360,
79
+ 640,
80
+ 3
81
+ ],
82
+ "names": [
83
+ "height",
84
+ "width",
85
+ "channels"
86
+ ],
87
+ "info": {
88
+ "video.height": 360,
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.anchor_camera_1": {
99
+ "dtype": "video",
100
+ "shape": [
101
+ 360,
102
+ 640,
103
+ 3
104
+ ],
105
+ "names": [
106
+ "height",
107
+ "width",
108
+ "channels"
109
+ ],
110
+ "info": {
111
+ "video.height": 360,
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_camera": {
122
+ "dtype": "video",
123
+ "shape": [
124
+ 360,
125
+ 640,
126
+ 3
127
+ ],
128
+ "names": [
129
+ "height",
130
+ "width",
131
+ "channels"
132
+ ],
133
+ "info": {
134
+ "video.height": 360,
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
+ ```