Datasets:

Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
License:
aliberts HF staff commited on
Commit
a5ff592
1 Parent(s): 115bafe

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +150 -58
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": 480,
16
  "total_frames": 45308,
@@ -22,64 +36,142 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
22
  "splits": {
23
  "train": "0:480"
24
  },
25
- "keys": [
26
- "observation.state",
27
- "action"
28
- ],
29
- "video_keys": [
30
- "observation.images.hand_image"
31
- ],
32
- "image_keys": [],
33
- "shapes": {
34
- "observation.state": 15,
35
- "action": 8,
36
- "observation.images.hand_image": {
37
- "width": 640,
38
- "height": 480,
39
- "channels": 3
40
- }
41
- },
42
- "names": {
43
- "observation.state": [
44
- "motor_0",
45
- "motor_1",
46
- "motor_2",
47
- "motor_3",
48
- "motor_4",
49
- "motor_5",
50
- "motor_6",
51
- "motor_7",
52
- "motor_8",
53
- "motor_9",
54
- "motor_10",
55
- "motor_11",
56
- "motor_12",
57
- "motor_13",
58
- "motor_14"
59
- ],
60
- "action": [
61
- "motor_0",
62
- "motor_1",
63
- "motor_2",
64
- "motor_3",
65
- "motor_4",
66
- "motor_5",
67
- "motor_6",
68
- "motor_7"
69
- ]
70
- },
71
- "videos": {
72
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
73
  "observation.images.hand_image": {
74
- "video.fps": 5.0,
75
- "video.width": 640,
76
- "video.height": 480,
77
- "video.channels": 3,
78
- "video.codec": "av1",
79
- "video.pix_fmt": "yuv420p",
80
- "video.is_depth_map": false,
81
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  }
83
  }
84
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  ```
 
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:** [More Information Needed]
19
+ - **Paper:** https://arxiv.org/abs/2203.06173
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": 480,
30
  "total_frames": 45308,
 
36
  "splits": {
37
  "train": "0:480"
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
+ 480,
46
+ 640,
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
+ "language_instruction": {
63
+ "dtype": "string",
64
+ "shape": [
65
+ 1
66
+ ],
67
+ "names": null
68
+ },
69
+ "observation.state": {
70
+ "dtype": "float32",
71
+ "shape": [
72
+ 15
73
+ ],
74
+ "names": {
75
+ "motors": [
76
+ "motor_0",
77
+ "motor_1",
78
+ "motor_2",
79
+ "motor_3",
80
+ "motor_4",
81
+ "motor_5",
82
+ "motor_6",
83
+ "motor_7",
84
+ "motor_8",
85
+ "motor_9",
86
+ "motor_10",
87
+ "motor_11",
88
+ "motor_12",
89
+ "motor_13",
90
+ "motor_14"
91
+ ]
92
+ }
93
+ },
94
+ "action": {
95
+ "dtype": "float32",
96
+ "shape": [
97
+ 8
98
+ ],
99
+ "names": {
100
+ "motors": [
101
+ "motor_0",
102
+ "motor_1",
103
+ "motor_2",
104
+ "motor_3",
105
+ "motor_4",
106
+ "motor_5",
107
+ "motor_6",
108
+ "motor_7"
109
+ ]
110
+ }
111
+ },
112
+ "timestamp": {
113
+ "dtype": "float32",
114
+ "shape": [
115
+ 1
116
+ ],
117
+ "names": null
118
+ },
119
+ "episode_index": {
120
+ "dtype": "int64",
121
+ "shape": [
122
+ 1
123
+ ],
124
+ "names": null
125
+ },
126
+ "frame_index": {
127
+ "dtype": "int64",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": null
132
+ },
133
+ "next.reward": {
134
+ "dtype": "float32",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "next.done": {
141
+ "dtype": "bool",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "task_index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
  }
161
  }
162
  }
163
+ ```
164
+
165
+
166
+ ## Citation
167
+
168
+ **BibTeX:**
169
+
170
+ ```bibtex
171
+ @InProceedings{Radosavovic2022,
172
+ title = {Real-World Robot Learning with Masked Visual Pre-training},
173
+ author = {Ilija Radosavovic and Tete Xiao and Stephen James and Pieter Abbeel and Jitendra Malik and Trevor Darrell},
174
+ booktitle = {CoRL},
175
+ year = {2022}
176
+ }
177
  ```