Datasets:

Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
License:
aliberts HF staff commited on
Commit
7ee6ba8
1 Parent(s): 65802d5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +179 -79
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": 50,
16
  "total_frames": 34112,
@@ -22,88 +36,174 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
22
  "splits": {
23
  "train": "0:50"
24
  },
25
- "keys": [
26
- "observation.state",
27
- "action"
28
- ],
29
- "video_keys": [
30
- "observation.images.image",
31
- "observation.images.wrist_image"
32
- ],
33
- "image_keys": [],
34
- "shapes": {
35
- "observation.state": 24,
36
- "action": 7,
37
  "observation.images.image": {
38
- "width": 128,
39
- "height": 128,
40
- "channels": 3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  },
42
  "observation.images.wrist_image": {
43
- "width": 128,
44
- "height": 128,
45
- "channels": 3
46
- }
47
- },
48
- "names": {
49
- "observation.state": [
50
- "motor_0",
51
- "motor_1",
52
- "motor_2",
53
- "motor_3",
54
- "motor_4",
55
- "motor_5",
56
- "motor_6",
57
- "motor_7",
58
- "motor_8",
59
- "motor_9",
60
- "motor_10",
61
- "motor_11",
62
- "motor_12",
63
- "motor_13",
64
- "motor_14",
65
- "motor_15",
66
- "motor_16",
67
- "motor_17",
68
- "motor_18",
69
- "motor_19",
70
- "motor_20",
71
- "motor_21",
72
- "motor_22",
73
- "motor_23"
74
- ],
75
- "action": [
76
- "motor_0",
77
- "motor_1",
78
- "motor_2",
79
- "motor_3",
80
- "motor_4",
81
- "motor_5",
82
- "motor_6"
83
- ]
84
- },
85
- "videos": {
86
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
87
- "observation.images.image": {
88
- "video.fps": 5.0,
89
- "video.width": 128,
90
- "video.height": 128,
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.wrist_image": {
98
- "video.fps": 5.0,
99
- "video.width": 128,
100
- "video.height": 128,
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: mit
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:** https://ut-austin-rpl.github.io/BUDS-website/
19
+ - **Paper:** https://arxiv.org/abs/2109.13841
20
+ - **License:** mit
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": 50,
30
  "total_frames": 34112,
 
36
  "splits": {
37
  "train": "0:50"
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.image": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 128,
46
+ 128,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "video_info": {
55
+ "video.fps": 5.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.wrist_image": {
63
+ "dtype": "video",
64
+ "shape": [
65
+ 128,
66
+ 128,
67
+ 3
68
+ ],
69
+ "names": [
70
+ "height",
71
+ "width",
72
+ "channel"
73
+ ],
74
+ "video_info": {
75
+ "video.fps": 5.0,
76
+ "video.codec": "av1",
77
+ "video.pix_fmt": "yuv420p",
78
+ "video.is_depth_map": false,
79
+ "has_audio": false
80
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  },
82
+ "language_instruction": {
83
+ "dtype": "string",
84
+ "shape": [
85
+ 1
86
+ ],
87
+ "names": null
88
+ },
89
+ "observation.state": {
90
+ "dtype": "float32",
91
+ "shape": [
92
+ 24
93
+ ],
94
+ "names": {
95
+ "motors": [
96
+ "motor_0",
97
+ "motor_1",
98
+ "motor_2",
99
+ "motor_3",
100
+ "motor_4",
101
+ "motor_5",
102
+ "motor_6",
103
+ "motor_7",
104
+ "motor_8",
105
+ "motor_9",
106
+ "motor_10",
107
+ "motor_11",
108
+ "motor_12",
109
+ "motor_13",
110
+ "motor_14",
111
+ "motor_15",
112
+ "motor_16",
113
+ "motor_17",
114
+ "motor_18",
115
+ "motor_19",
116
+ "motor_20",
117
+ "motor_21",
118
+ "motor_22",
119
+ "motor_23"
120
+ ]
121
+ }
122
+ },
123
+ "action": {
124
+ "dtype": "float32",
125
+ "shape": [
126
+ 7
127
+ ],
128
+ "names": {
129
+ "motors": [
130
+ "motor_0",
131
+ "motor_1",
132
+ "motor_2",
133
+ "motor_3",
134
+ "motor_4",
135
+ "motor_5",
136
+ "motor_6"
137
+ ]
138
+ }
139
+ },
140
+ "timestamp": {
141
+ "dtype": "float32",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "episode_index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "frame_index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ },
161
+ "next.reward": {
162
+ "dtype": "float32",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null
167
+ },
168
+ "next.done": {
169
+ "dtype": "bool",
170
+ "shape": [
171
+ 1
172
+ ],
173
+ "names": null
174
+ },
175
+ "index": {
176
+ "dtype": "int64",
177
+ "shape": [
178
+ 1
179
+ ],
180
+ "names": null
181
+ },
182
+ "task_index": {
183
+ "dtype": "int64",
184
+ "shape": [
185
+ 1
186
+ ],
187
+ "names": null
188
  }
189
  }
190
  }
191
+ ```
192
+
193
+
194
+ ## Citation
195
+
196
+ **BibTeX:**
197
+
198
+ ```bibtex
199
+ @article{zhu2022bottom,
200
+ title={Bottom-Up Skill Discovery From Unsegmented Demonstrations for Long-Horizon Robot Manipulation},
201
+ author={Zhu, Yifeng and Stone, Peter and Zhu, Yuke},
202
+ journal={IEEE Robotics and Automation Letters},
203
+ volume={7},
204
+ number={2},
205
+ pages={4126--4133},
206
+ year={2022},
207
+ publisher={IEEE}
208
+ }
209
  ```