hieu1344 commited on
Commit
6e39e13
·
verified ·
1 Parent(s): 4906523

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +193 -0
README.md ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - omy
8
+ - robotis
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": "v2.1",
30
+ "robot_type": "aiworker",
31
+ "total_episodes": 1,
32
+ "total_frames": 80,
33
+ "total_tasks": 1,
34
+ "total_videos": 3,
35
+ "total_chunks": 1,
36
+ "chunks_size": 1000,
37
+ "fps": 30,
38
+ "splits": {
39
+ "train": "0:1"
40
+ },
41
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
42
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
43
+ "features": {
44
+ "timestamp": {
45
+ "dtype": "float32",
46
+ "shape": [
47
+ 1
48
+ ],
49
+ "names": null
50
+ },
51
+ "frame_index": {
52
+ "dtype": "int64",
53
+ "shape": [
54
+ 1
55
+ ],
56
+ "names": null
57
+ },
58
+ "episode_index": {
59
+ "dtype": "int64",
60
+ "shape": [
61
+ 1
62
+ ],
63
+ "names": null
64
+ },
65
+ "index": {
66
+ "dtype": "int64",
67
+ "shape": [
68
+ 1
69
+ ],
70
+ "names": null
71
+ },
72
+ "task_index": {
73
+ "dtype": "int64",
74
+ "shape": [
75
+ 1
76
+ ],
77
+ "names": null
78
+ },
79
+ "object_poses": {
80
+ "dtype": "float32",
81
+ "names": [
82
+ "x",
83
+ "y",
84
+ "z",
85
+ "rotation"
86
+ ],
87
+ "shape": [
88
+ 6,
89
+ 4
90
+ ]
91
+ },
92
+ "observation.images.cam_wrist": {
93
+ "dtype": "video",
94
+ "names": [
95
+ "height",
96
+ "width",
97
+ "channels"
98
+ ],
99
+ "shape": [
100
+ 480,
101
+ 848,
102
+ 3
103
+ ],
104
+ "info": {
105
+ "video.height": 480,
106
+ "video.width": 848,
107
+ "video.channels": 3,
108
+ "video.codec": "libx264",
109
+ "video.pix_fmt": "yuv420p"
110
+ }
111
+ },
112
+ "observation.images.cam_scene1": {
113
+ "dtype": "video",
114
+ "names": [
115
+ "height",
116
+ "width",
117
+ "channels"
118
+ ],
119
+ "shape": [
120
+ 480,
121
+ 640,
122
+ 3
123
+ ],
124
+ "info": {
125
+ "video.height": 480,
126
+ "video.width": 640,
127
+ "video.channels": 3,
128
+ "video.codec": "libx264",
129
+ "video.pix_fmt": "yuv420p"
130
+ }
131
+ },
132
+ "observation.images.cam_scene2": {
133
+ "dtype": "video",
134
+ "names": [
135
+ "height",
136
+ "width",
137
+ "channels"
138
+ ],
139
+ "shape": [
140
+ 480,
141
+ 640,
142
+ 3
143
+ ],
144
+ "info": {
145
+ "video.height": 480,
146
+ "video.width": 640,
147
+ "video.channels": 3,
148
+ "video.codec": "libx264",
149
+ "video.pix_fmt": "yuv420p"
150
+ }
151
+ },
152
+ "observation.state": {
153
+ "dtype": "float32",
154
+ "names": [
155
+ "joint1",
156
+ "joint2",
157
+ "joint3",
158
+ "joint4",
159
+ "joint5",
160
+ "joint6",
161
+ "rh_r1_joint"
162
+ ],
163
+ "shape": [
164
+ 7
165
+ ]
166
+ },
167
+ "action": {
168
+ "dtype": "float32",
169
+ "names": [
170
+ "joint1",
171
+ "joint2",
172
+ "joint3",
173
+ "joint4",
174
+ "joint5",
175
+ "joint6",
176
+ "rh_r1_joint"
177
+ ],
178
+ "shape": [
179
+ 7
180
+ ]
181
+ }
182
+ }
183
+ }
184
+ ```
185
+
186
+
187
+ ## Citation
188
+
189
+ **BibTeX:**
190
+
191
+ ```bibtex
192
+ [More Information Needed]
193
+ ```