aliberts HF staff commited on
Commit
5f5e639
1 Parent(s): bb2b724

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +160 -63
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": 631,
16
  "total_frames": 146241,
@@ -22,72 +36,155 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
22
  "splits": {
23
  "train": "0:631"
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": 8,
36
- "action": 7,
37
  "observation.images.image": {
38
- "width": 640,
39
- "height": 360,
40
- "channels": 3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  },
42
  "observation.images.wrist_image": {
43
- "width": 320,
44
- "height": 240,
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
- ],
59
- "action": [
60
- "motor_0",
61
- "motor_1",
62
- "motor_2",
63
- "motor_3",
64
- "motor_4",
65
- "motor_5",
66
- "motor_6"
67
- ]
68
- },
69
- "videos": {
70
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
71
- "observation.images.image": {
72
- "video.fps": 20.0,
73
- "video.width": 640,
74
- "video.height": 360,
75
- "video.channels": 3,
76
- "video.codec": "av1",
77
- "video.pix_fmt": "yuv420p",
78
- "video.is_depth_map": false,
79
- "has_audio": false
80
  },
81
- "observation.images.wrist_image": {
82
- "video.fps": 20.0,
83
- "video.width": 320,
84
- "video.height": 240,
85
- "video.channels": 3,
86
- "video.codec": "av1",
87
- "video.pix_fmt": "yuv420p",
88
- "video.is_depth_map": false,
89
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  }
91
  }
92
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  ```
 
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://openreview.net/forum?id=WuBv9-IGDUA
19
+ - **Paper:** https://arxiv.org/abs/2401.14502
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": 631,
30
  "total_frames": 146241,
 
36
  "splits": {
37
  "train": "0:631"
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
+ 360,
46
+ 640,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "video_info": {
55
+ "video.fps": 20.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
+ 240,
66
+ 320,
67
+ 3
68
+ ],
69
+ "names": [
70
+ "height",
71
+ "width",
72
+ "channel"
73
+ ],
74
+ "video_info": {
75
+ "video.fps": 20.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
+ 8
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
+ ]
105
+ }
106
+ },
107
+ "action": {
108
+ "dtype": "float32",
109
+ "shape": [
110
+ 7
111
+ ],
112
+ "names": {
113
+ "motors": [
114
+ "motor_0",
115
+ "motor_1",
116
+ "motor_2",
117
+ "motor_3",
118
+ "motor_4",
119
+ "motor_5",
120
+ "motor_6"
121
+ ]
122
+ }
123
+ },
124
+ "timestamp": {
125
+ "dtype": "float32",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "episode_index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ },
138
+ "frame_index": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "next.reward": {
146
+ "dtype": "float32",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "next.done": {
153
+ "dtype": "bool",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ },
159
+ "index": {
160
+ "dtype": "int64",
161
+ "shape": [
162
+ 1
163
+ ],
164
+ "names": null
165
+ },
166
+ "task_index": {
167
+ "dtype": "int64",
168
+ "shape": [
169
+ 1
170
+ ],
171
+ "names": null
172
  }
173
  }
174
  }
175
+ ```
176
+
177
+
178
+ ## Citation
179
+
180
+ **BibTeX:**
181
+
182
+ ```bibtex
183
+ @inproceedings{saxena2023multiresolution,
184
+ title={Multi-Resolution Sensing for Real-Time Control with Vision-Language Models},
185
+ author={Saumya Saxena and Mohit Sharma and Oliver Kroemer},
186
+ booktitle={7th Annual Conference on Robot Learning},
187
+ year={2023},
188
+ url={https://openreview.net/forum?id=WuBv9-IGDUA}
189
+ }
190
  ```