aliberts HF staff commited on
Commit
2529470
1 Parent(s): 7b80b6e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +172 -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": 456,
16
  "total_frames": 44875,
@@ -22,85 +36,167 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
22
  "splits": {
23
  "train": "0:456"
24
  },
25
- "keys": [
26
- "observation.state",
27
- "action"
28
- ],
29
- "video_keys": [
30
- "observation.images.image_additional_view",
31
- "observation.images.image"
32
- ],
33
- "image_keys": [],
34
- "shapes": {
35
- "observation.state": 13,
36
- "action": 15,
37
  "observation.images.image_additional_view": {
38
- "width": 128,
39
- "height": 128,
40
- "channels": 3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  },
42
  "observation.images.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
- ],
64
- "action": [
65
- "motor_0",
66
- "motor_1",
67
- "motor_2",
68
- "motor_3",
69
- "motor_4",
70
- "motor_5",
71
- "motor_6",
72
- "motor_7",
73
- "motor_8",
74
- "motor_9",
75
- "motor_10",
76
- "motor_11",
77
- "motor_12",
78
- "motor_13",
79
- "motor_14"
80
- ]
81
- },
82
- "videos": {
83
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
84
- "observation.images.image_additional_view": {
85
- "video.fps": 5.0,
86
- "video.width": 128,
87
- "video.height": 128,
88
- "video.channels": 3,
89
- "video.codec": "av1",
90
- "video.pix_fmt": "yuv420p",
91
- "video.is_depth_map": false,
92
- "has_audio": false
93
  },
94
- "observation.images.image": {
95
- "video.fps": 5.0,
96
- "video.width": 128,
97
- "video.height": 128,
98
- "video.channels": 3,
99
- "video.codec": "av1",
100
- "video.pix_fmt": "yuv420p",
101
- "video.is_depth_map": false,
102
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
  }
104
  }
105
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  ```
 
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://play-to-policy.github.io/
19
+ - **Paper:** https://arxiv.org/abs/2210.10047
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": 456,
30
  "total_frames": 44875,
 
36
  "splits": {
37
  "train": "0:456"
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_additional_view": {
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.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
+ 13
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
+ ]
110
+ }
111
+ },
112
+ "action": {
113
+ "dtype": "float32",
114
+ "shape": [
115
+ 15
116
+ ],
117
+ "names": {
118
+ "motors": [
119
+ "motor_0",
120
+ "motor_1",
121
+ "motor_2",
122
+ "motor_3",
123
+ "motor_4",
124
+ "motor_5",
125
+ "motor_6",
126
+ "motor_7",
127
+ "motor_8",
128
+ "motor_9",
129
+ "motor_10",
130
+ "motor_11",
131
+ "motor_12",
132
+ "motor_13",
133
+ "motor_14"
134
+ ]
135
+ }
136
+ },
137
+ "timestamp": {
138
+ "dtype": "float32",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ },
144
+ "episode_index": {
145
+ "dtype": "int64",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null
150
+ },
151
+ "frame_index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ },
158
+ "next.reward": {
159
+ "dtype": "float32",
160
+ "shape": [
161
+ 1
162
+ ],
163
+ "names": null
164
+ },
165
+ "next.done": {
166
+ "dtype": "bool",
167
+ "shape": [
168
+ 1
169
+ ],
170
+ "names": null
171
+ },
172
+ "index": {
173
+ "dtype": "int64",
174
+ "shape": [
175
+ 1
176
+ ],
177
+ "names": null
178
+ },
179
+ "task_index": {
180
+ "dtype": "int64",
181
+ "shape": [
182
+ 1
183
+ ],
184
+ "names": null
185
  }
186
  }
187
  }
188
+ ```
189
+
190
+
191
+ ## Citation
192
+
193
+ **BibTeX:**
194
+
195
+ ```bibtex
196
+ @article{cui2022play,
197
+ title = {From Play to Policy: Conditional Behavior Generation from Uncurated Robot Data},
198
+ author = {Cui, Zichen Jeff and Wang, Yibin and Shafiullah, Nur Muhammad Mahi and Pinto, Lerrel},
199
+ journal = {arXiv preprint arXiv:2210.10047},
200
+ year = {2022}
201
+ }
202
  ```