tma-hiverobots commited on
Commit
c73dedd
·
verified ·
1 Parent(s): 4b84ddf

Upload README.md with huggingface_hub

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