hainh22 commited on
Commit
ae5cd9f
·
verified ·
1 Parent(s): db5186b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +192 -0
README.md ADDED
@@ -0,0 +1,192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "ur5",
29
+ "total_episodes": 34,
30
+ "total_frames": 5603,
31
+ "total_tasks": 1,
32
+ "total_videos": 102,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:34"
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
+ "dtype": "float32",
44
+ "shape": [
45
+ 12
46
+ ],
47
+ "names": {
48
+ "motors": [
49
+ "j0",
50
+ "j1",
51
+ "j2",
52
+ "j3",
53
+ "j4",
54
+ "j5",
55
+ "fx",
56
+ "fy",
57
+ "fz",
58
+ "tx",
59
+ "ty",
60
+ "tz"
61
+ ]
62
+ }
63
+ },
64
+ "action": {
65
+ "dtype": "float32",
66
+ "shape": [
67
+ 3
68
+ ],
69
+ "names": {
70
+ "displacement": [
71
+ "dx",
72
+ "dy",
73
+ "dz"
74
+ ]
75
+ }
76
+ },
77
+ "observation.images.cam_front_view": {
78
+ "dtype": "video",
79
+ "shape": [
80
+ 128,
81
+ 128,
82
+ 3
83
+ ],
84
+ "names": [
85
+ "height",
86
+ "width",
87
+ "rgb"
88
+ ],
89
+ "info": {
90
+ "video.fps": 10.0,
91
+ "video.height": 128,
92
+ "video.width": 128,
93
+ "video.channels": 3,
94
+ "video.codec": "h264",
95
+ "video.pix_fmt": "yuv420p",
96
+ "video.is_depth_map": false,
97
+ "has_audio": false
98
+ }
99
+ },
100
+ "observation.images.cam_eye_in_hand": {
101
+ "dtype": "video",
102
+ "shape": [
103
+ 128,
104
+ 128,
105
+ 3
106
+ ],
107
+ "names": [
108
+ "height",
109
+ "width",
110
+ "rgb"
111
+ ],
112
+ "info": {
113
+ "video.fps": 10.0,
114
+ "video.height": 128,
115
+ "video.width": 128,
116
+ "video.channels": 3,
117
+ "video.codec": "h264",
118
+ "video.pix_fmt": "yuv420p",
119
+ "video.is_depth_map": false,
120
+ "has_audio": false
121
+ }
122
+ },
123
+ "observation.images.cam_side_view": {
124
+ "dtype": "video",
125
+ "shape": [
126
+ 128,
127
+ 128,
128
+ 3
129
+ ],
130
+ "names": [
131
+ "height",
132
+ "width",
133
+ "rgb"
134
+ ],
135
+ "info": {
136
+ "video.fps": 10.0,
137
+ "video.height": 128,
138
+ "video.width": 128,
139
+ "video.channels": 3,
140
+ "video.codec": "h264",
141
+ "video.pix_fmt": "yuv420p",
142
+ "video.is_depth_map": false,
143
+ "has_audio": false
144
+ }
145
+ },
146
+ "timestamp": {
147
+ "dtype": "float32",
148
+ "shape": [
149
+ 1
150
+ ],
151
+ "names": null
152
+ },
153
+ "frame_index": {
154
+ "dtype": "int64",
155
+ "shape": [
156
+ 1
157
+ ],
158
+ "names": null
159
+ },
160
+ "episode_index": {
161
+ "dtype": "int64",
162
+ "shape": [
163
+ 1
164
+ ],
165
+ "names": null
166
+ },
167
+ "index": {
168
+ "dtype": "int64",
169
+ "shape": [
170
+ 1
171
+ ],
172
+ "names": null
173
+ },
174
+ "task_index": {
175
+ "dtype": "int64",
176
+ "shape": [
177
+ 1
178
+ ],
179
+ "names": null
180
+ }
181
+ }
182
+ }
183
+ ```
184
+
185
+
186
+ ## Citation
187
+
188
+ **BibTeX:**
189
+
190
+ ```bibtex
191
+ [More Information Needed]
192
+ ```