yjh12 commited on
Commit
f1eec30
·
verified ·
1 Parent(s): 564b5a4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +195 -0
README.md ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - LeRobot
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": 1,
31
+ "total_frames": 10,
32
+ "total_tasks": 1,
33
+ "total_videos": 2,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 10,
37
+ "splits": {
38
+ "train": "0:1"
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
+ "image": {
44
+ "dtype": "video",
45
+ "shape": [
46
+ 480,
47
+ 640,
48
+ 3
49
+ ],
50
+ "names": [
51
+ "height",
52
+ "width",
53
+ "channel"
54
+ ],
55
+ "info": {
56
+ "video.height": 480,
57
+ "video.width": 640,
58
+ "video.codec": "mpeg4",
59
+ "video.pix_fmt": "yuv420p",
60
+ "video.is_depth_map": false,
61
+ "video.fps": 10,
62
+ "video.channels": 3,
63
+ "has_audio": false
64
+ }
65
+ },
66
+ "wrist_image": {
67
+ "dtype": "video",
68
+ "shape": [
69
+ 480,
70
+ 640,
71
+ 3
72
+ ],
73
+ "names": [
74
+ "height",
75
+ "width",
76
+ "channel"
77
+ ],
78
+ "info": {
79
+ "video.height": 480,
80
+ "video.width": 640,
81
+ "video.codec": "mpeg4",
82
+ "video.pix_fmt": "yuv420p",
83
+ "video.is_depth_map": false,
84
+ "video.fps": 10,
85
+ "video.channels": 3,
86
+ "has_audio": false
87
+ }
88
+ },
89
+ "joint.state": {
90
+ "dtype": "float32",
91
+ "shape": [
92
+ 7
93
+ ],
94
+ "names": [
95
+ "motor_0",
96
+ "motor_1",
97
+ "motor_2",
98
+ "motor_3",
99
+ "motor_4",
100
+ "motor_5",
101
+ "gripper"
102
+ ]
103
+ },
104
+ "joint.action": {
105
+ "dtype": "float32",
106
+ "shape": [
107
+ 7
108
+ ],
109
+ "names": [
110
+ "motor_0",
111
+ "motor_1",
112
+ "motor_2",
113
+ "motor_3",
114
+ "motor_4",
115
+ "motor_5",
116
+ "gripper"
117
+ ]
118
+ },
119
+ "end.state": {
120
+ "dtype": "float32",
121
+ "shape": [
122
+ 7
123
+ ],
124
+ "names": [
125
+ "x",
126
+ "y",
127
+ "z",
128
+ "dx",
129
+ "dy",
130
+ "dz",
131
+ "gripper"
132
+ ]
133
+ },
134
+ "end.action": {
135
+ "dtype": "float32",
136
+ "shape": [
137
+ 7
138
+ ],
139
+ "names": [
140
+ "x",
141
+ "y",
142
+ "z",
143
+ "dx",
144
+ "dy",
145
+ "dz",
146
+ "gripper"
147
+ ]
148
+ },
149
+ "timestamp": {
150
+ "dtype": "float32",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ },
156
+ "frame_index": {
157
+ "dtype": "int64",
158
+ "shape": [
159
+ 1
160
+ ],
161
+ "names": null
162
+ },
163
+ "episode_index": {
164
+ "dtype": "int64",
165
+ "shape": [
166
+ 1
167
+ ],
168
+ "names": null
169
+ },
170
+ "index": {
171
+ "dtype": "int64",
172
+ "shape": [
173
+ 1
174
+ ],
175
+ "names": null
176
+ },
177
+ "task_index": {
178
+ "dtype": "int64",
179
+ "shape": [
180
+ 1
181
+ ],
182
+ "names": null
183
+ }
184
+ }
185
+ }
186
+ ```
187
+
188
+
189
+ ## Citation
190
+
191
+ **BibTeX:**
192
+
193
+ ```bibtex
194
+ [More Information Needed]
195
+ ```