aposadasn commited on
Commit
3699038
·
verified ·
1 Parent(s): 69a9ef6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +195 -0
README.md ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v2.1",
28
+ "robot_type": "multi_robot",
29
+ "total_episodes": 10,
30
+ "total_frames": 6266,
31
+ "total_tasks": 1,
32
+ "total_videos": 20,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:10"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "observation.state": {
43
+ "shape": [
44
+ 23
45
+ ],
46
+ "dtype": "float32",
47
+ "names": [
48
+ "right_xarm7_joint_0",
49
+ "right_xarm7_joint_1",
50
+ "right_xarm7_joint_2",
51
+ "right_xarm7_joint_3",
52
+ "right_xarm7_joint_4",
53
+ "right_xarm7_joint_5",
54
+ "right_xarm7_joint_6",
55
+ "leap_joint_0",
56
+ "leap_joint_1",
57
+ "leap_joint_2",
58
+ "leap_joint_3",
59
+ "leap_joint_4",
60
+ "leap_joint_5",
61
+ "leap_joint_6",
62
+ "leap_joint_7",
63
+ "leap_joint_8",
64
+ "leap_joint_9",
65
+ "leap_joint_10",
66
+ "leap_joint_11",
67
+ "leap_joint_12",
68
+ "leap_joint_13",
69
+ "leap_joint_14",
70
+ "leap_joint_15"
71
+ ]
72
+ },
73
+ "action": {
74
+ "shape": [
75
+ 22
76
+ ],
77
+ "dtype": "float32",
78
+ "names": [
79
+ "right_xarm7_x",
80
+ "right_xarm7_y",
81
+ "right_xarm7_z",
82
+ "right_xarm7_roll",
83
+ "right_xarm7_pitch",
84
+ "right_xarm7_yaw",
85
+ "leap_cmd_0",
86
+ "leap_cmd_1",
87
+ "leap_cmd_2",
88
+ "leap_cmd_3",
89
+ "leap_cmd_4",
90
+ "leap_cmd_5",
91
+ "leap_cmd_6",
92
+ "leap_cmd_7",
93
+ "leap_cmd_8",
94
+ "leap_cmd_9",
95
+ "leap_cmd_10",
96
+ "leap_cmd_11",
97
+ "leap_cmd_12",
98
+ "leap_cmd_13",
99
+ "leap_cmd_14",
100
+ "leap_cmd_15"
101
+ ]
102
+ },
103
+ "observation.images.front": {
104
+ "dtype": "video",
105
+ "shape": [
106
+ 480,
107
+ 640,
108
+ 3
109
+ ],
110
+ "names": [
111
+ "height",
112
+ "width",
113
+ "channels"
114
+ ],
115
+ "info": {
116
+ "video.height": 480,
117
+ "video.width": 640,
118
+ "video.codec": "av1",
119
+ "video.pix_fmt": "yuv420p",
120
+ "video.is_depth_map": false,
121
+ "video.fps": 30,
122
+ "video.channels": 3,
123
+ "has_audio": false
124
+ }
125
+ },
126
+ "observation.images.overhead": {
127
+ "dtype": "video",
128
+ "shape": [
129
+ 480,
130
+ 640,
131
+ 3
132
+ ],
133
+ "names": [
134
+ "height",
135
+ "width",
136
+ "channels"
137
+ ],
138
+ "info": {
139
+ "video.height": 480,
140
+ "video.width": 640,
141
+ "video.codec": "av1",
142
+ "video.pix_fmt": "yuv420p",
143
+ "video.is_depth_map": false,
144
+ "video.fps": 30,
145
+ "video.channels": 3,
146
+ "has_audio": false
147
+ }
148
+ },
149
+ "timestamp": {
150
+ "dtype": "float32",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ },
156
+ "frame_index": {
157
+ "dtype": "int64",
158
+ "shape": [
159
+ 1
160
+ ],
161
+ "names": null
162
+ },
163
+ "episode_index": {
164
+ "dtype": "int64",
165
+ "shape": [
166
+ 1
167
+ ],
168
+ "names": null
169
+ },
170
+ "index": {
171
+ "dtype": "int64",
172
+ "shape": [
173
+ 1
174
+ ],
175
+ "names": null
176
+ },
177
+ "task_index": {
178
+ "dtype": "int64",
179
+ "shape": [
180
+ 1
181
+ ],
182
+ "names": null
183
+ }
184
+ }
185
+ }
186
+ ```
187
+
188
+
189
+ ## Citation
190
+
191
+ **BibTeX:**
192
+
193
+ ```bibtex
194
+ [More Information Needed]
195
+ ```