shivubind commited on
Commit
ce8baa9
·
verified ·
1 Parent(s): 383c047

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +210 -0
README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "Unitree_G1_Inspire",
29
+ "total_episodes": 0,
30
+ "total_frames": 0,
31
+ "total_tasks": 0,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 30,
36
+ "splits": {},
37
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
38
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
39
+ "features": {
40
+ "observation.state": {
41
+ "dtype": "float32",
42
+ "shape": [
43
+ 26
44
+ ],
45
+ "names": [
46
+ [
47
+ "kLeftShoulderPitch",
48
+ "kLeftShoulderRoll",
49
+ "kLeftShoulderYaw",
50
+ "kLeftElbow",
51
+ "kLeftWristRoll",
52
+ "kLeftWristPitch",
53
+ "kLeftWristYaw",
54
+ "kRightShoulderPitch",
55
+ "kRightShoulderRoll",
56
+ "kRightShoulderYaw",
57
+ "kRightElbow",
58
+ "kRightWristRoll",
59
+ "kRightWristPitch",
60
+ "kRightWristYaw",
61
+ "kLeftHandPinky",
62
+ "kLeftHandRing",
63
+ "kLeftHandMiddle",
64
+ "kLeftHandIndex",
65
+ "kLeftHandThumbBend",
66
+ "kLeftHandThumbRotation",
67
+ "kRightHandPinky",
68
+ "kRightHandRing",
69
+ "kRightHandMiddle",
70
+ "kRightHandIndex",
71
+ "kRightHandThumbBend",
72
+ "kRightHandThumbRotation"
73
+ ]
74
+ ]
75
+ },
76
+ "action": {
77
+ "dtype": "float32",
78
+ "shape": [
79
+ 26
80
+ ],
81
+ "names": [
82
+ [
83
+ "kLeftShoulderPitch",
84
+ "kLeftShoulderRoll",
85
+ "kLeftShoulderYaw",
86
+ "kLeftElbow",
87
+ "kLeftWristRoll",
88
+ "kLeftWristPitch",
89
+ "kLeftWristYaw",
90
+ "kRightShoulderPitch",
91
+ "kRightShoulderRoll",
92
+ "kRightShoulderYaw",
93
+ "kRightElbow",
94
+ "kRightWristRoll",
95
+ "kRightWristPitch",
96
+ "kRightWristYaw",
97
+ "kLeftHandPinky",
98
+ "kLeftHandRing",
99
+ "kLeftHandMiddle",
100
+ "kLeftHandIndex",
101
+ "kLeftHandThumbBend",
102
+ "kLeftHandThumbRotation",
103
+ "kRightHandPinky",
104
+ "kRightHandRing",
105
+ "kRightHandMiddle",
106
+ "kRightHandIndex",
107
+ "kRightHandThumbBend",
108
+ "kRightHandThumbRotation"
109
+ ]
110
+ ]
111
+ },
112
+ "observation.images.cam_left_high": {
113
+ "dtype": "video",
114
+ "shape": [
115
+ 480,
116
+ 640,
117
+ 3
118
+ ],
119
+ "names": [
120
+ "height",
121
+ "width",
122
+ "channel"
123
+ ]
124
+ },
125
+ "observation.images.cam_right_high": {
126
+ "dtype": "video",
127
+ "shape": [
128
+ 480,
129
+ 640,
130
+ 3
131
+ ],
132
+ "names": [
133
+ "height",
134
+ "width",
135
+ "channel"
136
+ ]
137
+ },
138
+ "observation.images.cam_left_wrist": {
139
+ "dtype": "video",
140
+ "shape": [
141
+ 480,
142
+ 640,
143
+ 3
144
+ ],
145
+ "names": [
146
+ "height",
147
+ "width",
148
+ "channel"
149
+ ]
150
+ },
151
+ "observation.images.cam_right_wrist": {
152
+ "dtype": "video",
153
+ "shape": [
154
+ 480,
155
+ 640,
156
+ 3
157
+ ],
158
+ "names": [
159
+ "height",
160
+ "width",
161
+ "channel"
162
+ ]
163
+ },
164
+ "timestamp": {
165
+ "dtype": "float32",
166
+ "shape": [
167
+ 1
168
+ ],
169
+ "names": null
170
+ },
171
+ "frame_index": {
172
+ "dtype": "int64",
173
+ "shape": [
174
+ 1
175
+ ],
176
+ "names": null
177
+ },
178
+ "episode_index": {
179
+ "dtype": "int64",
180
+ "shape": [
181
+ 1
182
+ ],
183
+ "names": null
184
+ },
185
+ "index": {
186
+ "dtype": "int64",
187
+ "shape": [
188
+ 1
189
+ ],
190
+ "names": null
191
+ },
192
+ "task_index": {
193
+ "dtype": "int64",
194
+ "shape": [
195
+ 1
196
+ ],
197
+ "names": null
198
+ }
199
+ }
200
+ }
201
+ ```
202
+
203
+
204
+ ## Citation
205
+
206
+ **BibTeX:**
207
+
208
+ ```bibtex
209
+ [More Information Needed]
210
+ ```