nimitvasavat commited on
Commit
e242e30
·
verified ·
1 Parent(s): 1b2e439

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
+ - ur5
8
+ - xarm
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": "xarm",
31
+ "total_episodes": 181,
32
+ "total_frames": 25447,
33
+ "total_tasks": 1,
34
+ "total_videos": 362,
35
+ "total_chunks": 1,
36
+ "chunks_size": 1000,
37
+ "fps": 10,
38
+ "splits": {
39
+ "train": "0:181"
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
+ "observation.images.image": {
45
+ "dtype": "video",
46
+ "shape": [
47
+ 480,
48
+ 640,
49
+ 3
50
+ ],
51
+ "names": [
52
+ "height",
53
+ "width",
54
+ "channels"
55
+ ],
56
+ "info": {
57
+ "video.fps": 10.0,
58
+ "video.height": 480,
59
+ "video.width": 640,
60
+ "video.channels": 3,
61
+ "video.codec": "h264",
62
+ "video.pix_fmt": "yuv420p",
63
+ "video.is_depth_map": false,
64
+ "has_audio": false
65
+ }
66
+ },
67
+ "observation.images.wrist_image": {
68
+ "dtype": "video",
69
+ "shape": [
70
+ 480,
71
+ 640,
72
+ 3
73
+ ],
74
+ "names": [
75
+ "height",
76
+ "width",
77
+ "channels"
78
+ ],
79
+ "info": {
80
+ "video.fps": 10.0,
81
+ "video.height": 480,
82
+ "video.width": 640,
83
+ "video.channels": 3,
84
+ "video.codec": "h264",
85
+ "video.pix_fmt": "yuv420p",
86
+ "video.is_depth_map": false,
87
+ "has_audio": false
88
+ }
89
+ },
90
+ "observation.state": {
91
+ "dtype": "float64",
92
+ "shape": [
93
+ 7
94
+ ],
95
+ "names": [
96
+ "j1, j2, j3, j4, j5, j6, gripper"
97
+ ]
98
+ },
99
+ "action": {
100
+ "dtype": "float64",
101
+ "shape": [
102
+ 7
103
+ ],
104
+ "names": [
105
+ " j1, j2, j3, j4, j5, j6, gripper"
106
+ ]
107
+ },
108
+ "absolute_action": {
109
+ "dtype": "float64",
110
+ "shape": [
111
+ 7
112
+ ],
113
+ "names": [
114
+ "x, y, z, r, p, y, gripper"
115
+ ]
116
+ },
117
+ "annotation.human.action.task_description": {
118
+ "dtype": "int64",
119
+ "shape": [
120
+ 1
121
+ ],
122
+ "names": [
123
+ "task"
124
+ ]
125
+ },
126
+ "annotation.human.validity": {
127
+ "dtype": "int64",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": [
132
+ "validity"
133
+ ]
134
+ },
135
+ "next.reward": {
136
+ "dtype": "float64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": [
141
+ "reward"
142
+ ]
143
+ },
144
+ "next.done": {
145
+ "dtype": "bool",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": [
150
+ "done"
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
+ ```