Datasets:

Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
License:
aliberts HF staff commited on
Commit
1ebcbeb
·
verified ·
1 Parent(s): af32655

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +165 -62
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": 3603,
16
  "total_frames": 237798,
@@ -22,71 +36,160 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
22
  "splits": {
23
  "train": "0:3603"
24
  },
25
- "keys": [
26
- "observation.state",
27
- "action"
28
- ],
29
- "video_keys": [
30
- "observation.images.rgb_static",
31
- "observation.images.rgb_gripper"
32
- ],
33
- "image_keys": [],
34
- "shapes": {
35
- "observation.state": 7,
36
- "action": 7,
37
  "observation.images.rgb_static": {
38
- "width": 200,
39
- "height": 150,
40
- "channels": 3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  },
42
  "observation.images.rgb_gripper": {
43
- "width": 84,
44
- "height": 84,
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
- ],
58
- "action": [
59
- "motor_0",
60
- "motor_1",
61
- "motor_2",
62
- "motor_3",
63
- "motor_4",
64
- "motor_5",
65
- "motor_6"
66
- ]
67
- },
68
- "videos": {
69
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
70
- "observation.images.rgb_static": {
71
- "video.fps": 15.0,
72
- "video.width": 200,
73
- "video.height": 150,
74
- "video.channels": 3,
75
- "video.codec": "av1",
76
- "video.pix_fmt": "yuv420p",
77
- "video.is_depth_map": false,
78
- "has_audio": false
79
  },
80
- "observation.images.rgb_gripper": {
81
- "video.fps": 15.0,
82
- "video.width": 84,
83
- "video.height": 84,
84
- "video.channels": 3,
85
- "video.codec": "av1",
86
- "video.pix_fmt": "yuv420p",
87
- "video.is_depth_map": false,
88
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  }
90
  }
91
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  ```
 
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:** https://www.kaggle.com/datasets/oiermees/taco-robot
19
+ - **Paper:** https://arxiv.org/abs/2209.08959, https://arxiv.org/abs/2210.01911
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": 3603,
30
  "total_frames": 237798,
 
36
  "splits": {
37
  "train": "0:3603"
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.rgb_static": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 150,
46
+ 200,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "video_info": {
55
+ "video.fps": 15.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.rgb_gripper": {
63
+ "dtype": "video",
64
+ "shape": [
65
+ 84,
66
+ 84,
67
+ 3
68
+ ],
69
+ "names": [
70
+ "height",
71
+ "width",
72
+ "channel"
73
+ ],
74
+ "video_info": {
75
+ "video.fps": 15.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
+ 7
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
+ ]
104
+ }
105
+ },
106
+ "action": {
107
+ "dtype": "float32",
108
+ "shape": [
109
+ 7
110
+ ],
111
+ "names": {
112
+ "motors": [
113
+ "motor_0",
114
+ "motor_1",
115
+ "motor_2",
116
+ "motor_3",
117
+ "motor_4",
118
+ "motor_5",
119
+ "motor_6"
120
+ ]
121
+ }
122
+ },
123
+ "timestamp": {
124
+ "dtype": "float32",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": null
129
+ },
130
+ "episode_index": {
131
+ "dtype": "int64",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ },
137
+ "frame_index": {
138
+ "dtype": "int64",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ },
144
+ "next.reward": {
145
+ "dtype": "float32",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null
150
+ },
151
+ "next.done": {
152
+ "dtype": "bool",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ },
158
+ "index": {
159
+ "dtype": "int64",
160
+ "shape": [
161
+ 1
162
+ ],
163
+ "names": null
164
+ },
165
+ "task_index": {
166
+ "dtype": "int64",
167
+ "shape": [
168
+ 1
169
+ ],
170
+ "names": null
171
  }
172
  }
173
  }
174
+ ```
175
+
176
+
177
+ ## Citation
178
+
179
+ **BibTeX:**
180
+
181
+ ```bibtex
182
+ @inproceedings{rosete2022tacorl,
183
+ author = {Erick Rosete-Beas and Oier Mees and Gabriel Kalweit and Joschka Boedecker and Wolfram Burgard},
184
+ title = {Latent Plans for Task Agnostic Offline Reinforcement Learning},
185
+ journal = {Proceedings of the 6th Conference on Robot Learning (CoRL)},
186
+ year = {2022}
187
+ }
188
+ @inproceedings{mees23hulc2,
189
+ title={Grounding Language with Visual Affordances over Unstructured Data},
190
+ author={Oier Mees and Jessica Borja-Diaz and Wolfram Burgard},
191
+ booktitle = {Proceedings of the IEEE International Conference on Robotics and Automation (ICRA)},
192
+ year={2023},
193
+ address = {London, UK}
194
+ }
195
  ```