Anas0711 commited on
Commit
af7596c
·
verified ·
1 Parent(s): ca78785

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +213 -0
README.md ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - groot
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": 1799,
32
+ "total_frames": 483679,
33
+ "total_tasks": 10,
34
+ "total_videos": 5397,
35
+ "total_chunks": 2,
36
+ "chunks_size": 1000,
37
+ "fps": 20,
38
+ "splits": {
39
+ "train": "0:1799"
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.left_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": 20.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.right_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": 20.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.images.wrist_image": {
91
+ "dtype": "video",
92
+ "shape": [
93
+ 480,
94
+ 640,
95
+ 3
96
+ ],
97
+ "names": [
98
+ "height",
99
+ "width",
100
+ "channels"
101
+ ],
102
+ "info": {
103
+ "video.fps": 20.0,
104
+ "video.height": 480,
105
+ "video.width": 640,
106
+ "video.channels": 3,
107
+ "video.codec": "h264",
108
+ "video.pix_fmt": "yuv420p",
109
+ "video.is_depth_map": false,
110
+ "has_audio": false
111
+ }
112
+ },
113
+ "observation.state": {
114
+ "dtype": "float64",
115
+ "shape": [
116
+ 7
117
+ ],
118
+ "names": [
119
+ "j1, j2, j3, j4, j5, j6, gripper"
120
+ ]
121
+ },
122
+ "action": {
123
+ "dtype": "float64",
124
+ "shape": [
125
+ 7
126
+ ],
127
+ "names": [
128
+ "j1, j2, j3, j4, j5, j6, gripper"
129
+ ]
130
+ },
131
+ "annotation.human.action.task_description": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": [
137
+ "task"
138
+ ]
139
+ },
140
+ "annotation.human.validity": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": [
146
+ "validity"
147
+ ]
148
+ },
149
+ "next.reward": {
150
+ "dtype": "float64",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": [
155
+ "reward"
156
+ ]
157
+ },
158
+ "next.done": {
159
+ "dtype": "bool",
160
+ "shape": [
161
+ 1
162
+ ],
163
+ "names": [
164
+ "done"
165
+ ]
166
+ },
167
+ "timestamp": {
168
+ "dtype": "float32",
169
+ "shape": [
170
+ 1
171
+ ],
172
+ "names": null
173
+ },
174
+ "frame_index": {
175
+ "dtype": "int64",
176
+ "shape": [
177
+ 1
178
+ ],
179
+ "names": null
180
+ },
181
+ "episode_index": {
182
+ "dtype": "int64",
183
+ "shape": [
184
+ 1
185
+ ],
186
+ "names": null
187
+ },
188
+ "index": {
189
+ "dtype": "int64",
190
+ "shape": [
191
+ 1
192
+ ],
193
+ "names": null
194
+ },
195
+ "task_index": {
196
+ "dtype": "int64",
197
+ "shape": [
198
+ 1
199
+ ],
200
+ "names": null
201
+ }
202
+ }
203
+ }
204
+ ```
205
+
206
+
207
+ ## Citation
208
+
209
+ **BibTeX:**
210
+
211
+ ```bibtex
212
+ [More Information Needed]
213
+ ```