iantc104 commited on
Commit
40a0287
·
verified ·
1 Parent(s): 652d365

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +198 -0
README.md ADDED
@@ -0,0 +1,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - ur5
8
+ configs:
9
+ - config_name: default
10
+ data_files: data/*/*.parquet
11
+ ---
12
+
13
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
14
+
15
+ ## Dataset Description
16
+
17
+
18
+
19
+ - **Homepage:** [More Information Needed]
20
+ - **Paper:** [More Information Needed]
21
+ - **License:** apache-2.0
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v2.1",
29
+ "robot_type": "ur5",
30
+ "total_episodes": 3,
31
+ "total_frames": 783,
32
+ "total_tasks": 1,
33
+ "total_videos": 6,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 20,
37
+ "splits": {
38
+ "train": "0:3"
39
+ },
40
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
41
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
42
+ "features": {
43
+ "base_rgb": {
44
+ "dtype": "video",
45
+ "shape": [
46
+ 240,
47
+ 320,
48
+ 3
49
+ ],
50
+ "names": [
51
+ "height",
52
+ "width",
53
+ "channel"
54
+ ],
55
+ "info": {
56
+ "video.fps": 20.0,
57
+ "video.height": 240,
58
+ "video.width": 320,
59
+ "video.channels": 3,
60
+ "video.codec": "av1",
61
+ "video.pix_fmt": "yuv420p",
62
+ "video.is_depth_map": false,
63
+ "has_audio": false
64
+ }
65
+ },
66
+ "wrist_rgb": {
67
+ "dtype": "video",
68
+ "shape": [
69
+ 240,
70
+ 320,
71
+ 3
72
+ ],
73
+ "names": [
74
+ "height",
75
+ "width",
76
+ "channel"
77
+ ],
78
+ "info": {
79
+ "video.fps": 20.0,
80
+ "video.height": 240,
81
+ "video.width": 320,
82
+ "video.channels": 3,
83
+ "video.codec": "av1",
84
+ "video.pix_fmt": "yuv420p",
85
+ "video.is_depth_map": false,
86
+ "has_audio": false
87
+ }
88
+ },
89
+ "joints": {
90
+ "dtype": "float32",
91
+ "shape": [
92
+ 6
93
+ ],
94
+ "names": [
95
+ "state"
96
+ ]
97
+ },
98
+ "gripper": {
99
+ "dtype": "float32",
100
+ "shape": [
101
+ 1
102
+ ],
103
+ "names": [
104
+ "state"
105
+ ]
106
+ },
107
+ "actions": {
108
+ "dtype": "float32",
109
+ "shape": [
110
+ 7
111
+ ],
112
+ "names": [
113
+ "actions"
114
+ ]
115
+ },
116
+ "tcp_pose": {
117
+ "dtype": "float32",
118
+ "shape": [
119
+ 6
120
+ ],
121
+ "names": [
122
+ "state"
123
+ ]
124
+ },
125
+ "target_tcp_pose": {
126
+ "dtype": "float32",
127
+ "shape": [
128
+ 6
129
+ ],
130
+ "names": [
131
+ "actions"
132
+ ]
133
+ },
134
+ "tcp_speed": {
135
+ "dtype": "float32",
136
+ "shape": [
137
+ 6
138
+ ],
139
+ "names": [
140
+ "state"
141
+ ]
142
+ },
143
+ "target_tcp_speed": {
144
+ "dtype": "float32",
145
+ "shape": [
146
+ 6
147
+ ],
148
+ "names": [
149
+ "actions"
150
+ ]
151
+ },
152
+ "timestamp": {
153
+ "dtype": "float32",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ },
159
+ "frame_index": {
160
+ "dtype": "int64",
161
+ "shape": [
162
+ 1
163
+ ],
164
+ "names": null
165
+ },
166
+ "episode_index": {
167
+ "dtype": "int64",
168
+ "shape": [
169
+ 1
170
+ ],
171
+ "names": null
172
+ },
173
+ "index": {
174
+ "dtype": "int64",
175
+ "shape": [
176
+ 1
177
+ ],
178
+ "names": null
179
+ },
180
+ "task_index": {
181
+ "dtype": "int64",
182
+ "shape": [
183
+ 1
184
+ ],
185
+ "names": null
186
+ }
187
+ }
188
+ }
189
+ ```
190
+
191
+
192
+ ## Citation
193
+
194
+ **BibTeX:**
195
+
196
+ ```bibtex
197
+ [More Information Needed]
198
+ ```