aliberts HF staff commited on
Commit
2812a39
1 Parent(s): c9c7e87

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +175 -76
README.md CHANGED
@@ -1,16 +1,30 @@
1
  ---
 
2
  task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
 
 
 
6
  ---
 
7
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
8
 
9
- [meta/info.json](meta/info.json)
 
 
 
 
 
 
 
 
 
 
10
  ```json
11
  {
12
  "codebase_version": "v2.0",
13
- "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
14
  "robot_type": "unknown",
15
  "total_episodes": 102,
16
  "total_frames": 7490,
@@ -22,88 +36,173 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
22
  "splits": {
23
  "train": "0:102"
24
  },
25
- "keys": [
26
- "observation.state",
27
- "action"
28
- ],
29
- "video_keys": [
30
- "observation.images.hand_image",
31
- "observation.images.image2",
32
- "observation.images.image"
33
- ],
34
- "image_keys": [],
35
- "shapes": {
36
- "observation.state": 8,
37
- "action": 7,
38
  "observation.images.hand_image": {
39
- "width": 224,
40
- "height": 224,
41
- "channels": 3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  },
43
  "observation.images.image2": {
44
- "width": 224,
45
- "height": 224,
46
- "channels": 3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  },
48
  "observation.images.image": {
49
- "width": 224,
50
- "height": 224,
51
- "channels": 3
52
- }
53
- },
54
- "names": {
55
- "observation.state": [
56
- "motor_0",
57
- "motor_1",
58
- "motor_2",
59
- "motor_3",
60
- "motor_4",
61
- "motor_5",
62
- "motor_6",
63
- "motor_7"
64
- ],
65
- "action": [
66
- "motor_0",
67
- "motor_1",
68
- "motor_2",
69
- "motor_3",
70
- "motor_4",
71
- "motor_5",
72
- "motor_6"
73
- ]
74
- },
75
- "videos": {
76
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
77
- "observation.images.hand_image": {
78
- "video.fps": 10.0,
79
- "video.width": 224,
80
- "video.height": 224,
81
- "video.channels": 3,
82
- "video.codec": "av1",
83
- "video.pix_fmt": "yuv420p",
84
- "video.is_depth_map": false,
85
- "has_audio": false
86
  },
87
- "observation.images.image2": {
88
- "video.fps": 10.0,
89
- "video.width": 224,
90
- "video.height": 224,
91
- "video.channels": 3,
92
- "video.codec": "av1",
93
- "video.pix_fmt": "yuv420p",
94
- "video.is_depth_map": false,
95
- "has_audio": false
96
  },
97
- "observation.images.image": {
98
- "video.fps": 10.0,
99
- "video.width": 224,
100
- "video.height": 224,
101
- "video.channels": 3,
102
- "video.codec": "av1",
103
- "video.pix_fmt": "yuv420p",
104
- "video.is_depth_map": false,
105
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  }
107
  }
108
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  ```
 
1
  ---
2
+ license: cc-by-4.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:** cc-by-4.0
21
+
22
+ ## Dataset Structure
23
+
24
+ [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
  "codebase_version": "v2.0",
 
28
  "robot_type": "unknown",
29
  "total_episodes": 102,
30
  "total_frames": 7490,
 
36
  "splits": {
37
  "train": "0:102"
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.images.hand_image": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 224,
46
+ 224,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "video_info": {
55
+ "video.fps": 10.0,
56
+ "video.codec": "av1",
57
+ "video.pix_fmt": "yuv420p",
58
+ "video.is_depth_map": false,
59
+ "has_audio": false
60
+ }
61
  },
62
  "observation.images.image2": {
63
+ "dtype": "video",
64
+ "shape": [
65
+ 224,
66
+ 224,
67
+ 3
68
+ ],
69
+ "names": [
70
+ "height",
71
+ "width",
72
+ "channel"
73
+ ],
74
+ "video_info": {
75
+ "video.fps": 10.0,
76
+ "video.codec": "av1",
77
+ "video.pix_fmt": "yuv420p",
78
+ "video.is_depth_map": false,
79
+ "has_audio": false
80
+ }
81
  },
82
  "observation.images.image": {
83
+ "dtype": "video",
84
+ "shape": [
85
+ 224,
86
+ 224,
87
+ 3
88
+ ],
89
+ "names": [
90
+ "height",
91
+ "width",
92
+ "channel"
93
+ ],
94
+ "video_info": {
95
+ "video.fps": 10.0,
96
+ "video.codec": "av1",
97
+ "video.pix_fmt": "yuv420p",
98
+ "video.is_depth_map": false,
99
+ "has_audio": false
100
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  },
102
+ "language_instruction": {
103
+ "dtype": "string",
104
+ "shape": [
105
+ 1
106
+ ],
107
+ "names": null
 
 
 
108
  },
109
+ "observation.state": {
110
+ "dtype": "float32",
111
+ "shape": [
112
+ 8
113
+ ],
114
+ "names": {
115
+ "motors": [
116
+ "motor_0",
117
+ "motor_1",
118
+ "motor_2",
119
+ "motor_3",
120
+ "motor_4",
121
+ "motor_5",
122
+ "motor_6",
123
+ "motor_7"
124
+ ]
125
+ }
126
+ },
127
+ "action": {
128
+ "dtype": "float32",
129
+ "shape": [
130
+ 7
131
+ ],
132
+ "names": {
133
+ "motors": [
134
+ "motor_0",
135
+ "motor_1",
136
+ "motor_2",
137
+ "motor_3",
138
+ "motor_4",
139
+ "motor_5",
140
+ "motor_6"
141
+ ]
142
+ }
143
+ },
144
+ "timestamp": {
145
+ "dtype": "float32",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null
150
+ },
151
+ "episode_index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ },
158
+ "frame_index": {
159
+ "dtype": "int64",
160
+ "shape": [
161
+ 1
162
+ ],
163
+ "names": null
164
+ },
165
+ "next.reward": {
166
+ "dtype": "float32",
167
+ "shape": [
168
+ 1
169
+ ],
170
+ "names": null
171
+ },
172
+ "next.done": {
173
+ "dtype": "bool",
174
+ "shape": [
175
+ 1
176
+ ],
177
+ "names": null
178
+ },
179
+ "index": {
180
+ "dtype": "int64",
181
+ "shape": [
182
+ 1
183
+ ],
184
+ "names": null
185
+ },
186
+ "task_index": {
187
+ "dtype": "int64",
188
+ "shape": [
189
+ 1
190
+ ],
191
+ "names": null
192
  }
193
  }
194
  }
195
+ ```
196
+
197
+
198
+ ## Citation
199
+
200
+ **BibTeX:**
201
+
202
+ ```bibtex
203
+ @misc{matsushima2023weblab,
204
+ title={Weblab xArm Dataset},
205
+ author={Tatsuya Matsushima and Hiroki Furuta and Yusuke Iwasawa and Yutaka Matsuo},
206
+ year={2023},
207
+ }
208
  ```